@charset "utf-8";
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #EBEBEB;
	color: #2d2e2e;
	font-family: Verdana, Geneva, sans-serif, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
body:before 
{ 
   content: "";
   position: fixed;
   top: -10px;
   left: 0;
   width: 100%;
   height: 10px;
   z-index: 100;
   -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
   -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
   box-shadow: 0px 0px 10px rgba(0,0,0,.8);
   }
/* Commonly used to style page titles. */
h1 {
	color: #66F;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
	text-align:center;
}
/* Commonly used to style section titles. */
h2 {
	color: #69F;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
	text-align:center;
}
p {
	font-family: Verdana, Geneva, sans-serif;
	color:#000;
	font-size:12px;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #36F;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #69F;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #36F;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
/*	color: #09760d; */
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
/*	color: #164619; */
}
#topDiv {
	background-color: #FFF;
	border-bottom: solid 1px #628152; /* Sets the bottom border properties for an element using shorthand notation */
	height: 140px;
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	width: 100%;
}
#topDiv #topdivnarrow {
	width: 960px;
	height:90px;
	background-color: #FFF;
	margin: auto;
}
#topDiv #topdivnarrow #topdivtitle {
	font-family: Verdana, Geneva, sans-serif;
	font-weight:bold;
	color: #06F;
	font-size: 36px;
	padding-top:30px;
	padding-left:30px;
	text-shadow:2px 2px 3px #999;
}
#topDiv #topNav {
	height:28px;
	width: 960px;
	margin: auto;
	text-align:left;
	border-top:thin;
	font-size:14px;
	position: relative;
	z-index: 999;
	border:1px solid #1890d0;
	-webkit-box-shadow: #B4B5B5 0px 6px 4px ;
	-moz-box-shadow: #B4B5B5 0px 6px 4px;
	box-shadow: #B4B5B5 0px 6px 4px;
	-webkit-border-radius: 3px; -moz-border-radius: 3px;border-radius: 3px;font-size:14px;
	font-family:arial, helvetica, sans-serif;
	padding: 10px 0px 10px 0px;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
	font-weight:bold; text-align: center;
	color: #FFFFFF;
	background-color: #38ABE8;
 	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #38ABE8), color-stop(100%, #738DB8));
	background-image: -webkit-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -moz-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -ms-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -o-linear-gradient(top, #38ABE8, #738DB8);
	background-image: linear-gradient(top, #38ABE8, #738DB8);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#38ABE8, endColorstr=#738DB8);
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 960px;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #FFF;
	border-right: solid 1px #CCC; /* Sets the right border properties for an element using shorthand notation */
	border-left: solid 1px #CCC; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 5px 10px 5px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	min-height: 800px;
}
#outerWrapper #contentWrapper #leftColumn1 #boxnavleft {
	border: thin solid #000;
	width:170px;
	background-color: #FFF;
	padding: 3px 3px 3px 3px;
	overflow:hidden;
	margin: auto;
/*	float: left; */
}
#outerWrapper #contentWrapper #leftColumn1 #boxnavleftnoborder {
	/* border: thin solid #000; */
	width:170px;
	background-color: #FFF;
	padding: 3px 3px 3px 3px;
	overflow:hidden;
	margin: auto;
