/*

	Copyright (C) 2011 Shape.
	Author: Jason Mayo (jason@madebyshape.co.uk)
	
	1. Global Styles
	2. Link / Selection Styles
	3. Typography
	4. Layout Styles
	5. Navigation Styles
	6. Content Styles
	7. User messages & Validation
	8. Misc Classes

*/
/* Start Less */
/* Colours */
/* Transition */
/* Rounded */
/* End Less */
/* *************************************** */
/* 1. Global Styles */
/* *************************************** */
body {
  background: #132b5a;
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  color: #808285;
}
/* *************************************** */
/* 2. Link / Selection Styles */
/* *************************************** */
/* Links */
a {
  color: #808285;
  text-decoration: underline;
}
a:hover {
  color: #6d6e71;
}
a:active {
  color: #58595b;
}
/* Selection */
::selection {
  background: #414042;
  color: #FFF;
}
::-moz-selection {
  background: #414042;
  color: #FFF;
}
::-webkit-selection {
  background: #414042;
  color: #FFF;
}
/* *************************************** */
/* 3. Typography */
/* *************************************** */
body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select {
  font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 20px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 13px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 12px;
}
/* *************************************** */
/* 4. Layout Styles */
/* *************************************** */
#container {
  margin: 0 auto;
  width: 1000px;
}
/* *************************************** */
/* 5. Navigation Styles */
/* *************************************** */
/* Horizontal */
.nav-hori ul {
  overflow: hidden;
}
.nav-hori ul li {
  margin-right: 10px;
}
.nav-hori ul li,
.nav-hori ul li a {
  float: left;
  text-decoration: none;
}
/* Vertical */
.nav-vert ul {
  overflow: hidden;
}
.nav-vert ul li {
  margin-bottom: 5px;
}
.nav-vert ul li,
.nav-vert ul li a {
  clear: left;
  text-decoration: none;
}
/* Main */
/* *************************************** */
/* 6. Content Styles */
/* *************************************** */
/* Forms */
/* Styling */
/* Form General Styles */
input,
textarea,
select {
  border-color: #d6d7de;
  color: #58595b;
  width: 200px;
}
input:hover,
select:hover,
textarea:hover {
  border-color: #bcbec0;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #05c7f7;
}
input[type="submit"] {
  border-color: #c7c8ca;
  background: #e6e7e8;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #e6e7e8));
  background: -moz-linear-gradient(top center, #ffffff 0%, #e6e7e8 100%);
}
input:hover[type="submit"] {
  color: #000;
  background: #dcddde;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #dcddde));
  background: -moz-linear-gradient(top center, #ffffff 0%, #dcddde 100%);
  border-color: #bcbec0;
}
input:active[type="submit"] {
  background: #dcddde;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dcddde), color-stop(1, #ffffff));
  background: -moz-linear-gradient(top center, #ffffff 0%, #dcddde 100%);
}
/* Columns */
.column {
  float: left;
  width: 228px;
  margin-right: 15px;
}
.column-container {
  overflow: auto;
}
/* 16 Col / 977 width / 15 margin / 47 width */
.col-1 {
  width: 47px;
}
.col-2 {
  width: 109px;
}
.col-3 {
  width: 171px;
}
.col-4 {
  width: 233px;
}
.col-5 {
  width: 295px;
}
.col-6 {
  width: 357px;
}
.col-7 {
  width: 419px;
}
.col-8 {
  width: 481px;
}
.col-9 {
  width: 543px;
}
.col-10 {
  width: 605px;
}
.col-11 {
  width: 667px;
}
.col-12 {
  width: 729px;
}
.col-13 {
  width: 791px;
}
.col-14 {
  width: 853px;
}
.col-15 {
  width: 915px;
}
.col-16 {
  width: 977px;
}
/* *************************************** */
/* 7. User messages & Validation */
/* *************************************** */
/* User Message */
#user-message {
  background: #F2F2F2;
}
#user-message-header {
  background: #e6e7e8;
  border-color: #dcddde;
}
#user-message-body {
  background: #f8f8f8;
  border-color: #dcddde;
}
#user-message-body a {
  color: #000;
}
#user-message-body a:hover {
  color: #999;
}
/* Notification */
#notification {
  background: #000;
}
#notification-content {
  color: #FFF;
}
/* Validation */
input.error {
  background: #FFF;
  border-color: #FF0000;
}
label.error {
  color: #FF0000;
}
/* Notes / Messages */
.note,
.success-message,
.error-message {
  font-weight: 600;
  overflow: auto;
  padding: 8px 12px;
  margin-bottom: 15px;
  font-size: 13px;
}
.note {
  background: #f1f2f2;
}
.success-message {
  color: #356f29;
  background: #d2eacd;
}
.error-message {
  color: #F00;
  background: #ffc2c2;
}
/* *************************************** */
/* 8. Misc Classes */
/* *************************************** */
.fl {
  float: left;
}
.fr {
  float: right;
}
.vh {
  visibility: hidden;
}
.last {
  margin-right: 0px !important;
}
