/* CSS Document */

@font-face {
    font-family: 'OSPDIN';
    src: url('../_fonts/OSP-DIN-webfont.eot');
    src: url('../_fonts/OSP-DIN-webfont.eot?#iefix') format('embedded-opentype'),
         url('../_fonts/OSP-DIN-webfont.woff') format('woff'),
         url('../_fonts/OSP-DIN-webfont.ttf') format('truetype'),
         url('../_fonts/OSP-DIN-webfont.svg#OSPDIN') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('../_fonts/Roboto-Regular-webfont.eot');
    src: url('../_fonts/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../_fonts/Roboto-Regular-webfont.woff') format('woff'),
         url('../_fonts/Roboto-Regular-webfont.ttf') format('truetype'),
         url('../_fonts/Roboto-Regular-webfont.svg#RobotoRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
	font-family:"RobotoRegular", Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#CCC !important;
	line-height:150%;
	text-align:left;
	margin: 0;
	padding: 0;
	background:#141F4C;
	background-color:#141F4C;
	cursor:auto;
}

h1, h2, h3, h4, h5, h6  {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 14px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any e model math. A nested div with side padding can also be used as an alternate method. */
/*	font-family: Arial, Helvetica, sans-serif;*/
	font-family:"OSPDIN", Arial, Helvetica, sans-serif;
	font-weight:normal;
	letter-spacing:1px;
	line-height:125%;
	color:#FFCC00;
	display:inline;
}

h1 {
	margin:0;
	padding:0px;
	font-size:28px;
	color:#FFCC00;
	width: auto;
}

h2 {
	margin:0;
	padding:0px;
	font-size:22px;
	color:#FFF;
	width: auto;
}

h3 {
	margin:0;
	padding:0px;
	font-size:18px;
	color:#FFF;
	width: auto;
}


h4 {
	margin:0;
	padding:0px;
	display:inline;
	font-size:16px;
	color:#FFF;
	width: auto;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #FFF;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #FFF;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color:#FFCC00;
}


hr {
  border: none;
  /* top    */ 
   border-top:#808080 1px dashed;
   height: 1px;
   /* IE6+7 need the total height */
}

img {
	border:none;
}

p {
	line-height:120%;
}

/* FORM STYLES  */

input {
	padding: 2px;
}

input:hover, focus {
	color:#F60;
}



/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	position: static;
	width: 100%px;
	height:auto;
	border:#999 0px solid;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	text-align:left;
	background:#141F4C;
	background-color:#141F4C;
}

.header {
	position:relative;
	top:0px;
	left:0px;
	height:120px;
	width:100%;
	background: #171C2F; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0A0F23', endColorstr='#141F4C'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#0A0F23), to(#141F4C)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #0A0F23,  #141F4C); /* for firefox 3.6+ */ 
}


.elements {
	position:relative;
	text-align:left;
}


/*  Left Main box Navigation  */
.boxColumn {
  position:relative;
  behavior: url(ie-css3.htc); /* This lets IE know to call the script on all elements which get the 'box' class */
  width:170px;
  height : auto !important; /* ignored by IE, applied everywhere else */
/*  border:#808080 2px solid; */
  top:0px;
  left:0px;
/*  background: #171C2F; */ /* for non-css3 browsers */
  -moz-border-radius: 14px; /* Firefox */
  -webkit-border-radius: 14px; /* Safari and Chrome */
  border-radius: 14px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
  
/*  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.90);  /* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */ 
/*  -moz-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.90);  /* Firefox */
/*  -webkit-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.90);  /* Safari and Chrome */
  padding: 8px 8px 8px 14px; */
  height:auto;
  font-family:'RobotoRegular', Arial, Helvetica, sans-serif;
  font-size:10pt;
  text-align:left;
  z-index:2;
}

.boxColumnContent{
  padding: 8px 8px 8px 14px;
  font-family:'RobotoRegular', Arial, Helvetica, sans-serif;
  font-size:10pt;
  text-align:left;
}

.boxColumnContent a:link, a:visited, a:active {
	color:#FFF;
	text-decoration:none;
}

.boxColumnContent a:hover {
	color: #FC0;
	text-decoration:underline;
}


/*  for Card Thumbnails  */
.boxCard {
	width:100px;
  -moz-border-radius: 0px; /* Firefox */
  -webkit-border-radius: 0px; /* Safari and Chrome */
  border-radius: 0px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
  
/*  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.70);  /* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */ 
/*  -moz-box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.70);  /* Firefox */
/*  -webkit-box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.70);  /* Safari and Chrome */

  behavior: url(ie-css3.htc); /* This lets IE know to call the script on all elements which get the 'box' class */
  background:#182254;
  padding:0px;
  border:3px solid #CCC;
  height:118px;
  z-index:155;
} 

