/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
   margin: 0;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   color: #990000; 
   text-decoration: none;
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #f4d51b;
}

/*****************
basic layout 
*****************/
body {
   background: #336699 url(../../uploads/art2sea/background.jpg) repeat-y center top;
   color: #666666;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   width: 855px;   /* IE wont understand these, so we will use javascript magick */
   color: #666666;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 68px;    /* adjust according your image size */      
}

div#header h1 a {
/* you can set your own image here */
   background: url(../../uploads/art2sea/header.jpg) no-repeat 0; 
   display: block;
   height: 68px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   margin-bottom:-10px;/* garys hack to clear gap in IE6 */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

/* position for top nav */

div#topnav {
   background-color: #ffffff;
   font-size: 120%;
   color: #999999;
   display: block;
   height: 30px;
}

div#topnavleft {
   float: left;
   width: 590px;
}

div#topnavleft ul {
   padding-top:9px;
   float: left;
   display: inline;
}

div#topnavleft li {
   padding-left: 4px;
   padding-right: 4px;
   display: inline;
   list-style-type: none;
   border-right: 1px dotted #8ea1c9;
}

div#topnav li a {
   color: #999999;
   text-decoration: none;
}

div#topnav li a:hover {
   color: #154209;
   text-decoration: none;
}

div#topnavright {
   float: right;
   width: 190px;
}

div#topnavright ul {
   padding-top:3px;
   float: right;
   display: inline;
}

div#topnavright li {
   padding-left: 4px;
   padding-right: 4px;
   display: inline;
   list-style-type: none;
}

div#topnavright li a {
   color: #999999;
   text-decoration: none;
}

div#topnavright li a:hover {
   color: #154209;
   text-decoration: none;
}

/* position for top picture */

div#toppicture {
   background: #385C72 url(../../uploads/art2sea/toppicture.jpg) no-repeat 0; 
   display: block;
   height: 275px;
} 

div#content {

   margin-bottom: 10px;
   margin-left: 0;
}

div#main {
   margin-left: 223px;
}

div#maintext {
   float: left;
   width: 359px;
}

div#mainright {
   float: right;
   background: url(uploads/steves_theme/rightfrontbg.html) repeat-y;
   width: 254px;
   height: 543px;
   padding-left: 10px;
}

div#sidebar {
   float: left;
   width: 203px;
   display: inline;
   margin-left: 0;
}

div#navcontact {
   width: 203px;
   background-color: #154209;
   margin-top: 10px;
   color: #FFFFFF;
   text-align: center;
   padding-top: 15px;
   padding-bottom: 5px;
}

div#navcontact a {
   color: #ff9900;
   text-decoration: none;
}

div#navcontact a:hover {
   color: #62BC4C;
   text-decoration: none;
}

div#footer {
   clear: both;
   background: #385C72 url(../../uploads/art2sea/footer.jpg) no-repeat 0; 	
   display: block;
   height: 83px;
}

div#footer p {
   padding: 10px;       /* some air for footer */
   margin: 0;
}

div#footer p a {
   color: #154209;
   text-decoration: none;
}

div#footer p a:hover {
   color: #666666;
   text-decoration: none;
}

div#footerleft {
   float:left;
   margin-top: 46px;
}

div#footerright {
   float:right;
   text-align: right;
   margin-top: 29px;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #154209; 
	font-size: 1.2em; 
	text-align: left; 
/* some air around the text */;
	padding-bottom: 1px;
/* set borders around header */
        line-height: 1.5em;
/* and some air under the border */

}
div#content h3 {
   color: #990000; 
   font-size: 1 em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}

strong {
	font-weight: bold;
	color: #154209;
}

/*contact form message box width - gary's hack */
.contactform textarea{
width:250px;
height:100px;
border: 1px solid #999999;
}

.contactform input {
   border: 1px solid #999999;
   width:250px;
}

.contactform input {
   border: 1px solid #999999;
}

/* END LISTS */
/* Stylesheet: Layout: Left sidebar + 1 column- Art Theme Modified On 2012-01-20 11:42:19 */
/********************
MENU
*********************/
#menu_vert {
   padding-left: 0;

}


/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {
   padding-bottom: 0.5em;
}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   border-bottom: 1px dashed #cccccc;
   display: block;
}

