@charset "utf-8";
/* CSS Document */

.content {
		width:98%;
		/*margin: 20px auto;
		padding: 20px;*/
	}
	.content h1 {
		font-weight: 400;
		text-transform: uppercase;
		margin: 0;
	}
	.content h2 {
		font-weight: bold;
		/*text-transform: uppercase;*/
		color:#164072;
		font-size:1.2em;
		margin: 0 0 10px;
	}
	.content p {
		font-size: 1em;
		font-weight: 300;
		line-height: 1.5em;
		margin: 0 0 0px;
	}
	.content p:last-child {
		margin: 0;
	}
	.content a.button {
		display: inline-block;
		padding: 10px 20px;
		background: #ff0;
		color: #000;
		text-decoration: none;
	}
	.content a.button:hover {
		background: #000;
		color: #ff0;
	}
	.content.title {
		position: relative;
		background: none;
		border: 2px dashed #333;
	}
	.content.title h1 span.demo {
		display: inline-block;
		font-size: .5em;
		padding: 5px 10px;
		background: #000;
		color: #fff;
		vertical-align: top;
		margin: 7px 0 0;
	}
	.content.title .back-to-article {
		position: absolute;
		bottom: -20px;
		left: 20px;
	}
	.content.title .back-to-article a {
		padding: 10px 20px;
		background: #f60;
		color: #fff;
		text-decoration: none;
	}
	.content.title .back-to-article a:hover {
		background: #f90;
	}
	.content.title .back-to-article a i {
		margin-left: 5px;
	}
	.content.white {
		background: #fff;
		/*box-shadow: 0 0 10px #999;*/
	}
	.content.black {
		background: #000;
	}
	.content.black p {
		color: #999;
	}
	.content.black p a {
		color: #08c;
	}
	
	.accordion-container {
		width: 100%;
		margin: 0 0 10px;
		clear: both;
	}
	.accordion-toggle {
		position: relative;
		display: block;
		padding:6px 6px 6px 10px;
		/*font-size: 1.5em;*/
		font-weight: bold;
		background:#ebe9e9;
		color: #164072;
		text-decoration: none;
	}
	.accordion-toggle.open {
		background: #164072;
		color: #fff;
	}
	.accordion-toggle:hover {
		background: #cecdcd;
	}
	.accordion-toggle span.toggle-icon {
		position: absolute;
		/*top: 9px;*/
		right: 20px;
		/*font-size: 1.5em;*/
	}
	.accordion-content {
		display: none;
		padding:10px 0px 10px 0px;
		/*margin-top:10px;*/
		overflow: auto;
		border:1px solid #ebe9e9;
	}
	.accordion-content img {
		display: block;
		float: left;
		margin: 0 15px 10px 0;
		max-width: 100%;
		height: auto;
	}
	.accordion-content a {
		color: #666666 !important;
    text-decoration: none;
    padding: 0px 0px 0px 20px;
    background-image: url(../images/icon_pdf.gif);
    background-repeat: no-repeat;
    background-position: left 3px;
    display: block;
	}
	.accordion-content a:hover {
		color: #FF6A11 !important;
	}
	
	.accordion-content p {
	padding: 5px 0px 5px 12px;
	}
	
	/* media query for mobile */
	@media (max-width: 767px) {
		.content {
			width: auto;
		}
		.accordion-content {
			padding: 10px 0;
			overflow: inherit;
		}
	}
