

/* ----------------------------------------------------------------------------- base styles */

 html {
	 -webkit-font-smoothing: antialiased;
	}

* {
	margin: 0;
	border: none;
	padding: 0;
	behavior: url(include/PIE.htc);
	}
	
section, header, footer, aside, article, nav	{
	display: block;
	}
	
a {
  	outline: none;
  	color: blue;
  	-webkit-transition: Color 0.3s ease;
	-moz-transition: Color 0.3s ease;
	-ms-transition: Color 0.3s ease;
	-o-transition: Color 0.3s ease;
	transition: Color 0.3s ease;
	}
	
a:hover {
  	text-decoration: none;
  	color: #000;
	}
	
:focus {
  	-moz-outline-style: none;
	}
		
.mainpanel h2	{
	padding-top: 10px;
	}
	
.mainpanel ul, .mainpanel ol	{
	padding: 0 0 10px 30px;
	}
	
#wrapper, footer	{
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	}
	
#content	{
	position: relative;
	overflow: hidden;
	}
	
/* ----------------------------------------------------------------------------- custom text selection style */
	
/* Mozilla based browsers */
::-moz-selection {
      background-color: #FFA;
      color: #000;
}
/* Works in Safari */
::selection {
      background-color: #FFA;
      color: #000;
}

/* ----------------------------------------------------------------------------- admin tabs style */

ul.primary, ul.secondary {
  	list-style: none;
  	margin: 0;
  	height: auto;
  	line-height: normal;
  	overflow: auto;
	text-shadow: none;
	border: none;
	background: #666;
  	padding: 5px !important;
  	margin-bottom: 15px;
  	-moz-border-radius: 3px;
  	border-radius: 3px; 
	}

ul.primary li, ul.secondary li {
  	display: inline;
  	background-image: none;
 	padding: 0;
	}

ul.primary li a, ul.secondary li a {
  	margin-right: 5px;
  	text-decoration: none;
 	padding: 0 10px;
	display: block;
	float: left;
	height: 22px;
	line-height: 22px;
	background: #999;
	font-weight: bold;
	font-size: 12px;
	color: #eee;
	text-transform: uppercase;
	border: 1px solid #666;
	}

ul.primary li a:hover, ul.secondary li a:hover {
  	background: #333;
  	color: #fff;
	}

ul.primary li.active a, ul.secondary li.active a {
  	font-weight: bold;
  	color: #666;
  	background: #eee;
	}

ul.primary li.active a:hover, ul.secondary li.active a:hover {
  	color: #000;
  	background: #fff;
	}

ul.secondary {
	background: #999;
	font-size: 90%;
	}

/* ----------------------------------------------------------------------------- messages style */
 
.messages	{
	padding: 10px !important;
	margin-bottom: 10px;
	}	
	
.messages p	{
	padding: 0 !important;
	}

div.error	{
	background: #eb9d9d;
	border:2px solid #DD7777;
	color: #940d0d;
	}
	
div.error a	{
	color: #550707 !important;
	border-bottom: 1px dotted #550707 !important;
	}
	
div.status, div.notice	{
	background: #91d876;
	border:2px solid #469528;
	color: #008000;
	}
	
.messages ul	{
	margin: 0 !important;
	padding-left: 20px;
	}

.messages ul li	{
	padding: 0 0 10px 0 !important;
	background: none !important;
	list-style: square !important;
	}
	
/* ----------------------------------------------------------------------------- #view style */	
	
#content ul.view	{
	list-style: none;
	padding: 0;
	margin-top: 0;
	}
	
#content ul.view li	{
	overflow: hidden;
	}
	
/* ----------------------------------------------------------------------------- to-top style */
	
#totop	{	
	bottom: 0;
	right: 15px;
	}

#totop a {
 	background: #666;
  	border: none;
  	border-radius: 0;
  	color: #fff;
  	font-size: 12px;
 	border-radius: 5px 5px 0 0;
  	padding: 5px 12px;
  	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	-ms-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	}

#totop a:hover {
  	background: #333;
  	border: none;
  	color: #fff;
	}
	
/* ----------------------------------------------------------------------------- pager style */

.item-list	{
	margin-top: 1em;
	clear: both;
	overflow: hidden;
	text-align: center;
}

#content ul.pager, #content .item-list .pager li	{
	background: none;
	display:inline;
	list-style: none;
	padding: 5px;
}

.item-list .pager li a	{	
	color: black; 
	padding: 10px 15px;
	background-color: #ccc;
	text-decoration: none;
	}
	
.pager-current	{
	font-weight:bold;
	color: black;
}
	
