/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}

html, body {height: 100%;}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


body {
	background-repeat: repeat-x;
}

h1, h2, h3, h4{
	font-family: Interstate Light, Arial, sans-serif;
  	font-style: normal;
  	font-weight: normal;
	color: #555555;	
}

h1{
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 25px;
}

h2{
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 0em;
}

h3{
	font-size: 19px;
	line-height: 23px;
	margin: 15px 0px;
}

h4{
	font-size: 16px;
	margin: 8px auto;
}

p {
	font-family:Interstate Regular, Arial, sans-serif;
	line-height: 27px;
	margin: 16px auto;
	color: #555555;	
}

ul{
	font-family: Interstate Regular, Arial, sans-serif;
	line-height: 27px;
	color:#555555;
}

ul.green{
	color: #007a86;
}

li > span{
	color:#555555;
}

tbody, tfoot, thead, tr, th, td{
	font-family:Interstate Regular, Arial, sans-serif;
	line-height: 27px;
	margin: 25px;
	color: #555555;	
}

form{
	font-family:Interstate Regular, Arial, sans-serif;
	line-height: 27px;
	margin: 16px auto;
	color: #555555;	
}

td.info{
	width: 125px;
	padding-bottom: 14px;
}

td.demo{
	padding-bottom: 14px;
}

b{
	font-weight: bold;
}

i{
	font-style: italic;
}

a{
	color: #555555;
	text-decoration: none;
}

img{
	border: none;
	margin: 0px;
}

hr{
	border: solid 1px #dddddd;
	}

.blue{
	font-family: Interstate Light, Arial, sans-serif;
	color:#17a6e8;
}

.orange{
	color:#ff6800;
}

ul.orange{
	font-size: 14px;
	line-height: 21px;
	color:#ff6800;
}

small{font-family: Interstate Light, Arial, sans-serif; font-size:14px; color:#555555;}

#wrap {min-height: 100%;}

#body-container {
position: relative;
width: 982px;
margin: 0 auto;
overflow-x:hidden;
overflow-y:auto;
padding-bottom: 150px;
}

#topcontact{position: relative; width: 100%; text-align:right; clear: both; margin-bottom: 0em; padding-bottom: 0;}
#topcontact p{font-family: Interstate Bold, Arial, sans-serif; font-size: .75em; margin-top: .25em; color:#ffffff;}
#topcontact a{color:#ffffff;}

#top{
	position:relative;
	width:980px;
	height:50px;
	top: 0px;
}

#logo{
	float: left;
	width:187px;
	height:27px;
	margin-top: 0px;
}

#login {
	width: 500px;
	float: right;
	margin-top: 0px;
}

#subscribe{
	float:left;
	margin: 0px;
	font-family: Interstate Regular, Arial, sans-serif;
	font-size: .85em;
	color:#17a6e8;
}

#menu{
position:relative;
top: -15px;
height: 25px;
margin-left: -45px;
z-index:999;
}

/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	list-style:none;
	/* Clear floats */
	display:inline-block;
	width:100%;
	
}
#nav li{
	font-family:Interstate Light, Arial, sans-serif;
	display:inline-block;
	margin-right:10px;
	position:relative;
}
#nav a{
	display:block;
	padding:5px;
	color:#555555;
}
#nav a:hover{
	color:#cccccc;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
	background-color:#f2f2f2;
	width: 100%;
	border-bottom: 1px solid #dddddd;
	-webkit-box-shadow:  1px 1px 5px 1px #888888;
    box-shadow:  1px 1px 5px 1px #888888;

}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left: -40px; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */

}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;

}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
}

#content{
	position:relative;
	top: 40px;
	width: 980px;
}


#carousel{
	width:980px;
	height:318px;
	background-color:#f6f5f5;
	border:solid 1px #eeeeee;
	margin-top: 15px;
	margin-bottom: 50px;
}

.promo{
	font-size:42px;
	line-height: 45px;
	margin: 0px;
	color:#17a6e8;
}

.promo_two{
	font-size:32px;
	line-height: 45px;
	margin: 0px;
	color:#17a6e8;
}

.promo_textbox{
	float:left;
	width:395px;
	height:275px;
	padding: 15px;
	margin: 15px;
}


.promo_img{
	float:right; width:525px;
}

.webinar_carousel{
	float:left;
	width:400px;
	height:275px;
	padding: 15px;
	margin: 15px;
}

.webinar_img{
	float: right;
}

.promobullets{
font-size: 14px;
padding-top: 15px;
padding-left: 15px;
}

h1.solutions{
	color:#17a6e8; margin: 0px;
}

p.solutions{
	font-size: 14px; line-height: 21px;
}

ul.solutions{
	font-family:Interstate Light, Arial, sans-serif; font-size: 16px; line-height: 27px; margin: 10px; list-style-type: disc;
}

