@import url("gfx/MasterFloatRESETv12.css"); /* Upload stylesheet to GFX folder */
@import url("gfx/960_24_col.css"); /* Upload stylesheet to GFX folder */
/* 1.ROOT */
html {
overflow-x: hidden !important; /* This will NOT show the horizontal scrollbar in all modern browsers */
overflow-x: hidden/9; /* This will NOT show the horizontal scrollbar in IE8 */
overflow-y: auto/9; /* This will show the vertical scrollbar if needed  in IE8 */
*overflow-x: hidden; /* This will NOT show the horizontal scrollbar in IE7 */
*overflow-y: auto; /* This will show the vertical scrollbar if needed  in IE7 */	
}

*{
font-family: Arial, Verdana, Helvetica, sans-serif;
text-align: left;
margin: 0;
padding: 0;
border: 0;
}

body {
	font : 100%/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #0051fd;
}
/* 2.HEADINGS */

h1, h2, h3, h4, h5, h6 {
	font-family : sans-serif;
	font-weight : bold;
	text-transform: uppercase;
}
h1 {
	margin-bottom : .75em;
	font-size : 3em; /* 48 / 16 = 3 */
	line-height : 1.2;
}
h2 {
	margin-bottom : .75em;
	font-size : 2em; /* 36 / 16 = 2 */
	line-height : 1.2;
}
h3 {
	margin-bottom : 1em;
	font-size : 1.5em; /* 24 / 16 = 1.5 */
	line-height : 1.3;
}
#footer h1 {
	font-size: 18px;
	color: #054083;
}

h4 {
	margin-bottom : 1.25em;
	font-size : 1.25em; /* 20 / 16 = 1.25 */
	line-height : 1.25;
}
h5 {
	margin-bottom : 1.5em;
	font-size : 1em; /* 16 / 16 = 1 */
}
h6 {
	font-size : 1em; /* 16 / 16 = 1 */
}
/* 3.TYPOGRAPHY */

p, ol, ul, dl, address {
	margin-bottom : 1.5em;
	font-size : 1em; /* 16 / 16 = 1 */
}
ul, ol {
	margin : 0 0 0.5em 24px;
	padding-left : 24px;
	list-style-position: outside;
}
ul {
	list-style-type : disc;
}
ol {
	list-style-type : decimal;
}
ul li, ol li {
	margin : 0;
	font-size : 1em; /* 16 / 16 = 1 */
}
dl, dd {
	margin-bottom : 1.5em;
}
dt {
	font-weight : normal;
}
blockquote {
	margin : 0 0 1.5em 24px;
	padding-left : 24px;
	border-left : 1px solid rgb(200,200,200); /* hex code can be used here too */
	font-style : italic;
}
blockquote:before, blockquote:after, q:before, q:after {
	content : '';
	content : none;
}
b, strong {
	font-weight : bold;
}
i, em {
	font-style : italic;
}
sup, sub {
	position : relative;
	font-size : 75%;
	line-height : 0;
}
sup {
	top : -.5em;
}
sub {
	bottom : -.25em;
}
address {
	 color: #FFFFFF;
    font-family: Arial;
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    line-height: 17px;
    margin-top: 1px;
    text-align: center;
	}

hr {
	border: none;
	border-top: 1px dotted #b2b2b1;
	height: 1px;
	margin: 30px 30px 30px 20px;
	clear: both;
}

/* 4.LINKS */

a {
	    color: #f99b00;
    font-weight: bold;
    outline: medium none;
    text-decoration: underline;
}
a:visited {
	outline : none;
	color : #4C433C;
	text-decoration : none;
}
a:hover {
	outline : none;
	color : rgb(40,40,40); /* hex code can be used here too */
	text-decoration : underline;
}
a:active, a:focus {
	outline : none;
	color : rgb(0,0,0); /* hex code can be used here too */
}
/* 5.NAVIGATION/MENU */

/* Feel free to change up this area as you see fit in order
to best suit your design. */


div#menu {
	bottom: 2px;
	height: 37px;
	left: 57px;
	margin: 0;
	padding-left: 0;
	position: absolute;
	top: 265px;
	width: 963px;
	z-index: 99;
}


