/* RESET DEFAULTS */

*{
	box-sizing: border-box;
}

a {
	color: #00796B;
}

/* HEADER STLYES*/

.ts-header{
	height: 50px;
	width: 100%;
	min-width: 100px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
}

.ts-brand {
	height: 50px;
	width: 200px;
	padding: 15px 0;
	color: #fff;
	font-size: 1.2em;
	text-align: center;
	background-color: #00796B;
}

.ts-right-nav {
	height: 50px;

}

.ts-right-nav ul{
	margin: 0;
}

.ts-right-nav ul li{
	display: inline-block;
	padding: 0 15px 0 15px;
	color:white;
	height: 50px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.ts-right-nav ul li:hover {
	background-color: #00796B;
}

.ts-right-nav ul li a {
	vertical-align: middle;
	line-height: 50px;
	color:white;
}

.indent-left {
	margin-left: 30px;
}


/* SIDE NAVIGATION STLYES*/

.ts-sidenav {
	position: fixed;
	width: 200px;
	height: 100%;
	min-height: 100px;
	background-color: #f3f3f3;
}

.ts-sidenav ul li {
	list-style: none;
	text-align: left;
	font-size: 1.2em;
	font-weight: 300;
	padding: 5% 0 5% 15%;
	cursor: pointer;
	transition: border 0.2s ease-in-out;
}

.ts-sidenav ul li:hover {
	background-color: orange;
	border-right: 10px solid #00796B;
}

.ts-sidenav ul li:hover  a {
	color:white;
}

.ts-sidenav ul li .ts-icon {
	margin-right: 10px;
}

.ts-list-active {
	background-color:orange;
	border-right: 10px solid #00796B;
}

.ts-list-active a {
	color:#fff;
}

/* CONTENT STLYES*/

.ts-content {
	margin-top: 50px;
	margin-left: 200px;
	padding: 10px 2% 10px 2%;
}

.ts-content h2 {
	font-size:1.3em;
	font-weight: 300;
	padding: 5px 0 5px 0;
	margin-top: 10px;
	margin-bottom: 10px;
}