/* @file maintenance.css */
/* @file reset.css */
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* @end */

/* @file grid.css */
/*------------------------------------------------------------------
	[Grid Stylesheet]
	
	Project: SocialGO
	Revision: <%build%>
	Version: 1.0
	Last Change: <%svn-last-changed-date%> [<%svn-last-changed-revision%> - <%svn-last-changed-author%>]
-------------------------------------------------------------------*/
/* @group Grid Styles : 55px/10px */
.one, .two, .three, .four, .five, .six, .seven, .eight, .nine, .ten, .eleven, .twelve, .thirteen, .fourteen, .fifteen {
	/* Apparently only in IE ... */
	/*overflow-x: hidden;*/
}
.one {
	width: 55px;
}
.two {
	width: 120px;
}
.three {
	width: 185px;
}
.four {
	width: 250px;
}
.five {
	width: 315px;
}
.six {
	width: 380px;
}
.seven {
	width: 445px;
}
.eight {
	width: 510px;
}
.nine {
	width: 575px;
}
.ten {
	width: 640px;
}
.eleven {
	width: 705px;
}
.twelve {
	width: 770px;
}
.thirteen {
	width: 835px;
}
.fourteen {
	width: 900px;
}
.fifteen {
	width: 965px;
}
/* @end */
/* @end */

/* @file main.css */
/* @group Base Styles */
html,
body {
	height: 100%;
}
body {
/*	background: transparent url('/assets/images/logo.background.png') bottom left no-repeat fixed;*/
	font-family: "Lucida Grande", Verdana, "Bitstream Vera Sans", Arial, sans-serif;
	font-size: 83%;
	line-height: 1.4em;
}
a:link,
a:visited,
a:hover,
a:active {
	color: #005E8C;
	text-decoration: none;
}
a:hover {
	color: #447D97;
	text-decoration: underline;
}
h1 {
	font-size: 18px;
	font-weight: bold;
}
h2 {
	font-size: 16px;
	font-weight: bold;
}
h3 {
	font-size: 15px;
	font-weight: bold;
}
h4 {
	font-size: 14px;
	font-weight: bold;
}
h5 {
	font-size: 13px;
	font-weight: bold;
}
h6 {
	font-size: 12px;
	font-weight: bold;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
ol.bulleted {
	list-style: disc inside;
}
ol.numbered {
	list-style: decimal inside;
}
ol.roman-numbered {
	list-style: lower-roman inside;
}
ol.lettered {
	list-style: lower-alpha inside;
}
hr {
	border: 0px;
	border-top: 1px solid black;
	margin-bottom: 20px;
}
p {
	margin-bottom: 10px;
}
/* @end */

/* @group Form Basic Styles */
input.input,
textarea {
	background-color: #FFFFFF;
	border: 1px inset #D7D7D7;
	display: block;
	font: 16px "Lucida Grande", Lucida, Verdana, sans-serif;
	padding: 6px 4px 4px 4px;
	-moz-border-radius: 2px;
	-khtml-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
textarea {
	display: inline;
}
input.input {
	height: 24px;
	width: 250px;
}
input.input:hover,
input.input:focus {
	border-color: #9FCFEB;
}
input.file {
	display: block;
	margin-top: 8px;
}
/* @end */

/* @group Button Styles */
div.buttons {
	clear: left;
	padding-top: 0px;
	text-align: center;
}
div.buttons.top {
	margin-bottom: 15px;
	text-align: right;
}
div.buttons a.button,
div.buttons button {
	display: inline;
	float: none;
	font-size: 14px;
	font-weight: bold;
	margin: 2px;
	padding: 5px 13px;
}
div.buttons a.button,
button {
	background-color: #EEEEEE;
	border: 1px solid #CCCCCC;
	border-color: #CCCCCC #AAAAAA #AAAAAA #CCCCCC;
	color: #333333;
	cursor: pointer;
	-moz-border-radius: 2px 4px 4px 2px;
	-khtml-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px 4px 4px 2px;
}
div.buttons a.button:hover,
button:hover {
	background-color: #FFFFFF;
	text-decoration: none;
}
div.buttons a.button:active,
button:active {
	background-color: #CCDDEE;
	color: #333333;
	outline: none;
}
/* @end */

/* @group Generic Styles */
.hide {
	display: none;
}
.left,
.grid-left {
	float: left;
}
.right,
.grid-right {
	float: right;
}
.code {
	background-color: #DFF4FF;
	display: inline-block;
	font-family: "Monaco";
	font-size: 10px;
	line-height: 14px;
	padding: 7px 7px 4px 7px;
	width: auto;
}
.indent {
	margin-left: 20px;
}
/* @end */

/* @group Container Styles */
div#container {
	margin: 0px auto;
	margin-bottom: 10px;
	width: 965px;
}
/* @end */

/* @group Notices */
.info-notice,
.alert-notice,
.error-notice {
	background-color: #DFF4FF;
	border: 1px solid #72A0B6;
	color: #333333;
	font-size: 12px;
	margin: 10px 0px 0px 0px;
	padding: 10px;
	text-align: center;
}
.info-notice.header,
.alert-notice.header,
.error-notice.header {
	margin-top: 0px;
}
p.info-notice,
p.alert-notice,
p.error-notice {
	margin: 0px 0px 10px 0px;
}
.alert-notice {
	background-color: #FFFFE0;
	border: 1px solid #E6DB55;
}
.error-notice {
	background-color: #FFEBE8;
	border: 1px solid #CC0000;
}
.info-notice h5,
.alert-notice h5,
.error-notice h5 {
	font-size: 13px;
	font-weight: bold;
}
.step-box {
	background-color: #C6D880;
	margin-bottom: 10px;
	padding: 10px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
/* @end */

/* @group Login Styles */
div#login-content {
	margin: 50px auto;
	width: 315px;
}
div#login-content h1 a {
	display: block;
	height: 166px;
	overflow: hidden;
	padding-bottom: 20px;
	text-indent: -9999px;
	width: 315px;
}
div#login-content form {
	font-weight: bold;
	margin-bottom: 15px;
	padding: 16px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
div#login-content form {
	background-color: #E6EFC2;
}
div#login-content #form-access-code {
	color: #333333;
	font-size: 20px;
	margin-bottom: 20px;
	padding: 3px;
	width: 97%;
}
div#login-content div.buttons {
	text-align: right;
}
div#login-content p span {
	display: block;
	font-weight: normal;
	text-align: center;
}
/* @end */
/* @end */