#carouselTwo{
	width:980px;
	height:75px;
	margin-top: 15px;
	margin-bottom: 25px;
	text-align: center;
	padding-top: 25px;
}


#carouselTwo img{margin: -10px 0px 0px 10px ;}

.carouselTwoLeft{padding: 25px; width: 625px; float: left;}
.carouselTwoLeft h1{ font-size: 30px; margin: 0px; color:#777777;}
.carouselTwoRight{width: 305px; float: right;}

.left_box{
	float:left; margin: 30px 0px 0px 0px; width: 600px; clear:both;
}

.right_box{
	float:left; margin-top: 35px; margin-left: 85px; width: 265px;
}

.quote{
	font-family:Interstate Light, Arial, sans-serif;
	font-size:27px;
	line-height: 38px;
	margin: 0px;
	color:#17a6e8;
}

.quote_indent{
	padding-left: 12px;
}

.quoted {
	font-family:Interstate Regular, Arial, sans-serif;
	line-height: 27px;
	color:#17a6e8;
	text-align: right;
	text-transform:uppercase;
	margin-top: 10px;
}

.testimonial_textbox{
	float:right;
	width:575px;
	height:275px;
	margin: 25px 25px 25px 50px;
}

.testimonial_img_carousel{
	float:left; width:300px;
}

.testimonial{
	width: 425px;
	min-height:361px;
	margin-bottom: 25px;
	padding: 25px;
	vertical-align: top;
	background-color:#f5f5f5;
	border-top:5px solid #555555;
	-webkit-box-shadow:  1px 1px 3px 1px #bbbbbb;
    box-shadow:  1px 1px 3px 1px #bbbbbb;
}

.testimonial_left{
	float: left;
	margin-right: 10px;
}

.testimonial_right{
	float: right;
	margin-left: 10px;
}

.testimonial_img{
	width:150px; margin-left: 15px; border: solid 1px #cccccc; float: right; margin-bottom: 0px; margin-top: 0px;
}

.testimonial_name{
	font-size: 18px; color: #17a6e8; text-transform:uppercase; margin-bottom: -10px; margin-top: 0px;
}

.testimonial quote{
	font-family:Interstate Regular, Arial, sans-serif;
	font-size: 21px;
	line-height: 27px;
	color:#17a6e8;
}


.hideShow{
	font-family: Interstate Light, Arial, sans-serif;
	font-size: 12px;
	color:#333333;
	/*text-decoration:underline;*/
	text-transform: uppercase;
	font-weight: bold;
}

.gray{
	color: #555555; font-weight: bold;
}

.press_column{
	font-family:Interstate Regular, Arial, sans-serif;
	margin: 50px 25px;
	font-size: 18px;
}

.press_heading{
	font-size: 25px; line-height:38px; color:#17a6e8; text-align: center;
}

ul.press_bullets{
	list-style-image:url(images/blue_arrow.png); padding-left: 15px;
}

li.press_bullets{
	margin-bottom: 15px;
}

.single_column{
	padding-top: 10px;
	clear: both;
}

.column{
	float:left;
	width:450px;
	margin-right:25px;
	padding-bottom: 25px;
}

.stateinfo{margin-top: 75px;}

.premium_content_box{
	width: 980px;
	background-color:#f8f8f8;
	border:solid 1px #cccccc;
	padding: 25px 0px;
	margin-top: 25px;
	clear: both;
}

.indent {padding-left: 25px; color:#17a6e8;}

.premium_content{
	width: 255px;
	display: inline-block;
	padding: 15px 15px;
	vertical-align: top;
}

.premium_content_border{
	border-right: solid 1px #cccccc;
	border-left: solid 1px #cccccc;
	display: inline-block;
	width: 285px;
	padding: 15px 15px;
	margin-right: 25px;
	margin-left: 25px;
	vertical-align: top;
}

.why_bullets{
	float: left; width:275px;
}

.img_bullet{
	list-style-type: none; padding-top: 15px;
}

.cta_sidebar{
	width:265px;
	background-image: url(images/blue_bground.jpg);
	background-repeat: repeat-none;
	border:solid 1px #CCCCCC;
	padding: 25px 15px 15px 15px;
	text-align: center;
	margin-top: 25px;
}

.sidebar{
	width:265px;
	background-color:#f6f6f6;
	border:solid 1px #CCCCCC;
	padding: 10px 15px 15px 15px;
	margin-top: 25px;
}

.newsletter{
	width:265px;
	background-color:#f6f6f6;
	border:solid 1px #CCCCCC;
	padding: 10px 15px 5px 15px;
	margin-top: 10px;
	text-align: center;
}

.getstarted_btn{
	padding: 0px 5px; margin: 0px; text-align: center;
}

.viewform{vertical-align: middle;}

.webinarleft{float: left; width: 575px; margin-right: 25px; margin-top: 25px; padding-right: 50px; border-right:solid 1px #CCCCCC;}
.webinarright{float: right; margin-top: 25px;}
.calendar {float: left; margin-top: 5px; margin-right: 5px;}

#homepg_bullets{
	padding-top: 25px;
	clear: both;
}

#socialnetwork{
	position:relative;
	top:25px;
	float:right;
	clear: both;
	padding-top: 50px;
}

#socialnetwork img{
	margin-right:5px;
}




