/**
* @file
* Page Styling
*
* Style the markup found in page.tpl.php. Also includes some styling of
* miscellaneous Drupal elements that appear in the $content variable, such as
* ul.links, .pager, .more-link, etc.
 

* Body
 */
BODY
{
	margin: 0;
	padding: 0;
}
#page-wrapper
{
}
#page
{
}
/*
* The skip navigation link will be completely hidden until a user tabs to the
* link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link A, #skip-link A:visited
{
	position: absolute;
	display: block;
	left: 0;
	top: -500px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	text-align: center;
	background-color: #666;
	color: #FFF;
}
#skip-link A:hover, #skip-link A:active, #skip-link A:focus
{
	position: static;
	width: 100%;
	height: auto;
	padding: 2px 0 3px;
}
/*
* Header
 */
#header
{
}
#header .section
{
}
#logo
{
	float: left;
/*LTR*/
	margin: 0;
	padding: 0;
}
#logo IMG
{
	vertical-align: bottom;
}
#name-and-slogan
{
}
H1#site-name, DIV#site-name
{
	margin: 0;
	font-size: 2em;
	line-height: 1.3em;
}
#site-name A:link, #site-name A:visited
{
	color: #000;
	text-decoration: none;
}
#site-name A:hover, #site-name A:focus
{
	text-decoration: underline;
}
#site-slogan
{
}
.region-header
{
}
/*
* Main (container for everything else)
 */
#main-wrapper
{
}
#main
{
}
/*
* Content
 */
#content
{
}
#content .section
{
	padding-right: 50px;
	padding-left: 8px;
	padding-bottom: 20px;
	font-size: 0.85em;
}
#mission
{
	font-size: 1.2em;
	font-weight: normal;
	padding-bottom: 13px;
	font-style: normal;
	color: #FFFFFF;
	background-color: #459A95;
	opacity: .5;
	padding: 20px;
	margin-bottom: 14px;
	border-radius: 6px;
}
.region-content-top
{
}
.breadcrumb
{
	padding-bottom: 0;
/*Undo system.css*/
}
H1.title, H2.title, H3.title
{
	margin: 0;
	color: #855434;
}
TR.even
{
/*background-color: #eee;
Drupal core uses a #eee background*/
}
TR.odd
{
/*background-color: #eee;
Drupal core uses a #eee background*/
}
DIV.messages
{
}
DIV.status
{
}
DIV.warning, TR.warning
{
/*border: 1px solid #f0c020;
Drupal core uses: 1px solid #f0c020*/
}
DIV.error, TR.error
{
}
.error
{
/*color: #e55;
Drupal core uses a #e55 background*/
}
.warning
{
/*color: #e09010;
Drupal core uses a #e09010 background*/
}
DIV.tabs
{
}
.help
{
	margin: 1em 0;
}
.more-help-link
{
	font-size: 0.85em;
	text-align: right;
}
#content-area
{
}
UL.links
{
	margin: 1em 0;
	padding: 0;
}
UL.links.inline
{
	margin: 0;
	display: inline;
}
UL.links LI
{
	display: inline;
	list-style-type: none;
	padding: 0 0.5em;
	margin-right: 10px;
}
.pager
{
	clear: both;
	margin: 1em 0;
	text-align: center;
	border: 1px solid #B8A279;
	border-radius: 6px;
	color: #004595;
}
.pager A, .pager STRONG.pager-current
{
	padding: 0.5em;
}
.feed-icons
{
	margin: 1em 0;
}
.more-link
{
	text-align: right;
/*LTR*/
}
.region-content-bottom
{
}
/*
* First sidebar (on left in LTR languages, on right in RTL)
*
* Remember to NOT add padding or margin to your .region-sidebar-first
* (see the layout.css file.)
 */
.region-sidebar-first
{
}
.region-sidebar-first .section
{
}
/*
* Second sidebar (on right in LTR languages, on left in RTL)
*
* Remember to NOT add padding or margin to your .region-sidebar-second
* (see the layout.css file.)
 */
.region-sidebar-second
{
}
.region-sidebar-second .section
{
}
/*
* Footer
 */
#footer
{
	padding: 1px 20px 2px;
	font-size: 0.8em;
	color: #60412F;
}
#footer .section
{
}
#footer-message
{
	padding: 0px;
}
.region-footer
{
}
/*
* Closure
 */
.region-page-closure
{
}
/*
* Drupal boxes
*
* Wrapper for Comment form, Comment viewing options, Menu admin, and
* Search results.
 */
.box
{
}
.box H2
{
}
.box .content
{
}
/*
* Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after
{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/**
* Hide elements from all users.
*
* Used for elements which should not be immediately displayed to any user. An
* example would be a collapsible fieldset that will be expanded with a click
* from a user. The effect of this class can be toggled with the jQuery show()
* and hide() functions.
 */
.element-hidden
{
	display: none;
}
/**
* Hide elements visually, but keep them available for screen-readers.
*
* Used for information required for screen-reader users to understand and use
* the site where visual display is undesirable. Information provided in this
* manner should be kept concise, to avoid unnecessary burden on the user. Must
* not be used for focusable elements (such as links and form elements) as this
* causes issues for keyboard only or voice recognition users. "!important" is
* used to prevent unintentional overrides.
 */
.element-invisible
{
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
/*IE6, IE7*/
	clip: rect(1px, 1px, 1px, 1px);
}
