html, body {
	width: 100%;
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	font-family: 'Open Sans', sans-serif;
}

body {
	min-height: 100%;
	box-sizing: border-box;
	-webkit-font-smooting: antialiased;
	background-image: url("../images/background.jpg");
	background-size: 100% 100%;
	background-attachment: fixed;
	padding-bottom: 50px;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

.container {
	padding-left: 50px;
	padding-right: 50px;
}

.page-header {
	position: relative;
	background: rgba(255, 255, 255, 0.8);
}

.page-header .logout {
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px;
}

.page-header h1 {
	margin: 25px 0 15px 0;
}

.breadcrumbs {
	padding-top: 7px;
	padding-bottom: 7px;
	background: rgba(191, 208, 255, 0.7);
	border-top: 3px solid #ffed55;
}

.running-tests {
	position: absolute;
	left:50%;
	top:0;
	text-align: center;
	width:200px;
	margin-left:-100px;
	cursor: pointer;
}

.running-tests > span {
	padding: 1em;
	display: block;
	background: #323232;
	color:white;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.running-tests ul {
	padding:0;
	margin:0;
	list-style: none;
}

.running-tests ul li a {
	text-decoration: none;
	color:#323232;
	background: rgba(191, 208, 255, 0.7);
	display: block;
	padding:0.5em;
	font-weight: bold;
	border-left: 1px solid rgb(113, 152, 255);
	border-right: 1px solid rgb(113, 152, 255);
	border-bottom: 1px solid rgb(113, 152, 255);
}

.running-tests ul li a:hover {
	background: rgba(113, 152, 255, 1);
}

.running-tests i {
	color:rgb(113, 152, 255);
	position: relative;
	left: -0.5em;
}