/*Footer*/
/*
RELEASED 16-Sept 2011 AB
*/

#footer{position: relative;
	margin-top: -150px; /* negative value of footer height */
	height: 150px;
	clear:both;}

/* ALM 2010 footer styles */
#footercontainer{
	width:980px;
	margin:0 auto;
	
	
}

#icfooter {clear:both;width:100%;text-align:right !important;background:none !important;background-color:#FFFFFF;margin:0; padding: 0; }
#icfooter .footernav {float:left; width: 80%; color: #7C1416; text-align: left; margin: 19px 0 0 15px; _margin-left:6px; font-family: Arial, Helvetica, sans-serif; font-size:11px; line-height: 13px; font-weight: normal;}
#icfooter .footernav a {color: #7C1416; font-family: Arial, Helvetica, sans-serif; font-size:11px; line-height: 13px; text-decoration: none; font-weight: normal;}
#icfooter .footernav a:visited {color: #7C1416; font-family: Arial, Helvetica, sans-serif; font-size:11px; line-height: 13px; text-decoration: none; font-weight: normal;}
#icfooter .footernav a:hover{color: #7C1416; text-decoration: underline; }
#icfooter .footernav .copyright {color: #7C1416; font-family: Arial, Helvetica, sans-serif; font-size:11px; text-align: left; font-weight: normal; margin-top:2px;}
#icfooter .law_logo {float:right;} 


#icfooter {width:100% !important; margin:0 auto !important;  padding:0 0 8px 0; padding-top: 25px;}

#icfooter hr{
	 border-top:2px solid #e4a94f;
}
#icfooter .footernav {margin-left:10px;}


/*Pop Up Box*/
/* Z-index of #mask must lower than #boxes .window */
#mask {
  position:absolute;
  z-index:9000;
  background-color:#000;
  display:none;
}
   
#boxes .window {
  position:fixed;
  width:500px;
  height:3000px;
  display:none;
  z-index:9999;
  padding:15px;
  background-color: #ffffff;
}
 
 
/* Customize your modal window here, you can add background image too */
#boxes #dialog {
  width:475px; 
  height:250px;
  padding-bottom: 25px;
}

/*
.popup{
float: left;
margin-right: 15px;
}
*/

.popup{
	text-align: center;
	margin: 0px;
}


/*TRAINING WEBINAR FORM*/

fieldset {
	border: none;
	padding-left: 0px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	margin-left: 0px;
	border-bottom: 1px solid #cccccc;
}

legend {
	font-size: 14px;
	font-weight: bold;
	margin-left: 0px;
	margin-bottom: -10px;
	padding-left: 0px;
	color: #3392cf;
}	

fieldset p {
	clear: both;
	padding-top: 10px;
	width: 400px;
}

fieldset p.first {
	padding-top: 0;
}

fieldset label {
	float: left;
	width: 120px;
	padding-top: 3px;
}

fieldset p span {
	float: right;
	width: 260px;
}

fieldset label span {
	float: none;
	width: auto;
	color: red;
	font-weight: bold;
	padding-left: 5px;
}


fieldset input, fieldset textarea, fieldset select {
	background: #f5f5f5;
	border: 1px solid #cccccc;
	padding: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	resize: none;
}
fieldset input:focus, fieldset textarea:focus, fieldset select:focus {
	background: #ffffff;
	border: 1px solid #3399cc;
	outline: none;
}
fieldset input:hover, fieldset textarea:hover, fieldset select:hover {
	border: 1px solid #3399cc;
}

fieldset.captcha {
	width: auto;
}
fieldset.captcha p {
	width: 240px;
}
fieldset p.message { width: auto; }
fieldset.captcha input { margin-top: 5px; }

/*
input.button {
	border: 1px solid #222;
	background: #333;
	padding: 5px;
	width: 180px;
	border-radius: 5px;
	font-size: 18px;
	font-family: "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
	color: #fff;
	cursor: pointer;
}
input.button:hover {
	background: #444;
}
*/

.error {
	background: #cc9999;
	border: 1px solid #a9343d;
	border-radius: 5px;
	font-size: 11px;
}
.error p {
	font-weight: bold;
	color: #6c1218;
	text-indent: 20px;
}

.success {
	background: #99ff99 url('accept.png') no-repeat 11px 10px;
	border: 1px solid #336600;
	border-radius: 5px;
	font-size: 11px;
}
.success p {
	font-weight: bold;
	color: #336600;
	text-indent: 35px;
}