			
			.accordion {
				margin: auto;
				width: 220px;
				top: 150px;
			}
			
			.accordionHeaders {
				background-color: #8098BD;
				height: 35px;
				width: 220px;
				
				/* border: 1px solid #313842; */
				
				overflow: auto;
				line-height: 35px;
				color: #fafdff;
				text-shadow: 1px 1px 3px #444;
				filter: dropshadow(color=#444, offx=1, offy=1);
				padding: 3px 0 3px 10px;
				position: relative;
				border-top: none;
				cursor: pointer;
			}
			
			.accordionHeaders:after {
				width: 30px;
				height: 25px;
				display: block;
				position: absolute;
				right: 10px;
				top: 7px;
				line-height: 25px;
				text-align: center;
							}
			
			.accordionContent {
				background: #fff;
				height: 35px;
				width: 220px;
				line-height: 35px;
				position: relative;
				padding: 3px 0 3px 12px;
				border-bottom: 1px solid #ebebed;
				font-size: 9pt;
				cursor: pointer;
			}
			
			.grandchild {
				position: relative;
				list-style-type: none;
				display: none;
			}
			
			.grandchild li {
				line-height: 1.8em;
				color: #f7f7f7;
				padding: 10px 0 10px 50px;
				text-shadow: 1px 1px 3px #444;
				background: rgb(64,193,235); /* Old browsers */
				background: -moz-linear-gradient(top,  rgba(64,193,235,1) 0%, rgba(104,119,20,1) 100%); /* FF3.6+ */
				background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(64,193,235,1)), color-stop(100%,rgba(104,119,20,1))); /* Chrome,Safari4+ */
				background: -webkit-linear-gradient(top,  rgba(64,193,235,1) 0%,rgba(104,119,20,1) 100%); /* Chrome10+,Safari5.1+ */
				background: -o-linear-gradient(top,  rgba(64,193,235,1) 0%,rgba(104,119,20,1) 100%); /* Opera 11.10+ */
				background: -ms-linear-gradient(top,  rgba(64,193,235,1) 0%,rgba(104,119,20,1) 100%); /* IE10+ */
				background: linear-gradient(top,  rgba(64,193,235,1) 0%,rgba(104,119,20,1) 100%); /* W3C */
				filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40c1eb', endColorstr='#289ad8',GradientType=0 ); /* IE6-9 */
			}
			
			.accordionContent:after {
				width: 30px;
				height: 20px;
				border-radius: 12.5px;
				display: block;
				position: absolute;
				right: 10px;
				top: 10px;
				line-height: 20px;
				text-align: center;
			}
			
			.accordionContent:first-child {
				-webkit-box-shadow: inset 0px 5px 5px -2px #c0bcbb;
				-moz-box-shadow: inset 0px 5px 5px -2px #c0bcbb;
				box-shadow: inset 0px 5px 5px -2px #c0bcbb;
			}
			
			.accordionContent span {
				padding-right: 10px;
			}
			
			.contentHolder {
				position: relative;
				display: none;
				overflow-x: hidden;
				width: 230px;
				padding-left: 1px;
			}
			
			