/*	float: left; */
}
#outerWrapper #contentWrapper #leftColumn1 #boxnavleftnoborder #featured {
	text-align:center;
	color: #36F;
	margin: 5px 0px 5px 0px;
	border: thin solid #000;
	padding: 3px 3px 3px 3px;
	font-family:Verdana, Geneva, sans-serif;
	font-size:10px;
	color: #36F;
}
#outerWrapper #contentWrapper #leftColumn1 #left_head{
	margin-left: -3px;
	margin-top: -3px;
	margin-bottom: 5px;
	border:1px solid #1890d0;-webkit-box-shadow: #B4B5B5 4px 4px 4px;-moz-box-shadow: #B4B5B5 4px 4px 4px;
	-webkit-box-shadow: #B4B5B5 0px 6px 4px ;
	-moz-box-shadow: #B4B5B5 0px 6px 4px;
	box-shadow: #B4B5B5 0px 6px 4px;
	width:170px;font-size:16px;
	font-family:arial, helvetica, sans-serif;
	padding: 10px 10px 10px 10px; text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
	font-weight:bold; text-align: center;
	color: #FFFFFF; background-color: #38ABE8;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #38ABE8), color-stop(100%, #738DB8));
	background-image: -webkit-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -moz-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -ms-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -o-linear-gradient(top, #38ABE8, #738DB8);
	background-image: linear-gradient(top, #38ABE8, #738DB8);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#38ABE8, endColorstr=#738DB8);
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 170px 0 200px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	background-color: #EBEBEB;
	width: 540px;
	min-height: 800px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: both;
	display: block;
}
#outerWrapper #footer {
/*	background-color: #eef6ed; */
	background-color: #69C;
	border-top: solid 1px #8ab573; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 940px;
	color:#FFF;
	font-size:10px;
	clear: both;
}
.boxmain {
	background-color:#FFF;
/*	-moz-box-shadow: 5px 5px 2px #888888;
	-webkit-box-shadow: 5px 5px 2px #888888;
	-o-box-shadow: 5px 5px 2px #888888;
	box-shadow: 5px 5px 2px #888888;  */
	padding: 3px 3px 3px 3px;
	margin: 5px 5px 20px 5px;
	overflow:hidden;
	border:solid;
	border-width:thin;
/*	clear:inherit; */
}
.boxmainyellow {
	background-color: #FFC;
/*	-moz-box-shadow: 5px 5px 2px #888888;
	-webkit-box-shadow: 5px 5px 2px #888888;
	-o-box-shadow: 5px 5px 2px #888888;
	box-shadow: 5px 5px 2px #888888;  */
	padding: 3px 3px 3px 3px;
	margin: 5px 5px 20px 5px;
	overflow:hidden;
	border:solid;
	border-width:thin;
/*	clear:inherit; */
}
.boxtop {

}
.boxbottom {
	margin-top: 20px;
	padding-left:330px;
}
.boxmiddle {
	margin-top: 10px;
	margin-left:175px;
}
#outerWrapper #contentWrapper #rightColumn1 {
<!--	background-color: #eef6ed; -->
	background-color: #FFF;
	border-left: solid 1px #CCC; /* Sets the left border properties for an element using shorthand notation */
	border-right: solid 1px #CCC; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 182px;
	min-height: 800px;
}
#outerWrapper #contentWrapper #rightColumn1 #boxnavright {
	/* border: thin solid #000; */
	width:182px;
	background-color: #FFF;

	overflow:hidden;
	margin: auto;