#menu_vert ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none;
   display: block;
   color: #003333;
   background: #669999;
   min-height:1em;
   margin-top: 5px;
   margin-bottom: 5px;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 10px;
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
   margin-top: 5px;
   margin-bottom: 5px;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 25px;
   color: #ffffff;
   background-color: #339999;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   color: #003366;
   margin-top: 5px;
   margin-bottom: 5px;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 40px;
   background-color: #339999;
/* background-color: #faeb96; */
}

/* fourth level links - different background colour */
div#menu_vert ul ul ul ul a {
background-color: #99cccc;
}

/* hover state for all links */
div#menu_vert a:hover {
   background-color: #336699;
   color: #FFFFFF;
}
div#menu_vert a.activeparent:hover {
   background-color: #336699;
   color: #ffffff;
   font-weight: bold;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
   background-color: #4679ad;
   color: #ffffff;
   font-weight: bold;
}

div#menu_vert ul ul li a.activeparent {
   background-position: 1.5em center; 
   background-color: #4679ad;
   color: #ffffff;
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
   background-color: #336699;
   display: block;
   color: #fff;
   font-size: 1em;
   margin: 5px 0;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 10px
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
   background-color: #339999;
   display: block;
   color: #fff;
   font-size: 1em;
   margin: 5px 0;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 25px;  
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   display: block;
   color: #fff;
   background-color: #154209;
   margin: 5px 0;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 40px; 
}

/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #9ebddd;
   line-height: 1em;
   margin: 0;
   text-align:center;
}

/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
/* Stylesheet: Art_vertical_simple Modified On 2012-01-20 12:34:55 */
div#news {
/* margin for the entire div surrounding the news items */
	margin: 2em 0 1em 1em;
/* border set here */
	border: 1px solid #909799;
/* sets it off from surroundings */
	background: #f5f5f5;
}
div#news h2 {
	line-height: 2em;
/* you can set your own image here */
	background: url(../../uploads/ngrey/darknav.png) repeat-x left center;
	color: #f5f5f5;
	border: none
}
.NewsSummary {
/* padding for the news article summary */
	padding: 0.5em 0.5em 1em;
/* margin to the bottom of the news article summary */
	margin: 0 0.5em 1em 0.5em;
	border-bottom: 1px solid #ccc;
}
.NewsSummaryPostdate {
/* smaller than default text size */
	font-size: 90%;
/* bold to set it off from text */
	font-weight: bold;
}
.NewsSummaryLink {
/* bold to set it off from text */
	font-weight: bold;
/* little more room at top */
	padding-top: 0.2em;
}
.NewsSummaryCategory {
/* italic to set it off from text */
	font-style: italic;
	margin: 5px 0;
}
.NewsSummaryAuthor {
/* italic to set it off from text */
	font-style: italic;
	padding-bottom: 0.5em;
}
.NewsSummarySummary, .NewsSummaryContent {
/* larger than default text */
	line-height: 140%;
}
.NewsSummaryMorelink {
	padding-top: 0.5em;
}
#NewsPostDetailDate {
/* smaller text */
	font-size: 90%;
	margin-bottom: 5px;
/* bold to set it off from text */
	font-weight: bold;
}
#NewsPostDetailSummary {
/* larger than default text */
	line-height: 150%;
}
#NewsPostDetailCategory {
/* italic to set it off from text */
	font-style: italic;
	border-top: 1px solid #ccc;
	margin-top: 0.5em;
	padding: 0.2em 0;
}
#NewsPostDetailContent {
	margin-bottom: 15px;
/* larger than default text */
	line-height: 150%;
}
#NewsPostDetailAuthor {
	padding-bottom: 1.5em;
