img {border: none;}

* {
	margin: 0;
	padding: 0;
	outline: none;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
    background-color: #bfd8c1;
    -webkit-font-smoothing: antialiased;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    text-rendering: optimizeLegibility
}

a:link {color: #000000; text-decoration: none;}
a:visited {color: #000000; text-decoration: none;}
a:hover {color: #ffffff; text-decoration: none;}
a:active {color: #ffffff; text-decoration: none;}

#header {
	background-image: url(images/header.png);
	width: 100%;
	height: 150px;
}

@font-face {
	font-family: '1942report1942report';
	src: url('fonts/1942.eot');
	src: local('1942 report 1942 report'), local('1942report'), url('fonts/1942.ttf') format('truetype');
}

@import url(http://fonts.googleapis.com/css?family=Nunito);
@import url(http://thecodeplayer.com/uploads/fonts/fontawesome/css/font-awesome.min.css);

#accordian {
	background: #bfd8c1;
	width: 250px;
	margin: 10px 10px 10px 10px;
	color: white;
	box-shadow: 
		0 5px 15px 1px rgba(0, 0, 0, 0.6), 
		0 0 200px 1px rgba(255, 255, 255, 0.5);
	float: left;
}

#accordian h3 {
	background: #bfd8c1; 
	//background: linear-gradient(#003040, #002535);
}
#accordian h3 a {
	padding: 0 10px;
	font-size: 20px;
	line-height: 34px;
	display: block;
	color: black;
	text-decoration: none;
	font-family: '1942report1942report';
}

#accordian h3:hover {
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

#accordian h3 span {
	font-size: 16px;
	margin-right: 10px;
}

#accordian li {
	list-style-type: none;
}

#accordian ul ul li a, #accordian h4 {
	color: white;
	text-decoration: none;
	font-size: 11px;
	line-height: 27px;
	display: block;
	padding: 0 15px;

	transition: all 0.15s;
	position: relative;
}

#accordian ul ul li a:hover {
	background: #003545;
	border-left: 5px solid lightgreen;
}

#accordian ul ul {
	display: none;
}
#accordian li.active>ul {
	display: block;
}

#accordian ul ul ul{
	margin-left: 15px; border-left: 1px dotted rgba(0, 0, 0, 0.5);
}

#accordian a:not(:only-child):after {
	content: url('arrow_down.png');
	position: absolute; right: 10px; top: 0;
}
#accordian .active>a:not(:only-child):after {
	content: url('arrow_down.png');
}

.icon-tasks::before {
	//content: url('icon.png');
}