/*	float: left; */
}
#outerWrapper #contentWrapper #rightColumn1 #boxnavright #boxright {
	border: thin solid #000;
	background-color: #FFF;
	padding: 3px 3px 3px 3px;
	margin: 5px 0px 5px 0px;
	overflow:hidden;
	width: 172px;
	text-align:center;
	color: #36F;
	font-family:Verdana, Geneva, sans-serif;
	font-size:10px;
	
}
#outerWrapper #contentWrapper #rightColumn1 #boxnavright #boxright #boxrighttop {
	padding: 3px 3px 3px 3px;
}
#outerWrapper #contentWrapper #rightColumn1 #boxnavright #boxright #boxrightbottom {
	margin-top: 5px;
	padding-left:0px;
	text-align:center;
	font-family:Verdana, Geneva, sans-serif;
	font-size:10px;
	font-weight:bold;
}
#outerWrapper #contentWrapper #rightColumn1 #right_head{
	margin-left: -3px;
	margin-top: -3px;
	margin-bottom: 5px;
	border:1px solid #1890d0;-webkit-box-shadow: #B4B5B5 4px 4px 4px;-moz-box-shadow: #B4B5B5 4px 4px 4px;
	-webkit-box-shadow: #B4B5B5 0px 6px 4px ;
	-moz-box-shadow: #B4B5B5 0px 6px 4px;
	box-shadow: #B4B5B5 0px 6px 4px;
	width:170px;font-size:16px;
	font-family:arial, helvetica, sans-serif;
	padding: 10px 10px 10px 10px;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
	font-weight:bold;
	text-align: center;
	color: #FFFFFF;
	background-color: #38ABE8;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #38ABE8), color-stop(100%, #738DB8));
	background-image: -webkit-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -moz-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -ms-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -o-linear-gradient(top, #38ABE8, #738DB8);
	background-image: linear-gradient(top, #38ABE8, #738DB8);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#38ABE8, endColorstr=#738DB8);
}
.image_shadow {
	box-shadow: #333 3px 3px 4px;
	-moz-box-shadow: #333 3px 3px 4px;
	-webkit-box-shadow: #333 3px 3px 4px;
}
.gradient_blue {
	-moz-linear-gradient(-90deg,#1aa6de,#022147);
	-webkit-gradient(linear, left top, left bottom, from(#1aa6de), to(#022147));
	-webkit-linear-gradient(top, #1aa6de, #022147);
	-moz-linear-gradient(top, #1aa6de, #022147);
	-ms-linear-gradient(top, #1aa6de, #022147);
	-o-linear-gradient(top, #1aa6de, #022147);
	linear-gradient(top, #1aa6de, #022147);
}
.button_offer{
	width: 150px;
	border:1px solid #1890d0;-webkit-box-shadow: #B4B5B5 4px 4px 4px;
	-moz-box-shadow: #B4B5B5 4px 4px 4px;
	box-shadow: #B4B5B5 4px 4px 4px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;	
	font-size:14px;
	font-family:arial, helvetica, sans-serif;
	padding: 10px 10px 10px 10px;
	text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
	background-color: #38ABE8;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #38ABE8), color-stop(100%, #738DB8));
	background-image: -webkit-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -moz-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -ms-linear-gradient(top, #38ABE8, #738DB8);
	background-image: -o-linear-gradient(top, #38ABE8, #738DB8);
	background-image: linear-gradient(top, #38ABE8, #738DB8);
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#38ABE8, endColorstr=#738DB8);
}

.button_offer:hover{
	-moz-box-shadow: #B4B5B5 2px 2px 2px;
	box-shadow: #B4B5B5 2px 2px 2px;
 	border: 1px solid #1374a7;
	background-color: #1993d4;
 	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1993d4), color-stop(100%, #5372a5));
 	background-image: -webkit-linear-gradient(top, #1993d4, #5372a5);
 	background-image: -moz-linear-gradient(top, #1993d4, #5372a5);
 	background-image: -ms-linear-gradient(top, #1993d4, #5372a5);
 	background-image: -o-linear-gradient(top, #1993d4, #5372a5);
 	background-image: linear-gradient(top, #1993d4, #5372a5);
 	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#1993d4, endColorstr=#5372a5);
}
.topnav_white {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
}
.topnav_white:hover{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FF3;
	text-decoration: none;
}
.redbold {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #F00;
	text-decoration: none;
}
.rednobold {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #F00;
	text-decoration: none;
}
.smallwhite {
	font-family:Verdana, Geneva, sans-serif;
	font-size:10px;
	color: #CCC;
}
/* Left menu */
.arrowlistmenu{
width: 180px; /*width of menu*/
}

.arrowlistmenu ul{
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
/* padding-bottom: 2px; bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
color: #63F;
background: url(images/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
}

.arrowlistmenu ul li a:visited{
/* color: #A70303; */
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #333;
	background-color: #E5E5E5;
}