/* italic to set it off from text */
	font-style: italic;
}
/* more divs, left unstyled, just so you know the IDs of them */ 
#NewsPostDetailTitle {
}
#NewsPostDetailHorizRule {
}
#NewsPostDetailPrintLink {
}
#NewsPostDetailReturnLink {
}
div#news ul li {
	padding: 2px 2px 2px 5px;
	margin-left: 20px;
}
/* Stylesheet: Module: News Modified On 2009-05-09 23:29:39 */
/* accessibility */
/* menu links accesskeys */
span.accesskey {
	text-decoration: none;
}
/* accessibility divs are hidden by default, text, screenreaders and such will show these */
.accessibility, hr {
/* position set so the rest can be set out side of visual browser viewport */
	position: absolute;
/* takes it out top side */
	top: -999em;
/* takes it out left side */
	left: -999em;
}
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
	position: absolute;
	left: -1000px;
	top: -1000px;
	width: 0;
	height: 0;
	overflow: hidden;
	display: inline;
}
/* end accessibility */
/* wiki style external links */
/* external links will have "(external link)" text added, lets hide it */
a.external span {
	position: absolute;
	left: -5000px;
	width: 4000px;
}
a.external {
/* make some room for the image, css shorthand rules, read: first top padding 0 then right padding 12px then bottom then right */
	padding: 0 12px 0 0;
}
/* colors for external links */
a.external:link {
	color: #18507C;
/* background image for the link to show wiki style arrow */
	background: url(../../images/cms/external.html) no-repeat 100% -100px;
}
a.external:visited {
	color: #18507C;
/* a different color can be used for visited external links */
/* Set the last 0 to -100px to use that part of the external.gif image for different color for active links external.gif is actually 300px tall, we can use different positions of the image to simulate rollover image changes.*/
	background: url(../../images/cms/external.html) no-repeat 100% -100px;
}
a.external:hover {
	color: #18507C;
/* Set the last 0 to -200px to use that part of the external.gif image for different color on hover */
	background: url(../../images/cms/external.html) no-repeat 100% 0;
	background-color: inherit;
}
/* end wiki style external links */
/* clearing */
/* clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item. We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience. Do not edit if you dont know what you are doing*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {
	height: 0;
	clear: both;
	width: 90%;
	visibility: hidden;
}
#main .clear {
	height: 0;
	clear: right;
	width: 90%;
	visibility: hidden;
}
* html>body .clearfix {
	display: inline-block;
	width: 100%;
}
* html .clear {
/* Hides from IE-mac \*/
	height: 1%;
	clear: right;
	width: 90%;
/* End hide from IE-mac */
}
/* end clearing */
/* Stylesheet: Accessibility and cross-browser tools Modified On 2012-01-16 14:59:13 */
#footer ul {
/* some margin is set in the footer padding */
   margin: 0px;
/* calling a specific side, left in this case */
   margin-left: 5px;
   padding: 0px;
/* remove any default bullets, image used in li call */
   list-style: none;
}
#footer ul li {
/* remove any default bullets, image used for consistency */
   list-style: none;
/* float left to set first level li items across the top */
   float:left;
/* a little margin at top */
   margin: 5px 0px 0px;
/* padding all the way around */
   padding: 5px;
/* you can set your own image here, used for consistency */
   background: url(../../uploads/ngrey/dot.gif) no-repeat left 10px;
}
#footer ul li a {
/* this will make the "a" link a solid shape */
   display:block;
   margin: 2px 0px 4px;
   padding: 0px 5px 5px 5px;
}
/* set h3 to look like "a" */
#footer li h3 {
   font-weight:normal;
   font-size:100%;
   margin: 2px 0px 2px 0px;
   padding: 0px 5px 5px 5px;
}
/* set h3 to look like "a", less margin at this level */
#footer li li h3 {
   font-weight:normal;
   font-size:100%;
   margin: 0px;
   padding: 0px 5px 5px 5px;
}
#footer ul li li {
/* remove any default bullets, image used for consistency */
   list-style: none;
/* remove float so they line up under top li */
   float:none;
/* less margin/padding */
   margin: 0px;
   padding: 0px 0px 0px 5px;
/* you can set your own image here, used for consistency */
   background: url(../../uploads/ngrey/dot.gif) no-repeat left 3px;
}
/* fix for IE6 */
* html #footer ul li a {
   margin: 2px 0px 0px;
   padding: 0px 5px 5px 5px;
}
* html #footer ul li li a {
   margin: 0px 0px 0px;
   padding: 0px 5px 0px 5px;
}
/* End fix for IE6 */
#footer ul ul {
/* remove float so they line up under top li */
   float:none;
/* a little margin to offset it */
   margin: 0px 0px 0px 8px;
   padding: 0;
}
#footer ul ul ul {
/* remove float so they line up under li above it */
   float:none;
/* a little margin to offset it */
   margin: 0px 0px 0px 8px;
   padding: 0;
}
/* Stylesheet: Navigation: FatFootMenu Modified On 2009-05-09 23:47:45 */
