/* Start of CMSMS style sheet 'UTSF Layout HOME:  Top menu + 1 column' */
/*****************
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: Tahoma, Arial, Helvetica, 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
a:visited {
   color:#ff9900; /*orange*/
   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; 
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
}

.clear {
   clear:both;
}	

/*****************
basic layout 
*****************/
body {
   background: #000 url('uploads/images/layout/WoodBkgd.jpg') no-repeat top center;
   background-attachment:fixed;
   font-family: Tahoma, Arial, Helvetica, sans-serif;
   color: #c2ab8c; /*tan text color*/
   letter-spacing: 0.3px;
}
#wrapper2 {
   width: 915px;
   margin: 0 auto;
   margin-top: 20px;
   background-color: #240c0d; /*maroon*/
   border: 1px solid #52422c; /*tan*/
}
#wrapper {
   width: 875px;
   margin: 20px auto;
   background-color: #000000;
   border: 1px solid #52422c; /*tan*/
}

#nav{
   float: left;
   margin-top: 45px;
   width: 555px;
}

img.logo {
   float: left;
   width: 315px;
   height:105px;
}

div#content {
   width: 855px;
   margin: 0 auto 10px auto;
}
#content-home-wrapper {
   width: 855px;
   height: 384px;
   background:url(uploads/images/layout/home-bkgd.jpg) no-repeat;
}

div#main {
   width: 410px;
   padding: 49px 0 0 52px;
}

div#footer {
/*   clear:both;  may not be needed here */     /* keep footer below content and menu */
   width: 855px;
   margin: 10px auto 0 auto;
   color: #705c40;
}

#footer-left {
   float:left;
   width:700px;
}
#footer-right {
   float:right;
}
#footer p {
   margin-bottom:2px;
   font-size:11px;
}			
#footer a {
   color:#705c40;
   text-decoration:none;
}	
#footer a:hover {
   color:#c2ab8c; /*tan text color*/
}
#footer a.facebook {
   display:block;
   width:16px;
   height:16px;
   background:url(uploads/images/layout/facebook.png) no-repeat left;
   float:left;
   margin-right:10px;
}
#footer a.twitter {
   display:block;
   width:16px;
   height:16px;
   background:url(uploads/images/layout/twitter.png) no-repeat left;
   float:left;
}	
#footer a.facebook:hover, #footer a.twitter:hover {
   background-position: right;
}	

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/********************
CONTENT STYLING
*********************/
div#content {

}

/************** Main Styles **************/

h1{
	color:#ff9900; /*orange*/
	font-weight:normal;
	font-size:24px;
	margin-bottom:10px;
	letter-spacing:1px;
	padding-bottom:12px;
	border-bottom:1px solid #52422c; /*tan*/
	}
h2{
	font:16px Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	color:#fff;
	margin-bottom:4px;
	padding-top:8px;
	}		

/* TEXT */
p {
   font-size:12px;
   line-height:16px;
   margin-bottom:10px;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
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%;   /* 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: 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;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */
/* End of 'UTSF Layout HOME:  Top menu + 1 column' */

