html{
	height: 100%;
}
body, html{
	margin: 0;
	padding: 0;
	position: relative;
}
body, input, textarea, select, a, .serif{
	font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-size: 3vh;
	color: #000;
	text-decoration: none;
}
.mediumWeight{
	font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
a.colored, .note a{
	color: #45a1a4;
}
textarea{
	padding: 3vh;
	width: calc(100% - 6vh);
	border: none;
	background-color: #f5f5f5;
	height: 25vh;
}

/* Header */
.header{
	height: 10vh;
	background-color: #608dac;
	width: 100%;
	box-shadow: 0px 0px 1vh rgba(0, 0, 0, 0.4);
	z-index: 1000;
}
.header a{
	height: 8vh;
	width: 8vh;
	padding: 1vh 3vh;
	display: inline-block;
}
.header a img{
	width: 100%;
	height: 100%;
}
.header .notifications{
	position: relative;
}
.header .notifications .unread{
	position: absolute;
	color: #000;
	text-align: center;
	display: block;
	width: calc(100% - 8vh);
	top: 3vh;
	left: 4vh;
	font-weight: bold;
	color: #608dac;
}

/* Sidebars */
.sidebar{
	height: calc(100% - 10vh);
	padding-top: 5vh;
	display: none;
	z-index: 5;
	box-shadow: 0vh 1vh 1vh -1vh rgba(0, 0, 0, 0.4);
}
.sidebar.menu{
	background-color: #608dac;
}
.sidebar a{
	display: block;
	width: calc(100% - 20vh);
	padding: 2vh 10vh;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	white-space: nowrap;
	margin-bottom: 0.4vh;
	background-color: #5482a0;
}
.sidebar a.active{
	background-color: #396a8a;
	border: none;
}
.sidebar .section{
	margin-bottom: 5vh;
}

.sidebar.menu .userInfo{
	margin-left: 10vh;
	margin-right: 10vh;
}
.sidebar.menu .groupTitle{
	color: #fff;
	font-size: 4vh;
	line-height: 1.6;
}
.sidebar.menu .userName{
	color: #fff;
}

/* Body */
.body{
	min-height: 100%;
	height: 100%;
	position: relative;
}

/* Footer */
.footer{
	
}