.boxcardShadowHome {
	position:relative;
	width:12px;
	height:79px;
	left:118px;
	top:48px;
	float:right;
	background:url(../_images/boxcardShadow.png) no-repeat;
	z-index:148;
}

.fbcoverShadow {
	position:relative;
	width:89px;
	height:88px;
	left:14px;
	top:76px;
	float:right;
	background:url(../_images/fbcoverShadow.png) no-repeat;
	z-index:10;
}

.categoryLabel {
	margin:0px;
	display: inline-block;
	padding:1px 6px;
	color:#CCC;
	background: #002346;
	border:#666 1px solid;
	font-size:12px;
	-moz-border-radius: 4px; /* Firefox */
  	-webkit-border-radius: 4px; /* Safari and Chrome */
  	border-radius: 4px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
	opacity:0.8;
	filter:alpha(opacity=80); /* For IE8 and earlier */
	z-index:10;
}

.categoryLabel a:link, a:active, a:visited {
	color:#CCC !important;
	text-decoration:none;
}

.categoryLabel a:hover, a:focus {
	color: #FC0 !important;
	text-decoration:underline;
}

.headline {
	margin:0;
	padding:0px;
	font-family:"OSPDIN", Arial, Helvetica, sans-serif;
	font-weight:normal;
	letter-spacing:1px;
	line-height:100%;
	font-size:52px;
	color:#FFCC00;
	width: auto;
}


.subHeadline {
	margin:0;
	padding:0px;
	font-family:"RobotoRegular", Arial, Helvetica, sans-serif;
	font-weight:normal;
	letter-spacing:1px;
	line-height:110%;
	font-size:20px;
	color:#CCCCCC;
	width: auto;
}

.content {
	font-family:"RobotoRegular", Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#CCC !important;
	line-height:125%;
	text-align:left;
}

.content a:link, a:visited, a:active {
	color:#FFF;
	text-decoration:none;
}

.content a:hover {
	color: #FC0;
	text-decoration:underline;
}

.contentBold {
	font-family:"RobotoRegular", Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#CCC !important;
	line-height:125%;
	font-weight:bold;
	text-align:left;
}


/* smaller text */
.breadCrumbs {
	font-family: 'RobotoRegular', Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#CCC !important;
	line-height:150%;
}


.breadCrumbs a:link, a:active, a:visited {
	font-family:'RobotoRegular', Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#CCC !important;
	text-decoration:underline;
}


.breadCrumbs a:hover {
	font-size:13px;
	color: #FC0 !important;
	text-decoration:underline;
}

.tableForm td {
	padding:4px;
}

.contentBlack {
	color:#000;
	font-family:'RobotoRegular', Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:125%;
}

.contentBlack a:link, a:active {
	font-family:'RobotoRegular', Arial, Helvetica, sans-serif;
	font-size:14px;
	color: #898989 !important;
	text-decoration:none;
}

.contentBlack a:visited {
	font-family:'RobotoRegular', Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#898989 !important;
	text-decoration:none;
}

.contentBlack a:hover {
	font-family:'RobotoRegular', Arial, Helvetica, sans-serif;
	font-size:14px;
	color: #898989 !important;
	text-decoration:underline;
}


/*  TOOL TIPS */

#tooltip{
	position:absolute;
	border:1px solid #333;
	background:#f7f5d1;
	font-size:12px;
	background:#FFF;
	opacity:0.9;
	filter:alpha(opacity=90); /* For IE8 and earlier */
	padding:4px 8px;
	color:#000;
	font-weight:normal;
	display:none;
	-moz-border-radius: 4px; /* Firefox */
  	-webkit-border-radius: 4px; /* Safari and Chrome */
  	border-radius: 4px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
	z-index:900;
}


/* Top nav buttons */
.buttonTop {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #141f4c), color-stop(1, #000000) );
	background:-moz-linear-gradient( center top, #141f4c 5%, #000000 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#141f4c', endColorstr='#000000');
	background-color:#141f4c;
	border:1px solid #666;
	display:inline-block;
	color:#fafafa;
	font-family:"OSPDIN", Arial, Helvetica, sans-serif;
	font-size:20px;
	padding:8px 18px;
	text-decoration:none;
}.buttonTop:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #000000), color-stop(1, #141f4c) );
	background:-moz-linear-gradient( center top, #000000 5%, #141f4c 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#141f4c');
	background-color:#000000;
}.buttonTop:active {
	position:relative;
	top:1px;
}
/* This imageless css button was generated by CSSButtonGenerator.com */

/* Top nav buttons ON */
.buttonTopON {
	background-color:#141F4C;
	border:1px solid #666;
	border-bottom:1px #141f4c solid;
	display:inline-block;
	color:#FFCC00;
	font-family:"OSPDIN", Arial, Helvetica, sans-serif;
	font-size:20px;
	padding:8px 18px;
	text-decoration:none;