@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
@import url('https://fonts.googleapis.com/css?family=Open%20Sans:400,700');

/* Global Styles */
* {margin: 0; padding: 0;}
main, header, footer, nav, section, aside, hgroup, figure, figcaption, video, audio {display: block;}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 5px solid #ff4f4f;
	background: #eee url(images/bg.jpg) center top no-repeat;
	background-attachment: fixed;
	background-size: cover;
	height: 100%;
	font: normal 14px/20px "Open Sans",sans-serif;
	color: #4a4a4a;
}

body {
	margin: 0 auto;
	padding: 0 40px;
	width: 960px;
	min-height: 100%;
}

h1, h2, h3, h4 {font: normal 24px/30px Montserrat,sans-serif;}
h1, h2 {line-height: 40px;}
h1 {font-size: 40px;}
h2 {font-size: 36px;}
h3 {font-size: 30px;}

a {
	outline: 0;
	text-decoration: none;
	color: #C52A2A;
}
a img {border: 0 none;}

abbr {
    border-bottom: 1px dotted #000;
    cursor: help;
}

/* Header */
body > header {
	position: relative;
	padding: 15px 0;
	height: 16px;
	text-align: right;
	font-size: 12px;
	line-height: 16px;
}
body > header a {
	text-transform: lowercase;
}
#current-session {
	float: right;
}
#current-session .leaf {
	display: inline-block;
	padding: 0 10px 0 12px;
}
#current-session .leaf + .leaf {
	border-left: 1px solid #d8d8d8;
}
#current-session .leaf:last-child {
	padding-right: 0;
}

/* Content */
body > .content {
	position: relative;
	padding-bottom: 18px;
}
body > .content h2 {
	margin-bottom: 18px;
	border-bottom: 1px solid #dbdbdb;
	padding-bottom: 18px;
	color: #000;
}
body > .content h3 {
	margin-top: 30px;
}
body > .content section.half-width {
	float: left;
	width: 450px;
}
body > .content section.half-width + section.half-width {
	margin-left: 60px;
}

/* Client Index */
#clients-list {
	margin: 18px 0 10px;
	border-top: 1px solid #dbdbdb;
	list-style-type: none;
	column-count: 2;
	column-rule: 1px solid #dbdbdb;
}
#clients-list .client {
	padding: 5px;
}
#clients-list .client a {
	display: inline-block;
}
#clients-list .client .client-link {
	margin-right: 5px;
	background: url(images/icon-get-link.png) no-repeat;
	width: 15px;
	height: 15px;
}
#clients-list .client .admin-link {
	width: 380px;
	text-transform: uppercase;
	font-weight: bold;
	color: #4a4a4a;
}
#clients-list .client .action {
	display: inline-block;
	background-position: center center;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}
#clients-list .client .action.edit {
	background-image: url(images/icon-edit.png);
}
#clients-list .client .action.delete {
	background-image: url(images/icon-delete.png);
}

/* Client Login */
#welcome {
	margin: 72px auto 26px;
	padding: 0 10px;
	width: 300px;
	text-align: center;
}
#welcome h2, #welcome h3 {
	margin: 0;
	border: 0 none;
}
#welcome h3 {
	font-size: 20px;
	line-height: 28px;
	color: #000;
}
#welcome h2 {
	font-weight: bold;
	line-height: 46px;
}
#login-error, #login-form {
	margin: 0 auto;
	padding: 20px;
}
#login-error {
	padding-top: 0;
	width: 360px;
	text-align: center;
}
#login-form {
	box-shadow: 0 0 4px rgba(0,0,0,0.1);
	background-color: #fff;
	width: 280px;
}
#login-form input[type="password"], #login-form button[type="submit"] {
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 0 none;
	border-radius: 5px;
	padding: 8px;
	width: 100%;
	font: normal 14px/28px "Open Sans",sans-serif;
}
#login-form input[type="password"] {
	background-color: #f5f5f5;
	text-align: center;
	color: #000;
}
#login-form button[type="submit"] {
	margin-top: 20px;
	background-color: #4a4a4a;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
}