ul#nav {
	margin: 0;
	padding: 0;
	width:auto;
}
ul#nav li {
	float: left;
	padding: 0;
	list-style: none;
	list-style-image: none;
}
ul#nav li.last {
}
ul#nav li.first {
}
ul#nav li a {
 border-right: 1px solid #565656;
    color: #FFFFFF;
    display: block;
    font-size: 12px;
    font-weight: bold;
    line-height: 26px;
    padding: 0 11px;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;}
/* yes, you can combine the bottom two styles if you would like or need to */	
ul#nav li a.current {
    background-color: #f9a700;
    color: #000;
}
ul#nav li a:hover {
	color: #000;
	 background-color: #f9a700;
}
/* second level dropdown */	
		ul#nav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-left:-25px;
}
ul#nav li ul li a, ul#nav li.current ul li a { /* second level dropdown buttons */
	width:200px;
	background-color: #666;
	border-bottom: 1px solid #999;
	line-height:26px;
	color:#fff;
}
ul#nav li ul li a:hover, ul#nav li.current ul li a:hover { /* second level dropdown button hover state */
	background-color: red;
	border-bottom: 1px solid #900;
	color:#fff;
}
ul#nav li ul li ul li a, ul#nav li.current ul li ul li a { /* third level dropdown buttons */
	width:200px;
	background-color: #00F;
	border-bottom: 1px solid #06F;
	line-height:26px;
	color:#fff;
}
ul#nav li ul li ul li a:hover, ul#nav li.current ul li ul li a:hover { /* third level dropdown button hover state */
	background-color: red;
	border-bottom: 1px solid #900;
	color:#fff;
}
ul#nav li ul li ul { /* third-and-above-level lists */
	margin: -1em 0 0 200px;
}
ul#nav li:hover ul li ul, ul#nav li:hover ul li ul li ul, ul#nav li.sfhover ul li ul, #nav li.sfhover ul li ul li ul {
	left: -999em;
}
ul#nav li:hover ul, ul#nav li ul li:hover ul, ul#nav li ul li ul li:hover ul, ul#nav li.sfhover ul, ul#nav li ul li.sfhover ul, ul#nav li ul li ul li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
ul#navbtm {
	margin: 0;
	padding: 5px 0 0 160px;
	width:auto;
}
ul#navbtm li {
	float: left;
	padding: 0;
	list-style: none;
	list-style-image: none;
}
ul#navbtmli.last {
}
ul#navbtm li.first {
}
ul#navbtm li a {
	color: #DED4B4;
	font-size: 9px;
	font-weight: bold;
	margin-right: -4px;
	padding-bottom: 0;
	padding-right: 14px;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}
ul#navbtm li a:hover {
	color: #FFF;
	text-decoration: underline;
}

#wrapper-footer {
	padding: 15px 0px;
	width:100%;
	background-color:#2F3253;
}


/* ----------------- LAYOUT ELEMENTS ----------------- */

body.landing {
	margin: 0 auto;
	background-color: #fff;
	background-position: center top;
	 width:100%;

        }


body.interior {
	margin: 0 auto;
	background-position: left top;
	background-color: #000;
}

div#header {
    background-image: url("gfx/header.jpg");
    background-position: left top;
    background-repeat: no-repeat;
    height: 302px;
    position: relative;
    text-align: left;
    width: 960px;
    z-index: 100;
    margin-left: 0;
}

div#subheader {
	position: relative;
}

div#subheadera {
	 background-image: url("gfx/headera.png");
    background-position: left top;
    background-repeat: no-repeat;
    height: 362px;
    margin: -3px auto 0;
    position: relative;
    text-align: left;
    width: 960px;
    z-index: 100;
}

div#slideshow {
	position: absolute;
	top: 0px;
	left: 0px;
	width:960px;
	height: 260px;
}
div#callouts {
	
}
div#calloutb {
	margin-left: -5px;
}
div#textcontent {

	margin-right: 0;

	padding-right: 0;
	padding-top: 10px;
}

div#textcontenta {
	margin-left: -10px;
	margin-right: 0;
	padding-left: 10px;
	padding-right: 0;
	padding-top: 58px;
}
div#footer {
	margin-right:auto;
	margin-left:auto;
	height:45px;
	background-repeat: repeat;
	clear: both;
	font-size: 12px;
	font-weight: 200;
	padding-top: 45px;
	padding-left: 0px;
	text-transform: none;
	font-family: Arial;
	color: #999999;
	text-align: center;
}


