/**
This CSS is intended for positioning and styling the page layout

Styling for things like buttons, tables, forms etc. is done in the
general css (/css/screen.css)
*
*/

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

/**
* Wrapper
*/
#page-container {
	width: 100%;
	max-width: 1340px;
	margin: 5px auto;

}
@media(max-width: 1200px) {
	#page-container {
		max-width: 1140px;
	}
}

/**
* Header
*/
#page-header {
	width: 100%;
	background: #fff;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	box-shadow: 0 0 8px rgba(0,0,0,0.1);
	padding: 0.5rem 0;
}
#page-left {
	flex: 0 0 25%;
}

#page-header-profile {
	flex: 0 0 25%;
	text-align: right;
	font-size: 0.8rem;
}
#page-header-profile > div {
	padding: 0rem 1rem;
}

/**
* Menu
*/
#page-menu {
	flex: 0 0 50%;
	text-align: center;
}

#page-menu > a {
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
	margin: 0 10px;
	padding: 3px;
	border-radius: 3px;
	color: #999;
	transition: color 1s ease-in-out;
	-moz-transition: color 0.25s ease-in-out;
	-webkit-transition: color 0.25s ease-in-out;
	-o-transition: color 0.25s ease-in-out;
	transition: background-color 0.25s ease-in-out;
	-moz-transition: background-color 0.25s ease-in-out;
	-webkit-transition: background-color 0.25s ease-in-out;
	-o-transition: background-color 0.25s ease-in-out;
}

#page-menu > a.active {
	color: #333;
}

#page-menu > a:hover {
	color: #000;
	/* background-color: rgba(0,0,0,0.05); */
}

#page-header-buttons {
	float: right;
}

/**
* Page body
*/
#page-body {
	margin-bottom: 5px;
}

/**
* Page submenu
*/
#page-submenu {
	text-align: center;
	z-index: 9;
}

#page-submenu a {
	display: inline-block;
	padding: 1px 8px;
	margin: 0 5px;
	z-index: 9;
	text-decoration: none;
	border-radius: 3px 3px 0 0;
	background-color: #eee;
	box-shadow: inset 0 0 3px #aaa;
	font-weight: bold;
	font-size: 0.9em;
	color: #888;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
}

#page-submenu a:hover {
	color: #333;
	background-color: #f6f6f6;
}

#page-submenu a.selected {
	box-shadow: 0 -1px 2px #aaa;
	background-color: #fff;
	color: #333;
}

/**
* Page content
*/
#page-content {
	background-color: #fff;
	box-shadow: 0 0 6px #aaa;
	padding: 8px;
	z-index: 10;
}

#page-content-clear {
	clear: both;
}

/**
* Footer
*/
#page-footer {
	background-color: #fff;;
	box-shadow: 0 0 6px #aaa;
	padding: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	height: 30px;
}

#page-footer-menu {
	float: left;
	height: 100%;
}

#page-footer-menu a {
	color: #555;
	font-size: 0.9em;
	padding: 0 5px;
}

#page-footer-logo {
	float: right;
}


/* Columns */

.row{
		width:100%;
}

.row .span6{
		float: left;

		margin-left: 1%!important;
		width: 48.5%!important;
}

.row .span6:after{
clear:both;
}

.row .span12{
		width:100%;
		clear:both;
}

.dateNav{
	width:100%;
	padding-top:9px;
	padding-bottom: 9px;
	float:left;
	clear:both;
}

.dateNav .table > thead > tr > th{
	background-color:#fff;
}

.dateNav div{
	float:left;
}

.dateNav div.label{
	width:14%;
	text-align: center;

}
.dateNav div.lft, .dateNav div.rght{
	width:43%
}

.dateNav div.lft{
	text-align: right;
}

.dateNav div.rght{
	text-align: left;
}

.dateList{
	float:left;
	clear:left;
	width:98%;
	padding-left:1%;
}

.btn-group.nomargin a.btn{
	margin-left:-1px!important;
	float:left;
}