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


/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
    width: 246px;
}

/* accordion header */
#accordion h2 {
	font-family: 'Roboto', sans-serif;
	font-size: 14px !important;
	color: #383838;
	text-decoration: none;
	font-weight: 300;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d5d5d5;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 10px;
	cursor:pointer;
}
#accordion h2:hover {
	
}
/* currently active header */
#accordion h2.current {
    cursor:default;
	color: #0061a8;
	font-weight: 500;
	background-image: url(images/security_installers/nav-back.png);
	background-position: right center;
	background-repeat: no-repeat;
}

/* accordion pane */
#accordion .pane {
	display:none;
	height:auto;
	color:#333;
	font-size:12px;
	line-height: 22px !important;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	background-color: #FFF;
	padding-left: 10px;
	padding-bottom: 12px;
	padding-top: 12px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #d5d5d5;
	
}


/* a title inside pane */
#accordion .pane h3 {
    font-weight:normal;
    margin:0;
    font-size:14px;
    color:#999;
}
#accordion .pane a {
	text-decoration: none;
	color:#333
}
#accordion .pane a:hover {
	color: #F00;
}
