/********************************************************
 * Layout
 ********************************************************/

html { /* magic to position footer */
	position: relative;
	min-height: 100%;
}

body {
	margin-bottom: 76px; /* == footer height */
}

.container, .container-fluid {
 	padding-left: 36px;
	padding-right: 36px;
}

nav {
	min-height: 100px;
	padding: 36px;
}

header {
	margin-bottom: 16px; /* h1.logintitle adds 20px => 36px */
}

.container {
 	min-width: 260px;
 	max-width: 700px;
}

h1 {
	margin-bottom: 100px;
}

footer {
	width: 100%;
	position: absolute;
	bottom: 0;
	padding: 0 36px;
}

img {
	width: 100%;
}

/********************************************************
 * Header
 ********************************************************/

header .logo {
	width: 20%;
	max-width: 124px;
}

/********************************************************
 * Dropdown
 ********************************************************/
a.dropdown-toggle {
	text-decoration: none;
}

a.dropdown-toggle:hover {
	color: #00868C;
	border-bottom: 3px solid #00868C;
}

.dropdown-menu {
	padding: 5px 0;
}

.dropdown-menu li > a {
	padding: 6px 28px;
}

.dropdown-menu a > .prefix {
	display: inline-block;
	min-width: 22px;
	margin-right: 28px;
	text-align: right;
}

/********************************************************
 * Form
 ********************************************************/

/* Labels should not be bold */
label {
	font-weight: normal;
}

/* Make error messages bold */
.has-error .help-block {
	font-weight: bold;
}

/* Change button size, by default 116px in width */
.btn {
	min-width: 116px;
	padding: 3px 12px;
}

/* Disable gradient in buttons, ughhhh */
.btn.btn-primary {
	border-color: transparent;
	background-image: none;
	text-shadow: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

.help-block a, .help-block a:visited {
	color: #00868C;
  font-weight: bold;
  text-decoration: none;
}

.help-block a:hover {
	color: #65B6B9;
  text-decoration: underline;
}

/********************************************************
 * Footer
 ********************************************************/
footer .row {
	margin: 36px 0 0 0;
	height: 40px;
	padding-top: 14px;
	line-height: 26px; /* to center text: height - padding-top = 26px */
	border-top: 1px solid #00868c;
}

footer .row > div { /* Fix alignment between border + text on Bootstrap grid */
	padding: 0;
}

footer .logo-round-container {
	position: relative;
}

footer .logo-round {
	position: absolute;
	left: 0;
	right: 0;
	top: -33px; /* found visually with Chrome Dev Tools */
	height: 36px;
	width: 36px;
	border: 1px solid #00868c;
	border-radius: 18px;
	background: #fff;
	padding: 8px;
}

footer .logo-round > img {
	display: block;
}
