/* Start of CMSMS style sheet 'Pirates Landing Page Styles' */
/*****************
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: Lucida, "Lucida Grande", Arial, Verdana, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
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 {
   text-decoration: underline;
/* 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 */
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
   color: #18507C;                /* a different color can be used for visited links */
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   /* background-color: #C3D4DF; */
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   color: #000;
   margin: 0; /* removes air for the bodywrapper */
   background-color: #000;
}

div#bodywrapper {
/*   background: #000 url('uploads/images/layout/Pirates_Bkgd_Red.jpg') repeat-y top center; */
   margin: 0 auto;     /* this centers bodywrapper */
}

div#cloudwrapper {
/*   background: #000 url('uploads/images/layout/Pirates_Clouds_Home-FL.jpg') no-repeat top center; */
   margin: 0 auto;     /* this centers wrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   color: #FFF;
   max-width: 1003px; /* IE wont understand these, so we will use javascript magick */
   min-width: 1003px;
}
div#subwrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   color: #FFF;
}


/********************
CONTENT STYLING
*********************/

div#content {
   margin: 0 auto 0 0; /* removes air above and under menu and content */
}

div#footer {
   clear:both;       /* keep footer below bottom text */
   color: #666;
   font-family: Lucida, "Lucida Grande", Arial, Verdana, sans-serif;
/*   background-color: #000; */ /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; 
   margin:0;
}
div#footer .credits {
   text-align: center; 
}

div#footer p a {
   color: #666; /* needed because footer link would be same color as background otherwise */
   text-decoration: none;
}


/* TEXT */
p {
   font-family: Lucida, "Lucida Grande", Arial, Verdana, sans-serif;
   color: #656565;
   font-size: 0.8em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* END TEXT */
/* End of 'Pirates Landing Page Styles' */

