/*************************************
 SLA SERVICE MANAGEMENT MAIN STYLESHEET
***************************************/

/**************************************/
/*           COLOR SCHEME             */
/**************************************
- black				#000
- white				#fff
- lightest green	#dcf19c
- light green		#c9e55c
- med green			#55881d
- dark green		#366d07
- light brown		#aa7644
- dark brown		#3d1c0b
***************************************/

/*** MEYER RESET v1.0 ***/
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,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}

/*** BASIC TYPOGRAPHY ***/
html { font-size: 62.5%; font-family: Arial, Helvetica, sans-serif; }
strong, th, thead td, h1, h2, h3, h4, h5, h6 { font-weight: bold; }
cite, em, dfn { font-style: italic; }
code, kbd, samp, pre, tt, var, input[type='text'], input[type='password'], textarea { font-size: 92%; font-family: Arial, Helvetica, sans-serif; }
del { text-decoration: line-through; color: #666; }
ins, dfn { border-bottom: 1px solid #ccc; }
small, sup, sub { font-size: 85%; }
abbr, acronym { text-transform: uppercase; font-size: 85%; letter-spacing: .1em; }
a abbr, a acronym { border: none; }
abbr[title], acronym[title], dfn[title] { cursor: help; border-bottom: 1px solid #ccc; }
sup { vertical-align: super; }
sub { vertical-align: sub; }

/**************************************/
/*              GLOBALS               */
/**************************************/
body{margin: 0; color: #3d1c0b;}

.content_width{
	width: 925px;
	margin: 0 auto;
}

#masthead{
	height: 110px;
	padding-left: 40px;
}

	#masthead h1{
		font-size: 1px;
		width: 218px;
		height: 105px;
		background: transparent url('backgrounds/sla_logo.png') top left no-repeat;
		text-indent: -9999em;
		float: left;
	}
	
	#masthead h1 a{
		display: block;
		height: 105px;
	}
	
	#masthead p{
		float: right;
		width: 500px;
		text-align: right;
		color: #aa7644;
		font-size: 1.7em;
		padding: 40px 0 0 0;
	}

a, a:link, a:visited{color: #3d1c0b;}
a:hover{color: #aa7644;}

a.green, a:link.green, a:visited.green{color: #55881d;}
a:hover.green{color: #366d07;}

/**************************************/
/*          COMMON CLASSES            */
/**************************************/

.pad5{padding: 5px;}
.pad10{padding: 10px;}
.pad15{padding: 15px;}
.pad20{padding: 20px;}

/**************************************/
/*               FORMS                */
/**************************************/

/*** FORMS ***/
fieldset { padding: 0 1em 1em 1em; margin: 10px 0; border: 4px solid #55881d; }
legend { padding: 0 .8em; font-weight: bold; font-size:1.2em; }
label { 
	font-weight: bold;
	float: left;
	text-align: right;
	width: 150px;
	padding: 6px 10px 0 0;
	}

	
textarea, input[type='text'], input[type='password'], select { border: 2px solid #c9e55c; background: #fff; width: 300px; color: #3d1c0b; }
textarea:hover, input[type='text']:hover, input[type='password']:hover, select:hover { border-color: #55881d; }
textarea:focus, input[type='text']:focus, input[type='password']:focus, select:focus { border-color: #aa7644; outline: 2px solid #ffffaa; }
input, select { cursor: pointer; }
input[type='text'],input[type='password'] { cursor: text; }
textarea, input { padding: .3em .4em .15em .4em; }
option { padding: 0 .4em; }
form div { margin-bottom: .8em; }

legend+* { margin-top: 1em; } /*** compensates for the opera margin bug ***/

form div.indent{padding-left: 160px;}
form .subtext{padding-left: 160px; font-size: .9em; font-style: italic;}
form .formbutton{width: 150px;}

label.error{
	color: #f00;
	float: none;
	clear: both;
	display: block;
	font-size: .8em;
	margin-left: 160px;
	width: 300px;
	text-align: left;
}

input.error, textarea.error{
	border: 2px solid #f00;
}

textarea.error:hover, input[type='text'].error:hover, input[type='password'].error:hover, select.error:hover { border-color: #f00; }
textarea.error:focus, input[type='text'].error:focus, input[type='password'].error:focus, select.error:focus { border-color: #f00; outline: 2px solid #ffffaa; }


/**************************************/
/*             NAVIGATION             */
/**************************************/
#nav{
	height: 30px;
	background: transparent url('backgrounds/nav_left.gif') top left no-repeat;
	display: inline-block;
	padding-left: 45px;
	float: right;
	margin-right: 96px;
}

#nav ul{
	background: transparent url('backgrounds/nav_right.gif') top right no-repeat;
	list-style-type: none;
	height: 24px;
	margin-left: 0;
	padding-top: 6px;
	margin-right: -76px;
	float: left;
}

#nav ul li{
	display: inline;
	height: 30px;
	margin: 0;
	font-size: 1.4em;
	padding: 0 8px;
	border-right: 2px solid #3d1c0b;
}

#nav ul li.last{padding-right: 55px;border-right: 0px;}

#nav ul li a{
	text-decoration: none;
	font-weight: bold;
	color: #3d1c0b;
}

#nav ul li a:hover{
	text-decoration: underline;
}

#nav ul li a.active{
	color: #aa7644;
}

/**************************************/
/*              SUBNAV                */
/**************************************/

#subnav_outer{background-color: #c9e55c; padding-left: 80px; }
#subnav{height: 25px; padding-top: 10px;}
#subnav h3{font-weight: normal; font-size: 1.8em; margin: 0; padding: 0; width: 260px; float: left;}

#subnav ul{list-style-type: none; width: 558px; float: right; padding-right: 20px;}
#subnav ul li{
	border-right: 2px solid #3d1c0b;
	display: inline;
	font-size: 1.4em;
	padding: 0 10px;
	margin: 0;
}

#subnav ul li a{
	text-decoration: none;
	font-weight: bold;
	color: #3d1c0b;
}

#subnav ul li a:hover{
	text-decoration: underline;
}

#subnav ul li a.active{
	color: #aa7644;
}

