@charset "UTF-8";
/* CSS Document */

body  {
	font: 0.75em/1.4em Arial, Helvetica, sans-serif;
	background: #76CDD6; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	margin-top: 0px;
	margin-bottom: 10px;
	height: 150px;
}
.vox #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0px auto;
	text-align: left;
	padding: 0px;
} 
.vox #header {
	background: #AA4B81 url(images/headerBg.gif) no-repeat right top;
	padding: 20px 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 72px;
} 
.vox #headerHome {
	background: #AA4B81 url(images/headerBg.gif) no-repeat right top;
	padding: 20px 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 220px;
} 
.vox #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0;
	position: absolute;
	bottom: auto;
}
.vox #sidebarRight {
	float: right; /* since this element is floated, a width must be given */
	width: 216px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	display: block;
	margin: 0px;
	padding: 32px;

}
.vox #sidebarRightYellowBox {
	background: #E5CA5B; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px;
	display: block;
	margin: 0px 0px 20px;

}
.vox #sidebarRightBlueBox {
	float: right; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #76CDD6 url(images/quoteBg.gif) repeat-x left top; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 20px 20px;
	display: block;
	margin: 0px 0px 20px;
}
.vox #sidebarLeftBlueBox {
	float: left; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #76CDD6 url(images/quoteBg.gif) repeat-x left top; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 20px 20px;
	display: block;
	margin: 0px 0px 20px;

}

.vox #sidebarLeft {
	float: left; /* since this element is floated, a width must be given */
	width: 216px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	display: block;
	margin: 0px;
	padding: 32px;
}
.vox #mainContentLeft {
	margin: 0 280px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebarLeft div contains, the column space will remain. You can remove this margin if you want the #mainContentLeft div's text to fill the #sidebarLeft space when the content in #sidebarLeft ends. */
	padding: 32px 0px 32px 32px;
} 
.vox #mainContentRight {
	margin: 0 0px 0 280px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebarLeft div contains, the column space will remain. You can remove this margin if you want the #mainContentLeft div's text to fill the #sidebarLeft space when the content in #sidebarLeft ends. */
	padding: 32px 32px 32px 0px;
} 
.vox #footer {
	padding: 20px 32px 32px 0px;
	color: #FFFFFF;
	background-color: #76CDD6;
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #AA4B81;
} 
.vox #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.floatRight { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}
.floatLeft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.fltbtm { /* this class can be used to float an element left in your page */
	padding-top: 30px;
}
h1,h2,h3,h4,h5,h6 {
	font-family: Georgia, Times New Roman, Times, serif;
}
h1 {
	font-size: 2em;
	font-weight: bold;
	color: #AA4B81;
	line-height: 1.1em;
	padding: 0px;
	margin: 0px;
}
h2 {
	font-size: 1.5em;
	color: #AA4B81;
	line-height: 1.25em;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
h3 {
	font-size: 1.2em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #0099FF;
	line-height: 1.3em;

}
h4 {
	font-size: 1.3em;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #C8B04D;
	font-style: italic;
	font-weight: normal;
	line-height: 1.5em;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #C8B04D;
	padding-left: 10px;
}
body,td,th {
	font-size: 0.75em;
}
a:link {
	color: #AA4B81;
	text-decoration: none;
}
a:visited {
	color: #AA4B81;
	text-decoration: none;
}
a:hover {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #AA4B81;
}
a:active {
	color: #AA4B816;
	text-decoration: none;
}
.intoText {
	font-size: 1.5em;
	font-weight: lighter;
	color: #AA4B81;
	line-height: 1.25em;
}
.buttonBlue {
	background-color: #76CDD6;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.5em;
	color: #AA4B81;
	display: block;
	margin: 0px 0px 20px;
}
.buttonBlue a{
	text-decoration: underline;
	color: #AA4B81;
	display: block;
	line-height: 1.25em;
	display: block;
	padding: 8px;

}
.buttonBlue a:hover{
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	background-color: #AA4B81;
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
.buttonYellow {
	background-color: #E5CA5B;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.5em;
	color: #AA4B81;
	display: block;
	margin: 0px 0px 20px;

}

.buttonYellow a{
	text-decoration: underline;
	color: #AA4B81;
	display: block;
	line-height: 1.25em;
	display: block;
	padding: 8px;

}
.buttonYellow a:hover{
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	background-color: #AA4B81;
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;

}
.buttonOutline {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.5em;
	color: #AA4B81;
	margin: 0px 0px 20px;
	border: 1px solid #E5CA5B;
	line-height: 1.25em;
}
.buttonOutline a{
	text-decoration: none;
	color: #AA4B81;
	display: block;
	line-height: 1.25em;
	display: block;
	padding: 8px;

}
.buttonOutline a:hover{
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	background-color: #AA4B81;
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;

}
.ourPrograms {
	display: block;
	height: 120px;
}
.ourPrograms a {
	text-decoration: none;
	display: block;
	color: #000000;
}
.ourPrograms a:hover {
	text-decoration: none;
	color: #AA4B81;
	display: block;
	background-color: #FFFFFF;
}
.boldBlue {
	color: #0099FF;
	font-weight: bold;
}
.boldPurple {
	color: #AA4B81;
	font-weight: bold;
}
.boldYellow {
	color: #E5CA5B;
	font-weight: bold;
}
.boldGreen {
	color: #45787D;
	font-weight: bold;
}
.white {
	color: #FFFFFF;
}
ul {
	list-style-position: outside;
	list-style-type: square;
	padding-left: 16px;
}
#menuItems {
	margin: 8px;
	
}
#menuItems a{
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .7em;
	color: #FFFFFF;
	font-weight: bold;
	padding-top: 4px;
	padding-left: 4px;
	padding-bottom: 4px;
}
#menuItems a:hover{
	background-color: #AA4B81;
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
#menuItemsRev {
	margin: 8px;
	
}
#menuItemsRev a{
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: .7em;
	color: #AA4B81;
	padding-top: 4px;
	padding-left: 4px;
	padding-bottom: 4px;
	display: block;
	text-decoration: none;
}
#menuItemsRev a:hover{
	color: #FFFFFF;
	background-color: #AA4B81;
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
hr {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #0099FF;
	padding-top: 10px;
	padding-bottom: 10px;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


.clientLogo {
	padding: 10px;
	vertical-align: middle;
	text-align: center;
}
.quote {
	float: left;
	top: -20px;
	position: absolute;
	right: 0px;
	left: 0px;
	bottom: 0px;
	display: block;
}