div#footer a:link, div#footer a:visited{
    font-family: arial;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color:#fff;
	text-decoration: none;
	padding-right: 10px;
	padding-left: 10px;
}

div#footer a:active, div#footer a:hover{
    font-family: arial;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color:#666;
	text-decoration: underline;
}

#widgetbottom {
	background-repeat: repeat-x;
}
#textcontent h1 {
 color: #000;
    font-family: arial;
    font-size: 31px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: none;
}
#textcontent h2 {
	color: #cb0000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 20px;
	margin-top: 0px;
	text-transform: capitalize;
}
#textcontent h3 {
	color: #4d0000;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-transform: none;
	margin-left:15px;
}

#textcontent h4 {
	color: #921b1b;
	margin-bottom: 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-left:15px;
}

#textcontent strong {
	color: #000;
}
#textcontenta h1 {
	color: #053f82;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 25px;
	text-transform: capitalize;
	margin-top: -61px;
	border-bottom-style: none;
	font-weight: bold;
}

#textcontenta h2 {
	color: #333;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	text-transform: capitalize;
	border-bottom-style: none;
	font-weight: bold;
}
#textcontent p {
	color: #000000;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    margin-bottom: 0;
    padding-bottom: 15px;
}
#textcontent li {
	line-height: 18px;
	margin-bottom: 0px;
	font-size: 12px;
	padding-bottom: 5px;
	font-weight: normal;
	color: #333;
	margin-left: 15px;
	margin-right: 15px;
}

#textcontent ul {
	margin: 0 0 20px 0;
}
#textcontenta p {
	line-height: 24px;
	margin-bottom: 0px;
	font-size: 13px;
	padding-bottom: 15px;
	font-weight: normal;
	color: #333;
}
#textcontenta strong {
	color: #000;
}
div#sidebar {
	margin-top: -14px;
	padding-top: 17px;
}
div#sidebara {
	padding-top: 13px;
	margin-left: 1px;
}
#sidebar address {
	padding-left: 2px;
}
#sidebar h2 {
	font-size: 20px;
	margin-left: 20px;
	color: #FFF;
}
#sidebar p {
	line-height: 17px;
	padding-left: 20px;
}
div#logo {
	left: 7px;
    position: absolute;
    top: 66px;
	width: 344px;
	z-index:5000px;
	background-image: url(gfx/logo.png);
	height: 164px;
	background-repeat: no-repeat;
}
div#cta {
	position: absolute;
	top: 89px;
	 left: 487px;
	width: 461px;
	z-index:500;
	height: 140px;
	background-image: url(gfx/slogan-2.png);
}
/* ----------------- COPYRIGHT/LOGIN ----------------- */
div#copyright {
    clear: both;
    color: #FFFFFF;
    font-size: 12px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 51px;
    text-align: center;
}
div#copyright a {
	text-decoration: underline;
	color: #FFF;
	font-size: 11px;
}
div#copyright a:hover {
	color: #000;
	text-decoration: underline;
}
/* ----------------- WRAPPERS ----------------- */

/*wrappers if you require for your design*/
div#wrapperheader {
	background-repeat: repeat-x;
	background-position: center top;
	background-color: #001453;
	background-image: url(gfx/bg-wrapperheader.jpg);
	height: 1224px;
	width:100%;
        }


div#wrapperheader2 {
	background-repeat: repeat-x;
	background-position: center top;
	background-color: #001453;
	background-image: url(gfx/bg-wrapperheader.jpg);
	height: 734px;
	width:100%;
	
}
div#wrappercontent {
	background-repeat: repeat-x;
	background-color: #fefefe;
	background-image: url(gfx/bg-wrappercontent.jpg);

}
div#wrappercontent2 {
		padding-top: 45px;
	background-repeat: repeat-y;
	background-image: url(gfx/bg-wrappercontent.jpg);
	
	
}
div#wrapperfooter {
	background-repeat: repeat-x;
	background-position: left top;
	background-image: url(gfx/bg-wrapperfooter.jpg);
	background-color: #FFF;
	height: 316px;
}
div#wrapperfooter2 {
	background-repeat: repeat-x;
	background-position: left top;

}


div#divider {
    height: auto;
    margin-left: 355px;
}
	

.imgright {
    border: 1px solid #5C2431;
    float: right;
    margin-left: 30px;
}