/* Start of CMSMS style sheet 'Taylors Mistake Main Stylesheet' */
/*****************
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;
}

input{
margin: 3px;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Tahoma, Arial, Verdana, Geneva, Helvetica, sans-serif;
   font-size: 75.01%;
   background:#EFEFEF url(uploads/images/bg.png) top left repeat-x;
}




/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 12px;
}

/*
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 */
   color: #333; 
}

a:visited {
   text-decoration: underline;
  color: #333;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #333;
}

/*****************
basic layout 
*****************/
body {
   color: #333;
   margin:0; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: auto;     /* this centers wrapper */
   width: 950px; /* IE wont understand these, so we will use javascript magick */
   color: #333;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 194px; /* adjust according your image size */
   background: url(uploads/images/header-back.jpg) 0 0; 
   width: 100%;
}

div#headerpic {
   height: 194px; /* adjust according your image size */
   background: url(uploads/images/TaylorsMistakeBanner2.jpg) no-repeat center; 
   margin:0;
   width: 950px;
}


div#search {
   float: left;
   /*width: 230px;*/     /* enough width for the search input box */
   text-align: left;
   padding: 6px 0 20px 0;
   margin: 0 10px 0 0;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

 ndiv#content {
   margin: 1.5em auto 2em 0; /* some air above and under menu and content */
}


div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #385C72; /* same bg color as in header */
}

div#footer p {
   font-size: 10px;
   padding: 16px;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 10px;
   border-bottom: 1px dotted black;
}

/* relational links under content */
div.left49 {
  float: left;
  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 {
  background:#fff;
  width:950px;
  margin:0;
}

/* HEADINGS */
div#content h1 {
   font-size: 22px;  /* font size for h1 */
   margin: 0;
   line-height:150%;
   padding-left:50px;
   background:url(uploads/images/arrow.gif) top left no-repeat;
   border-bottom:1px dotted #333;
  margin-bottom:10px;
  padding-bottom:10px;
}

div#content h2 {
   color: #333; 
   font-size: 22px; 
   text-align: left; 
   margin: 0 0 5px 0;
   line-height:150%;
   padding-left:50px;
   background:url(uploads/images/arrow.gif) top left no-repeat;
   border-bottom:1px dashed #333;
}
div#content h3 {
   color: #333; 
   font-size: 18px;
   margin: 0 0 5px 0;
   line-height:150%;
}
div#content h4 {
   color: #333; 
   font-size: 16px;
   margin: 0 0 5px 0;
   line-height:150%;
}
div#content h5 {
   font-size: 14px;
   margin: 0 0 5px 0;
}
h6 {
   font-size: 12px;
   margin: 0 0 5px 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 12px;
   margin: 0 0 15px 0;  /* some air around p elements */
   padding: 0;
   line-height:150%;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 12px;
}
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: Arial, "Courier New", Courier, monospace;
 font-size: 12px;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 10px 10px 10px;
   padding: 5px;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 12px;
   margin: 0 0 15px 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 2.5px 20px;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 2.5px 30px;
}
div#dl dd {
   margin: 0 0 0 30px;
}
/* END LISTS */



#content #news h2 {
  border-top:1px dotted #999 !important;
  border-bottom:1px dotted #999 !important;
  padding:2px 0 0 45px !important;
  margin-bottom: 10px !important;
  background:#EFEFEF url(uploads/images/megaphone.gif) 5px 2px no-repeat !important;
  font-size:14px !important;
  line-height:210% !important;
 color:#333 !important;
}

#content #signin h2 {
  border-top:1px dotted #999 !important;
  border-bottom:1px dotted #999 !important;
  padding:2px 0 0 45px !important;
  margin-bottom: 10px !important;
  background:#EFEFEF url(uploads/images/flag3.gif) 5px 2px no-repeat !important;
  font-size:14px !important;
  line-height:210% !important;
 color:#333 !important;
}

#content #feu h2 {
  border-top:1px dotted #999 !important;
  border-bottom:1px dotted #999 !important;
  padding:2px 0 0 45px !important;
  margin-bottom: 10px !important;
  background:#EFEFEF url(uploads/images/key.gif) 5px 2px no-repeat !important;
  font-size:14px !important;
  line-height:210% !important;
 color:#333 !important;
}

#content #feu  {
  font-size:10px !important;

}

#content #subscribe h2 {
  border-top:1px dotted #999 !important;
  border-bottom:1px dotted #999 !important;
  padding:2px 0 0 45px !important;
  margin-bottom: 10px !important;
  background:#EFEFEF url(uploads/images/envelope.gif) 5px 2px no-repeat !important;
  font-size:14px !important;
  line-height:210% !important;
 color:#333 !important;
}

div.feature {
  background:#fff;
  float:left;
  margin:0 15px 0 0;
}
div.feature p {
  background:#D5E1DD !important;
  padding:7px !important;
  font-size:11px !important;
  margin-top:5px !important;
}
div#adbar {
  width:175px;
  margin:2% 1% 2% 1%;
//margin:2% 1% 2% 1%;
   float:right;
   display:block;
}

div#adbar p {
   margin:0 !important;
   padding:4 !important;
}
div#toplinks {
  background:transparent;
  /*width:110px;*/
   text-align:center;
  padding:0;
}
div#toplinks p a,div#toplinks p {
  font-size:12px;
  color:#528171;
  text-decoration:none;
}
div#toplinks p a:hover {
  text-decoration:underline;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

#news {
   margin:0 !important;
}
#cntnt01moduleform_1 {
   font-family:Tahoma, Arial, Verdana, Geneva, Helvetica, sans-serif;
}
#cntnt01moduleform_1 #cntnt01topic_subject, #cntnt01moduleform_1 #cntnt01feu_input_username,
#cntnt01moduleform_1 input {
   background-image:none !important;
   border:1px solid #838383 !important;
   background-color:#DDD !important;
   color:#000;
   height:20px !important;
   float:left;
}
#cntnt01moduleform_1 #cntnt01topic_subject {
  width:400px !important;color: black
}
#cntnt01moduleform_1 #cntnt01feu_input_username {
  width:200px !important;
}
#forum #cntnt01moduleform_1 input {
   background-image: none !important;
   border:1px solid #DDD;
   background-color:#838383;

   color:black;
   height:25px;
}
#main img {none;
}

/* End of 'Taylors Mistake Main Stylesheet' */

