/* Eric Meyer's CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End of Eric Meyer's CSS Reset */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
body {
	font: 16px/18px Arial, sans-serif;
	color: white;
}

bodyItalic {
	font: italic 16px/18px Arial, sans-serif;
	color: black;
}

footerItalic {
	font: italic 16px/18px Arial, sans-serif;
	color: white;
}

bodyBold {
	font: bold 16px/18px Arial, sans-serif;
	color: black;
}

.wrapper {
	width: 100%;
	min-width: 650px;
}


/* Header
-----------------------------------------------------------------------------*/
.header {
	height: 133px;
	background: #99D3DF;
}


/* Middle
-----------------------------------------------------------------------------*/
.middle {
	width: 100%;
	position: relative;
	background: #E9E9E9
}
.middle:after {
	display: table;
	clear: both;
	content: '';
}
.container {
	width: 100%;
	float: left;
	overflow: hidden;
}
.content {
	padding: 0 0 0 120px;
}

/* Block
-----------------------------------------------------------------------------*/
.block {
	margin: 10px;
	background: #FFFFFF;
	max-width: 800px;
	color: black;
	padding: 20px;
}

.floatingblock {
	background: #99D3DF;
	margin: 10px;
	padding: 10px;
    float: left;
    width: 40%;
    border: 2px solid #B99778;
    border-radius: 5px;
}

.floatingcolumn:after {
  content: "";
  display: table;
  clear: both;
}

/* Left Sidebar
-----------------------------------------------------------------------------*/
.left-sidebar {
	float: left;
	width: 114px;
	margin-left: -100%;
	position: relative;
	background: #88BBD6;
    border: 2px solid #B99778;
    border-radius: 5px;
}

/* Buttons
-----------------------------------------------------------------------------*/
.button-container {
	position: relative;
	margin: 10px;
}

.button-image {
  display: block;
  width: 100%;
  height: auto;
}

.button-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #88BBD6;
}

.button-container:hover .button-overlay {
  opacity: 1;
}

.button-text {
  color: white;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}


/* Footer
-----------------------------------------------------------------------------*/
.footer {
	height: 145px;
	background: #CDCDCD;
}