@CHARSET "UTF-8";

/***** CSS Reset *****/

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;
	background: transparent;
}
body {
	line-height: 1;
}
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;
}

ul {
	margin: 0 0 1.5em 2.5em;
}
ol {
	margin: 0 0 1.5em 2.5em;
}
ul {
	list-style:disc;
}
ol {
	list-style-type: decimal;
}
ol ol {
	list-style:upper-alpha;
}
ol ol ol {
	list-style:lower-roman;
}
ol ol ol ol {
	list-style:lower-alpha;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom:0;
}

/***** Clearfix *****/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

html[xmlns] .clearfix {
	display: block;
}

* html .clearfix {
	height: 1%;
}

/***** Global Classes *****/
.left {
	float: left;
}
.right {
	float: right;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}


body {
	color: #111;
	font-family:Helvetica, arial, sans-serif;
	line-height:1.5em
}




/***** site-specific styles *****/


/* Outer Shell */
#outer-container {
	width:80%;
	margin:0 auto;
}

#header {
	width:auto;
	margin:0;
	padding: 10px;
	background:white;
	border-bottom: 1px solid #b5b5b6;
	height:104px;
}

#header-title {
	color: #999;
	display:inline;
	font-size:32px;
}

#header-image {
	padding-top:20px;
}


#footer {
	width:auto;
	height:81px;
	border-top:1px solid #999999;
	padding-top:14px;
	text-align:center;
	background-color:#FFFFFF;
	font-size:10px;
	clear:both;
}

#footer-content {
	width:auto;
	margin-left:auto;
	margin-right:auto;
}





/**** 2-column CONTAINERS ****/

#middle-container {
	float:left;
	position:relative;
	overflow:hidden;
	width:100%;
	background-color:#fff;
}
#left-container {
	float:left;
	position:relative;
	width:100%;
	right:75%;
	background-color:#eee;
}



/**** 2-column CONTENT ****/

#middle-column {
	float:left;
	position:relative;
	width:75%;
	left:75%;
}

#left-column {
	float:left;
	position:relative;
	width:25%;
	left:75%;
}


#middle-content {
	padding:20px;
}
#middle-content h2 {
	margin-top: 1em;
	margin-bottom: 0.5em;
}
#middle-content h3 {
	margin-top: 0.5em;
	margin-bottom: 0.25em;
}
#middle-content p {
	margin-bottom: 0.5em;
}
#middle-content table td {
	border: 1px dashed #ccc;
	padding: 0.2em;
	vertical-align: bottom;
}
#middle-content .breadcrumbs {
	color: #666;
	margin-bottom: 0.25em;
}
#middle-content .breadcrumb-separator {
	color: #999;
}


#left-content {
	font-size: 85%;
	padding:20px 0;
}
#left-content .ui-accordion-content {
	padding: 0.5em 0 0.5em 1em;
}
#left-content h3 {
	font-weight: bold;
}
#left-content li {
	margin-bottom: 0.25em;
}

.status-messages .errors {
	color: red;
}

.status-messages .messsages {
	color: green;
}
