/* Start of CMSMS style sheet 'SeanDesign' */
/*****************
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: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1.5em;
   margin:0;
   padding:0px;
   color: white;
   background: url('http://www.flatironcafe.net/uploads/images/front_bg_2.png') #720701;
   
}


html, body {
height: 100%;
}

* html #pagewrapper{
height: 100%;
}

body#tinymce{
   background: #006600;
   padding: 0px;
   line-height: 1.5em;
}

/*
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;
}

h2{
	font-size: 1em;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* 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: black;
}

a:visited {
    text-decoration: none;
    background-color: inherit;
    color: black;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
    text-decoration: underline;

}

/*****************
basic layout 
*****************/
div#gradient{
       /*This puts the gradient in the background. It does not contain content, but it was the easiest way to put a gradient on top of the stripes in the bg.*/
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 734px;
	background-image:url('http://www.flatironcafe.net/uploads/images/gradient_bg.png');
	z-index: 0;
}

/*Dirty hack to put the header next to the main content and still let the main content flow to the full page height*/
div#side_column{
	width: 208px;
	float: left;
    border-left: none;
    font-variant: small-caps;
    font-family: arial;
    font-weight: normal;
	background-color: #810702;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   width: 936px;
   min-height: 100%;
   border: solid 3px #360300;
   border-bottom: none;
   border-top: none;
   position: relative;
   z-index: 1;
  /* Kept here in case I need to use a transparent png
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale, src='http://www.flatironcafe.net/uploads/images/green_bg.png');
*/
background-image: url('http://www.flatironcafe.net/uploads/images/content_bg.png');

}

/*** 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{
	float: left;
}
div#header h1 a {
/* you can set your own image here */
   color: white;
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#content{
	float: left;
	padding-top: 2px;
    width: 728px;
	color: #f8eff0;
	text-align: left;
	min-height: 365px;
	line-height: 1.5em;
	_height: 365px;/* IE6 Workaround.*/
        background-color: #1B0100;
}
div#content p{
        padding-left: 5px;
        padding-right: 5px;
}
div#content a{
        color: #f8c306;
}

div#content p{
	margin-left: 3px;
}

div.cleardiv{
	clear: both;
}

div#footer{
	display: block;
	clear: both;
	text-align: left;
	color: #f5f1f0;
	padding-bottom: 10px;
	background-color: #360300;
	margin-left: 208px;
}

div#footer a, div#footer p span{
  color: #f5f1f0;
}
div#footer p{
	text-align: left;
        font-weight: bold;
}
div#footer strong{
  color: inherit;
}
/* END HEADINGS */

/* TEXT */
div#content form {
    width: 300px;
}
div#content form label{
   display: block;
   width: 120px;
  float: left;
  margin-bottom: 5px;
}
div#content form p input{
    float: right;
    margin-bottom: 5px;
}

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;
}

/* END TEXT */

div#nav{
	width: 208px;
	float: left;
    border-left: none;
    font-variant: small-caps;
    font-family: arial;
    font-weight: normal;
	background-color: #810702;
}

div#nav ul{
	text-align: left;
}

div#nav ul li{
  list-style-type: none;
  border-top: solid 1px #921d16;
      min-height: 25px;
	_height: 25px;
}

div#nav ul li a, li.currentpage h3{
	display: block;
	font-size: 12pt;
	font-family: georgia serif;
	line-height: 1em;
	padding-bottom: 5px;
	padding-top: 5px;
	width: 208px;
	text-indent: 15px;
	color: #ffecf8;
        font-weight: normal;
}


div#nav ul li ul li, div#nav ul li ul li a, div#nav ul li.activeparent ul li, div#nav ul li.activeparent ul li a{
  list-style-type: none;
  font-size: 10pt;
  color: #d0d390;
}

div#nav ul li.activeparent ul li.currentpage h3{
  font-size: 11pt;
  color: #d0d390;
}

div#nav ul li a:hover{
	background-color: #360300;
	text-decoration: none;
}
li.currentpage h3{
	background-color:#360300;
}
a{
  position: relative;
}

/* END LISTS */
/* End of 'SeanDesign' */