#subnav ul li.last{border-right: 0px;}

/**************************************/
/*             HOME PAGE              */
/**************************************/

#home #content_outer{background: #55881d url('backgrounds/home_bg.png') top left repeat-x;}
#home #content{height: 316px; background: transparent url('backgrounds/home_photo.jpg') top left no-repeat;}
#home #promise{margin: 0; padding: 0; font-size: 0px; text-indent: -9999em;}
#home #subcontent_outer{background: #dcf19c url('backgrounds/home_sub_bg.png') top left repeat-x;}
#home #subcontent{ padding-bottom: 10px;}

#home #subcontent h3{
	margin: 7px 0 0 0;
	height: 23px;
	font-size: 1.8em;
	font-weight: normal;
}

	#home #subcontent h3 a, #home #subcontent h3 a:visited{
		text-decoration: none;
	}

#home #subcontent p{
	margin: 5px 0;
	font-size: 1.3em;
	line-height: 1.5em;
}

#home #featured{
	width: 469px;
	height: 212px;
	background: transparent url('backgrounds/featured_bg.png') top left no-repeat;
	margin: 64px 0 0 386px;
	padding: 40px 0 0 15px;
}

#home #content{
	padding-left: 80px;
}

.col3{width:240px; float: left; padding-left: 40px;}

.clearfix:after, .container:after {content:".";display:block;height:0;clear:both;visibility:hidden;max-height:0;}
.clearfix, .container {display:inline-block;}
* html .clearfix, * html .container {height:1%;}
.clearfix, .container {display:block;}
.clear {clear:both;}

/**************************************/
/*            LANDING PAGE            */
/**************************************/

#landing #nav_outer{padding-left: 80px; height: 35px; background: #366d07 url('backgrounds/landing_content_bg.png') top left repeat-x;}
#landing #nav_container h2{font-weight: normal; font-size: 1.9em; margin: 0; padding: 10px 0 0 0; width: 230px; float: left; color: #dcf19c;}

#landing #content_outer{background-color:#dcf19c; padding-left: 80px; }
#landing #subnav{}
#landing #content{font-size: 1.4em;}

#landing #col1{width: 250px; float: left; padding-top: 12px;}
	#landing #col1 img{margin: 0 0 10px -10px; }
#landing #col2{width: 610px; float: left; padding: 20px 0 10px 17px;}

