/* CSS3 Dropdown Menu by WebDesignerWall*/
body {
    font: normal .8em/1.5em Vendana, Arial, Helvetica, sans-serif;
/*    background: #ebebeb; */
    width: 960px;
	margin: 5px auto;
    color: #666;
	background-image: linear-gradient(bottom, rgb(182,205,222) 40%, rgb(252,252,252) 70%, rgb(255,255,255) 85%);
	background-image: -o-linear-gradient(bottom, rgb(182,205,222) 40%, rgb(252,252,252) 70%, rgb(255,255,255) 85%);
	background-image: -moz-linear-gradient(bottom, rgb(182,205,222) 40%, rgb(252,252,252) 70%, rgb(255,255,255) 85%);
	background-image: -webkit-linear-gradient(bottom, rgb(182,205,222) 40%, rgb(252,252,252) 70%, rgb(255,255,255) 85%);
	background-image: -ms-linear-gradient(bottom, rgb(182,205,222) 40%, rgb(252,252,252) 70%, rgb(255,255,255) 85%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.4, rgb(182,205,222)),
		color-stop(0.7, rgb(252,252,252)),
		color-stop(0.85, rgb(255,255,255))
	);
} 

img {
border: none;
align: left;
}

td {
width: 20%;
}

a {
	color: #333;
}

#nav {
	margin: 0;
	padding: 7px 6px 0;
	line-height: 80%;
	border-radius: 2em;
	position:absolute
	z-index: 6;
	width: 948px;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);

	background: #8b8b8b; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#a9a9a9', endColorstr='#7a7a7a'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#a9a9a9), to(#7a7a7a)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #a9a9a9,  #7a7a7a); /* for firefox 3.6+ */

}
#nav li {
	margin: 0 12px 0 5px;
	padding: 0 0 8px;
	float: left;
	position: relative;
	list-style: none;
}
/* main level link */
#nav a {
	font-weight: bold;
	color: #e7e5e5;
	text-decoration: none;
	display: block;
	padding:  8px 25px;
	margin: 0;
	-webkit-border-radius: 1.6em;
	-moz-border-radius: 1.6em;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
/* main level link hover */
#nav .current a, #nav li:hover > a {
	background: #d1d1d1; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb', endColorstr='#a1a1a1'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#a1a1a1)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ebebeb,  #a1a1a1); /* for firefox 3.6+ */

	color: #444;
	border-top: solid 1px #f8f8f8;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

/* tom level link hover */
#nav .signup a, #nav li:hover > a {
	background: #d1d1d1; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb', endColorstr='#a1a1a1'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#a1a1a1)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ebebeb,  #a1a1a1); /* for firefox 3.6+ */

	color: #039eda;
	border-top: solid 1px #f8f8f8;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #666;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#nav ul a:hover {
	background: #0399d4 !important; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#04acec', endColorstr='#0186ba'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba)) !important; /* for webkit browsers */
	background: -moz-linear-gradient(top,  #04acec,  #0186ba) !important; /* for firefox 3.6+ */

	color: #fff !important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}
/* level 2 list */
#nav ul {
	background: #ddd; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cfcfcf'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cfcfcf)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #fff,  #cfcfcf); /* for firefox 3.6+ */
	z-index: 1000;
	display: none;
	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 35px;
	left: 0;
	border: solid 1px #b4b4b4;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
/* dropdown */
#nav li:hover > ul {
	display: block;
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}
#nav ul a {
	font-weight: normal;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .9);
}
/* level 3+ list */
#nav ul ul {
	left: 181px;
	top: -3px;
}
/* rounded corners for first and last child */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 9px;
	-moz-border-radius-topleft: 9px;
	-webkit-border-top-right-radius: 9px;
	-moz-border-radius-topright: 9px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 9px;
	-moz-border-radius-bottomleft: 9px;
	-webkit-border-bottom-right-radius: 9px;
	-moz-border-radius-bottomright: 9px;
}
/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
}
html[xmlns] #nav {
	display: block;
}
* html #nav {
	height: 1%;
}

.bodyfooter1{
	padding-left: 10px;
	font-size: 10px; 
	color: #0297d0;
}

.bannerline1{
/*	font-size: 15px; */
    font: normal 1.4em/1.5em Verdana, Arial, Helvetica, sans-serif;
	color: #0297d0; /* #1982c7; /* #5ea9dc; #70b8ea #2262f4; */
}

.bannerline2{
/*	font-size: 15px; */
    font: normal 1.0em/1.5em Verdana, Arial, Helvetica, sans-serif;
	color: #0297d0; /* #1982c7; /* #5ea9dc; #70b8ea #2262f4; */
text-align: center;
}

.headline1{
	font-size: 18px; 
    font: normal 1.2em/1.5em Verdana, Arial, Helvetica, sans-serif;
	color: #0297d0; 
}

.headline2{
	font-size: 14px; 
	color: #0297d0; 
}

#top_nav_wrapper {
	float: right; 
	margin-right: 6px;
}

