@charset "UTF-8";
/* CSS Document */

body{
	position:relative;
	width:760px;
	margin:0 auto;
	padding-left:10px;
	padding-right:10px;
	padding-bottom:30px;
	
	color: #666666;
	background-color:#FFFFFF;
	
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-weight:normal;
	font-size: 12px;
	line-height: 20px;
}

header{
	padding-top:25px;
	border-top:10px #009999 solid;
	line-height: 30px;
}

header h1{
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-weight:700;
	font-size:26px;
	line-height:32px;
}

header h2{
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-weight:400;
	font-size:26px;
	padding-bottom:10px;
}

header h3{
	padding-top:15px;
	margin-top:5px;
	border-top:1px #999999 solid;
	
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-weight:400;
	font-size:14px;
}

header a:link, header a:visited, header a:hover, header a:active{
	color:#666666; /*dark grey*/
	text-decoration: none;
}

a, a:link, a:visited{
	color:#009999;
	text-decoration:none;
}

a:hover{
	text-decoration:underline;
}

.title{
	font-style:italic;
}

aside{
	float:right;
}

aside span{
	color:#009999;
	cursor:pointer;
}

article{
	clear:both;
}

article h1{
	padding-left:20px;
	padding-top:4px;
	border-bottom:1px #999999 solid;
	
	color: #666666;
	background-image:url(../img/arrow_right.png);
	background-repeat:no-repeat;
	background-position:left center;
	
	font-size:14px;
	font-weight:bold;
	line-height:28px;
	
	cursor:pointer;
}

article h1:hover{
	color: #009999;
	background-image:url(../img/arrow_right_c.png);
}
article.show h1{
	color: #009999;
	background-image:url(../img/arrow_down_c.png);
}

article h2{
	font-weight:bold;
	padding-bottom:10px;
}

article p{
	padding-bottom:15px;
}

article em{
	font-style:normal;
	color:red;
}

article ol, article ul{
	margin-left:20px;
	padding-bottom:15px;
}



section{
	display: block; 
	opacity: 0; 
	height: 0; 
	overflow: hidden; 
	padding-left:20px;
	padding-right:15px;
	
	border-bottom:1px #999999 solid;
	background:#EEEEEE;
	background: -moz-linear-gradient(top, #f9f9f9 0%, #ebebeb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#ebebeb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f9f9f9 0%,#ebebeb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f9f9f9 0%,#ebebeb 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f9f9f9 0%,#ebebeb 100%); /* IE10+ */
	background: linear-gradient(top, #f9f9f9 0%,#ebebeb 100%); /* W3C */
	
	transition-property:opacity, height, padding;
	transition-duration:0.5s;
	transition-timing-function:ease-out;
	
	-moz-transition-property:opacity, height, padding;
	-moz-transition-duration:0.5s;
	-moz-transition-timing-function:ease-out;
	
	-webkit-transition-property:opacity, height, padding;
	-webkit-transition-duration:0.5s;
	-webkit-transition-timing-function:ease-out;
	
	-o-transition-property:opacity, height, padding;
	-o-transition-duration:0.5s;
	-o-transition-timing-function:ease-out;
}

.hide section{ 
	display: block;
	opacity: 0; 
	height: 0; 
	overflow: hidden;  
}

.show section{ 
	opacity: 1;  
	height:200px;
	padding-top:20px;
	padding-bottom:10px;
}

section{
	color:#000;
}

section table{
	width:730px;
}

section table th{
	text-align:left;
}

section table tr{
	height:30px;
}

section table.structure td{
	vertical-align:middle;
}

section table.structure tr:nth-child(2n){
	background-color:#FFF;
}

/****************************Media Queries*****************************/

@media print{
	*{
		background:none;
	}
	
	aside{
		display:none;
	}
	
	article h1{
		padding-left:0;
	}
	
	article.show{
		page-break-after:always;
	}
	
	header{
		border:0;
		margin-bottom:30px;
	}
	
	section{
		border-bottom:none;
	}
	
}