.nextpage{font-weight: bold; clear: both; padding-top: 10px;}


/**************************************/
/*              CONTENT               */
/**************************************/

#content p{line-height: 1.2em; margin: 5px 0 15px 0;}
#content p.intro{font-weight: bold; line-height: 1.2em;}
#content p.textbox{border: 4px solid #c9e55c; padding: 10px; margin-bottom: 0;}
#content p.signed{border: 4px solid #c9e55c; font-weight: bold; text-align: right; margin: 0 0 30px 0; background-color: #c9e55c;}

#content h4{
	font-size: 1.5em;
	font-weight: normal; 
	border-bottom: 2px solid #55881d;
	padding-bottom: 0px;
	margin: 10px 0;
}

  #content h4.product{
    margin: 10px 0 0 0;
  }

#content ul{margin-left: 20px;}
#content li{margin-bottom: .6em; line-height: 1.2em;}


.main_column{
	float: left;
	width: 380px;
	}

.sidebar{
	float: left;
	width: 200px;
	margin-left: 20px;
	background: #c9e55c url('backgrounds/sidebar_bl.gif') bottom left no-repeat;
}
	.sidebar h5{
		background: #55881d url('backgrounds/sidebar_tr.gif') top right no-repeat;
		color: #dcf19c;
		padding: 5px;
	}

.sidebar_inner{padding: 10px;}
	
	.sidebar_inner p{margin-top: 0!important;}

.button{
	height: 35px;
	background: transparent url('backgrounds/button_left.gif') top left no-repeat;
	margin-bottom: 10px;
}

	.button a, .button a:visited{
		display: block;
		height: 35px;
		margin-left: 12px;
		background: transparent url('backgrounds/button_right.gif') top right no-repeat;
		color: #dcf19c;
		font-weight: bold;
		line-height: 35px;
		text-align: center;
		text-decoration: none;
	}
	
	.button a:hover{
		text-decoration: underline;
	}

/**************************************/
/*           PRODUCT TABLE            */
/**************************************/

.product_table{
  width: 100%;
  background-color: #fff;
}

.product_table tr{
  
}

.product_table td{
  vertical-align: top;
  border-bottom: 1px solid #366d07;
  padding: 5px;
}

.product_table .dl_cell{
  width: 170px;
  padding: 20px 10px 0 0;
  text-align: right;
}

.product_table .dl_icon{
  float: left;
}

.product_table .dl_link{
  width: 100px;
  float: left;
  margin-top: 15px;
  font-weight: bold;
  text-align: left;
}
	
/**************************************/
/*               FOOTER               */
/**************************************/
#footer_outer{
	background: #366d07 url('backgrounds/footer_bg.png') top left repeat-x;
}

#footer{
	color: #dcf19c;
	font-size: 1.4em;
	letter-spacing: .03em;
}
	#footer p{
		padding: 14px 0 12px 40px;
		margin: 0;
		float: left;
	}
	
	#footer span{
		padding-right: 30px;
	}

	#footer h6{
		width: 184px;
		height: 36px;
		font-size: 1px;
		text-indent: -9999em;
		float: right;
		background: transparent url('backgrounds/thinkgreen.png') 40px 10px no-repeat;
	}
	
		#footer h6 a{
			display: block;
			width: 184px;
			height: 36px;
		}

/**************************************/
/*         SUB FOOTER & legal         */
/**************************************/
	
#sub_footer{
	text-align: center;
	display: none;
}

	#home #sub_footer{
		display: block;
	}

	#sub_footer img{margin-right: 20px; vertical-align: middle;}

#legal{padding-top: 5px; text-align: center; color: #bcb;}

/**************************************/
/*               ALERT                */
/**************************************/

#alert{
	padding: 60px;
	text-align: center;
}

#alert h1{
	font-size: 1.5em;
}

/**************************************/
/*                IE6                 */
/**************************************/

/* position relative to fix IE6 negative margin bug(s) */
/* display inline since IE6 doesn't do inline-block */

* html #nav{display: inline; position: relative;}
* html #nav ul{position: relative;}

/* different margin for IE6 */

* html #home #featured{
	margin: 24px 0 0 386px;
}

* html #col2{padding-bottom: 1em;}