.item-list .pager li a:hover	{	
	text-decoration: none;
	background: #fff;
}
	
/* -----------------------------------------------------------------------------   form style */	

label	{
	display:block;
	padding-top: 8px;
	}

input, textarea, select{
	margin: 2px 0;
	padding: 4px;
	color: #333;
	border: 1px solid #ccc;
	font-family: Arial,Verdana,sans-serif;
	}
	
input:focus,textarea:focus	{
	border: 1px solid #999;
	}
		
input.form-submit	{
	width: auto;
	color: #999;
	border: none;
	cursor: pointer;
	background: #333;
	}
	
input.form-radio	{
	width: 20px;
	border: 0;
	}

.form-required	{
	color: red;
	}
	
#user-login-form 	{
	text-align: left;
	}

/* -----------------------------------------------------------------------------   tables style */	
   
caption	{
	text-align: left;
	margin-bottom: 10px;
	}
	
table	{	
	color: #000;
	margin-bottom: 10px;
	border-collapse: collapse;
	}

td, th	{
	vertical-align: top;
	padding: 4px;
	border: 1px solid #000;
	}

tr.odd	{
	background: #fff;
	}
	
thead tr	{
	background: #999;
	}
	
tr.even	{
	background: #eee;
	}
	
/* -----------------------------------------------------------------------------   NAV */

/* --------------------------------------------   primary level */
	
ul#nav	{
	list-style: none;
	position: relative;
	}
	
ul#nav li	{	
	float: left;
	zoom: 1;
	}

ul#nav a	{
	display: block;
	text-decoration: none;
	}
	
ul#nav li:hover	{
	position: relative;
	}
	
#nav li.menuparent > a	{
	background: url(../images/nav-dropdown.png) right 50% no-repeat;
	}
	
#nav li.menuparent > a:hover	{
	background: url(../images/nav-dropdown-hover.png) right 50% no-repeat;
	}
	
/* --------------------------------------------   secondary level (dropdown) */

ul#nav ul 	{ 
	list-style: none; 
	width: 220px; 
	visibility: hidden; 
	position: absolute; 
	top: 100%; 
	left: 0; 
	z-index: 50; 
	}
	
ul#nav ul li { 
	margin: 0;
	float: none; 
	}
									  
/* IE 6 & 7 Needs Inline Block */
ul#nav ul a	{ 
	display: inline-block;
	background: black;
	width: 200px;
	} 
	
#nav ul li.menuparent > a	{
	background: url(../images/nav-flyout.png) right 50% no-repeat;
	}
	
#nav ul li.menuparent > a:hover	{
	background: url(../images/nav-flyout-hover.png) right 50% no-repeat;
	}
	
/* --------------------------------------------   tertiary levels (flyouts) */

ul#nav ul ul 	{ 
	left: 100%; 
	top: 0; 
	}
	
ul#nav li:hover > ul { 
	visibility: visible; 
	}

	
/* -----------------------------------------------------------------------------   blog comments style */

#comments	{
	margin-top: 15px;
	}
	
#comments .comment	{
	padding: 15px;
	margin-bottom: 10px;
	overflow: hidden;
	}
	
#comments .author-poster	{
	background: #333;
	}
	
#comments .author-registered	{
	background: #666;
	}
	
#comments .author-anonymous	{
	background: #999;
	}
		
#comments .author-registered .content a	{
	color: #fff;
	}
		
.submitted	{
	font-style: italic;
	margin-bottom: 15px;
	font-size: 12px;
	}
	
#comments p	{
	margin-left: 0;
	}

#comments .links	{
	padding: 0;
	margin: 0;
	list-style: none;
	}
	
#comments .links li	{
	background: none;
	padding: 0;
	}
	
#comments .links li a	{
	margin-right: 10px;
	display: block;
	float: left;
	padding: 3px 8px;
	border: none;
	color: #fff;
	}
	
#comments .links li a:active	{
	position: relative;
	top: 1px;
	}
	
#comments .description	{
	font-size: 12px;
	}
	
#comments .box	{	
	margin: 20px 0;
	padding: 20px 0;
	border-top: 1px solid #fff;
	}
	
.ckeditor_links {
	margin: 10px 0;
	float: left;
	}
	
#comments fieldset.collapsible	{
	clear: both;
	font-size: 12px;
	}
	
#comments fieldset.collapsible p	{
	margin-top: 15px;
	padding-left: 24px;
	background: url(../images/info_button.png) 0 0 no-repeat;
	}
	
/* -----------------------------------------------------------------------------   blog tags style */
	