.top_navigation{list-style-type:none;overflow:hidden;padding:0;}
.top_navigation li{float:left;line-height:20px;}
.top_navigation li a {margin-bottom: 3px;background-color:#e9f3f8;border:1px solid #e9f3f8;display:block;padding:3px 5px 3px 5px; text-decoration: none}
.top_navigation li a.last {margin-bottom: 0;}
.top-navigation li.across {border: 1px solid red !important;}
.top_navigation li a:hover{background-color:#0297d0;text-decoration:none;}
.top_navigation .first{border-radius:0px 0px 0px 5px;-moz-border-radius:0px 0px 0px 5px;-webkit-border-bottom-left-radius:5px;}
.top_navigation .last{border-radius:0px 0px 5px 0px;-moz-border-radius:0px 0px 5px 0px;-webkit-border-bottom-right-radius:5px;}
.top_navigation li a{display:block;}
.ie6 .top_navigation .media{display:inline;}
.top_navigation .bd{display:inline-block;padding:9px 0 9px 0;}
.inline_list{overflow:hidden;}
.inline_list > li{list-style-type:none;display:inline-block;vertical-align:top;}

#social {
	text-align: right;
}

#social a {
	display: inline-block;
	margin-left: 2px;
}

h1.headline {
  padding: 0;
  margin: 10px 0 20px 0;
  font-size: 24px;
  color: #333;
}

h1.headline3 {
  padding: 0;
  line-height: 30px;
  margin: 10px 0 20px 0;
  font-size: 24px;
  color: #333;
}

div.sub_headline {	
	float:left;
  	width:260px;
  	padding: 15px 20px;
  	margin-right:30px;
  	margin-bottom: 20px;
  	font-size: 15px;
  	color: #333;
  	background-color:#eee;
	border-radius: 16px 16px 16px 16px; 
	-moz-border-radius: 16px 16px 16px 16px; 
	-webkit-border-radius: 16px 16px 16px 16px;		
}

div.sub_headline.last {
	margin-right: 0px;
}

div.clear {
  clear: both;
}

div.transbox_left
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:246px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  margin-bottom: 20px;
font-size: 14px; 
color: #333;
  }

div.transbox_footer
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:24px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:0.8;
  filter:alpha(opacity=80); /* For IE8 and earlier */
margin-bottom: 20px;
  }

div.transbox1
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 0px solid #468048;
background-color:#e2eef2;
  width:636px;
  height:620px;
  margin:40px 0px;
  border:0px solid #0297d0;
  opacity:1.0;
margin-bottom: 20px;
  }

div.transbox_img
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 0px solid #468048;
background-color:#e2eef2;
float:left;
  width:636px;
  height:488px;
  margin:0px 0px;
  border:0px solid #0297d0;
  opacity:1.0;
margin-bottom: 20px;
  }

div.otherbox_left
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:2040px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.otherbox_tips
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:1850px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.featuresbox_left
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:720px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.transbox_leftimg
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
width:620px;
  height:2040px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.otherbox_leftcontact
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:450px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.otherbox_leftresearch
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:980px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.otherbox_leftbkgd
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:1900px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.otherbox_leftprivacy
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:4120px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.otherbox_leftterms
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:7100px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.otherbox_leftauthor
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:850px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.otherbox_leftsignup
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 30px;
float:left;
  width:595px;
  height:600px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }

div.transbox0_right
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
  float:right;
  width:253px;
  height:669px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
font-size: 14px; 
color: #333;
  }
  
div.transbox_right
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
  float:right;
  width:253px;
  height:750px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }
  
div.transbox_rightlong
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
  float:right;
  width:253px;
  height:1250px;
  margin:0px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }
  
div.transbox2_right
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 10px;
padding-right: 20px;
padding-top: 10px;
float:right;
width:264px;
height:476px;
margin:0px 0px;
background-color:#ffffff;
border:1px solid #0297d0;
opacity:1.0;
filter:alpha(opacity=80); /* For IE8 and earlier */
font-size: 14px; 
color: #333;
margin-bottom: 20px;
  }

div.transbox_center
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
background-color:#e2eef2;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
  float:right;
  width:920px;
  height:510px;
  margin:10px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
text-indent: 50px;
font-size: 14px; 
color: #333;
  }

div.transbox2_center
  {
border-radius: 16px 16px 16px 16px; 
-moz-border-radius: 16px 16px 16px 16px; 
-webkit-border-radius: 16px 16px 16px 16px; 
border: 1px solid #468048;
/*background-color:#e2eef2;
background: -moz-linear-gradient(right, #000000, #c9edfa);
background: -webkit-gradient(linear, right center, left center, from(#dddddd), to(#ffffff)); */
background: -moz-linear-gradient(right, #000000, #000000);
background: -webkit-gradient(linear, right center, left center, from(#000000), to(#000000));

padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
  float:right;
  width:920px;
  height:100px;
  margin:10px 0px;
  background-color:#ffffff;
  border:1px solid #0297d0;
  opacity:1.0;
  filter:alpha(opacity=80); /* For IE8 and earlier */
  }
  
ul.niceList 
  { 
  margin-left:0em; 
  padding-left:0.2em; 
  margin-bottom:1em; 
  }
ul.niceList li 
  { 
  background:url(images/bullet2.gif) 0em 0.3em no-repeat;
  padding-left: 0.8em; 
  list-style: none; 
  }
.niceList ul li 
  { 
  background-image:url(images/bullet_child.gif); 
  }
ol.niceList li, ul.niceList li 
  { 
  margin-bottom:0.5em; 
  }
ol.niceList  
  { margin-left:1.5em; 
  padding-left:0px;
  }
.niceList ol li 
  { 
  list-style:decimal; 
  background-image:none; 
  padding-left:0em; 
  }
