@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	background-color: #6A747E;
}
#container {
	width: 955px; /* this overrides the text-align: center on the body element. */
	margin-top: 36px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #f6f4e9;
	height: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	z-index: 2;
} 
#hometext {
	background-image: url(homeart/text-area.jpg);
	height: 300px;
	width: 469px;
	padding-top: 24px;
	padding-right: 56px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-repeat: no-repeat;
} 
#header {
	background-color: #DDDDDD;
	background-image: url(typical-art/cloud-header.gif);
	height: 57px;
	width: 715px;
	text-align: left;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0;
	background-repeat: no-repeat;
	padding-left: 240px;
} 

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebarleft {
	float: left; /* since this element is floated, a width must be given */
	width: 216px;
	background-color: #f6f4e9;
	background-image: url(typical-art/side-clouds.gif);
	background-position: top;
	background-repeat: no-repeat;
	padding-top: 24px;
	padding-right: 0px;
	padding-left: 0px;
	margin: 0px;
	height: 550px;
	clear:both;
}
#innersidebarleft {
	padding: 0px;
	margin-top: 72px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}
.sidebartext {
	font-family: verdana, geneva, arial, helvetica, sans-serif;
	font-size: 11px;
	line-height: 19px;
	margin-top: 0px;
	margin-right: 20px;
	margin-bottom: 6px;
	margin-left: 0px;
}
#sidebarright {
	width: 200px;
	float: right;
	margin: 0px;
	float:left;
	padding-top: 24px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#main3col {
	background-color:#F6F4E9;
	padding-right: 0;
	padding-bottom: 0;
	margin-left:24px;
	margin-top: 24px;
	margin-right: 200;
	margin-bottom: 0;
	padding-top:0px;
	float:left;
	width: 492px;
}

/*@mitchell - Below we give the #maincontent a width of 500px (this may need to be changed) and a margin of 240px.  The margin will push the div over enough for the navigation div that is floated left.
*/
#main2col {
	background-color:#F6F4E9;
	padding-bottom: 0;
	margin-left:240px;
	margin-top: 24px;
	margin-bottom: 0;
	padding-top:0px;
	width:694px;
	height: auto;
	padding-left: 0px;
	margin-right: 0px;
}
a:link {
	color: #C97900;
	text-decoration: none;
}
a:visited {
	color: #C97900;
	text-decoration: none;
}
a:hover {
	color: #3E669D;
	text-decoration: underline;
}
a:active {
	color: #C97900;
	text-decoration: none;
}

.sideswaplinks {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 13px;
	color: #444444;
	letter-spacing: 1px;
	margin-bottom: 12px;
	margin-top: 0px;
	margin-left:20px;
	line-height: 18px;	/*or you could do it this way*/
	/*margin:0 10px 12px 20px;*/
}

.bodytexthome {
	font-family: verdana, geneva, arial, helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #222222;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
}
.bodysmall {
	font-size: 11px;
	line-height: 16px;
	color: #444444;
	font-family: verdana, geneva, arial, helvetica, sans-serif;
}

.bodytextsans {
	font-family: verdana, geneva, arial, helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	color: #555555;
	font-weight: normal;
	margin-top: 0px;
	margin-right: 36px;
	margin-bottom: 8px;
	margin-left: 0px;
	padding: 0px;
}
.bodytextserif {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: 20px;
	color: #555555;
	font-weight: normal;
	margin-bottom: 8px;
	margin-top: 0px;
	margin-right: 24px;
	margin-left: 0px;
}
h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	font-style: normal;
	font-weight: normal;
	color: #3E669D;
	line-height: 22px;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 24px;
	margin-left: 0px;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
	color: #555555;
	line-height: 19px;
	margin-bottom: 6px;
}
blockquote {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 9px;
	margin-left: 36px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
/*jared says I don't have to do this, below, but just to know about it*/
#sidebar-inner p{
  background-color:;
  margin-top:0px;
}

#sidebar-inner{
  background-color:;
}
.category {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #444444;
	margin-left: 20px;
	margin-top: 0px;
	margin-bottom: 12px;
	font-weight: bold;
}

.image_float_rt {
	float: right;
	margin-left: 12px;
	margin-bottom: 6px;
}
.image_float_left {
	float: left;
	margin-right: 12px;
	margin-bottom: 6px;
}


/*------------------------  Styles for Main Navigation -----------------------*/
#nav, #nav ul {
	padding:0;
	margin: 0;
	list-style: none;
	color:#FFFFFF;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:13px;
	letter-spacing: 1pt;
}

#nav{
	padding:35px 0 0;
}
	
#nav a {
	display: block;
	color:#FFFFFF;
}

#nav a:hover{
  text-decoration:none;
	color:#222222;
}

#nav li {
	float: left;
	color:#FFFFFF;
	margin-right:40px;
}

#nav li ul {
	position: absolute;
	width: 150px;
	left: -999em;
	background:#988E7A;
	padding-top:5px;
}

#nav li ul#portfolio, #nav li ul#portfolio li{
  width:140px;
}

#nav li ul#portfolio li a{
  width:122px;
}

#nav li ul#articles, #nav li ul#articles li{
  width:180px;
}

#nav li ul#articles li a{
  width:162px;
}

#nav li ul li a:hover{
  color:#222222;
	background:#F6B62D;
	text-decoration:none;
}

#nav li ul li a{
	padding:5px 9px;
}

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}