#content ul.tags	{
	padding: 0;
	margin: 0 0 10px;
	}

#content ul.tags li, .terms li	{
	display: inline;
	border: none;
	margin-bottom: 5px;
	background: none;
	line-height: normal;
	padding: 0;
	}

#content .mainpanel .blog ul.tags li {
	padding-bottom: 0;
	margin-bottom: 0;
}

#content .mainpanel ul.links	{
	padding: 0;
	list-style: none;
	}
	
#content .mainpanel ul.links li	{
	float: left;
	margin-bottom: 0;
	border: none;
	}

#content li.tags ul	{
	display: inline !important;
	padding-left: 0 !important;
	margin: 0;
	}
	
/* -----------------------------------------------------------------------------   blog links style */
	
#content .links	{
	overflow: hidden;
	margin-top: 10px;
	}
	
#content .links span	{
	float: left;
	}	
	
#content .mainpanel .blog  .links a	{	
	margin-right: 10px;
	display: block;
	float: left;
	padding: 3px 8px;
	background: #000;
	border: none;
	color: #fff;
	}
	
#content .mainpanel .blog .links a:hover	{
	background: #666;
	}
	
#content .mainpanel .blog .links a:active	{
	position: relative;
	top: 1px;
	}
	
/* -----------------------------------------------------------------------------   footernav style */
	
#footernav	{	
	list-style: none;
	float: right;
	}

#footernav li {
  float: left;
  margin: 0 0 10px 10px;
}

.footercontact, .site-information p	{
	float: right;
	clear: right;
	}

body.cke_show_borders, html.CSS1Compat	{
	background: #fff;
	}

/* -----------------------------------------------------------------------------   blocks page style */
   
body.build.block ul#nav	{
	float: none;
	}

#block-admin-display-form table	{
	width: 100% !important;
	border-collapse: collapse;
	background: #fff;
	}
   
#block-admin-display-form  td, #block-admin-display-form  th	{
	border: 1px solid #ddd;
	}
   
  #block-admin-display-form a	{
  	color: #666;
  	}
   
#block-admin-display-form  th	{
	text-align: left;
	background: #333;
	color: #fff;
	}   
   
.tabledrag-handle	{
  	display: block;
  	float: left;
  	text-decoration: none;
   	/* background: url(../images/arrow_cursor_drag_icon.png)  0 0 no-repeat; */
   	width: 30px;
  	}   
   
body.cke_show_borders, html.CSS1Compat	{
	background: #fff;
	}
	
/* -----------------------------------------------------------------------------	lightbox */

#imageDataContainer, #numberDisplay, #caption	{	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #999 !important;
	}
	
#caption	{
	color: #333 !important;
	}	

#lightbox2-overlay	{
	background: #333 !important;
	}
	
/* -----------------------------------------------------------------------------	downloads */
	
div.downloads {
	background: #ccc;
	padding: 20px;
	}
	
div.downloads ul	{	
	list-style: none;
	padding-left: 0 !important;
	}
	
div.downloads li a	{
	padding: 5px 0 5px 26px;
	display: block;
	background-position: 0 50%;;
	background-repeat: no-repeat;
	}
	
div.downloads li a.avi	{
	background-image:  url(../images/downloads/avi.png);
	}
div.downloads li a.doc	{
	background-image:  url(../images/downloads/doc.png);
	}
div.downloads li a.docx	{
	background-image:  url(../images/downloads/docx.png);
	}
div.downloads li a.mp3	{
	background-image:  url(../images/downloads/mp3.png);
	}
div.downloads li a.pdf	{
	background-image:  url(../images/downloads/pdf.png);
	}
div.downloads li a.psd	{
	background-image:  url(../images/downloads/psd.png);
	}
div.downloads li a.tif	{
	background-image:  url(../images/downloads/tif.png);
	}
div.downloads li a.txt	{
	background-image:  url(../images/downloads/txt.png);
	}
div.downloads li a.wav	{
	background-image:  url(../images/downloads/wav.png);
	}
	
/* -----------------------------------------------------------------------------	breadcrumbs */

ol.breadcrumbs	{
	font-size: 11px;
	padding: 4px 0 !important;
	color: #999;
	overflow: hidden;
	margin-bottom: 20px;
}
	
ol.breadcrumbs li {
	float: left;
	list-style: none;
	padding-left: 0;
}

/* -----------------------------------------------------------------------------   no sidebar */

body.nosidebar article.mainpanel	{	
	width: auto;
	float: none;
	}
	
body.nosidebar aside.sidepanel	{	
	display: none;
	}





	
/* -----------------------------------------------------------------------------   end style sheet */