@charset "UTF-8";
* {
	margin:0;
	padding:0;
}
img {
		border:none;
}
body  {
	background: url(../images/bg.jpg) no-repeat top left #000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFF;
}
.twoColFixRtHdr #container { 
	width: 700px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */	
	background:url(../images/containerBg.png) repeat;
	margin-left: 31px;
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #portfolio {
	margin:0;
} 
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: none; /* the background color will be displayed for the length of the content in the column, but no further */
	background:none;
	padding: 20px 15px 15px 15px;
	margin: 0 0 30px 20px;
}
.twoColFixRtHdr #sidebar1 a, a:hover{
	text-decoration:none;
	text-align:center;
}
.twoColFixRtHdr #sidebar1 img{
	border:none;
  	display: block;
  	margin-left: auto;
  	margin-right: auto;
	margin-bottom: 15px;
}
.twoColFixRtHdr #mainContent { 
	margin:0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding:20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border:none;
	background:none;
} 
.twoColFixRtHdr #footer { 
	padding: 0 20px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:none; 
	border:1px solid #000;
	margin: 0;
} 
.twoColFixRtHdr #footer p {
	font-size: 9px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align:center;
}
#footer a{
	text-align:center;
	font-size: 9px;
	color:#CCC;
	margin-top:20px;
	text-decoration: underline;
}
#bottomFlourish {
	position: fixed;
	background:no-repeat url(../images/bottomFlourish.png);
	right:0;
	bottom:0;
	width:155px;
	height:213px;
	z-index: -100;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}



/* -------------------------------------------------------------- 
   
   TYPOGRAPHY
  
-------------------------------------------------------------- */

body { font-size: 85%;}


/* Default fonts and colors. */
body,h1,h2,h3,h4,h5,h6,p,ul,ol,dl,input,textarea { font-family: Helvetica, Arial, sans-serif; }


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: bold; }

h1 { font-size: 1.5em; line-height: 1; margin-bottom: 0.5em; color:#F00; }
h2 { font-size: 1em; margin-bottom: 0.75em; color:#F90;}
h3 { font-size: .85em; line-height: 1; margin-bottom: 1em;}
h4 { font-size: .75em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: .75em; margin-bottom: 1.5em; }
h6 { font-size: .75em; }


/* Text elements
-------------------------------------------------------------- */

p { margin: 0 0 1.5em; line-height:1.25em; }

ul, ol { margin: 0 1.5em 1.5em 1.5em; }
ul { list-style-type: circle; }
ol { list-style-type: decimal; }

dl { margin: 0 0 1.5em 0; }
dl dt { font-weight: bold; }
dt {margin-top: 2em;}
dl dd { margin-left: 1.5em;}
dd {margin-top: .5em;font-style:italic;}

abbr, acronym { border-bottom: 1px dotted #000; }
address { margin-top: 1.5em; font-style: italic; }
del { color: #000; }

a { color:#CCC; text-decoration:none;text-decoration: underline;}
a:hover { text-decoration: underline;color: #FFFFFF;}

blockquote { margin: 1.5em; }
strong { font-weight: bold; }
em, dfn { font-style: italic; }
dfn { font-weight: bold; }
pre, code { margin: 1.5em 0; white-space: pre; }
pre, code, tt { font: 1em monospace; line-height: 1.5; } 
tt { display: block; margin: 1.5em 0; line-height: 1.5; }

/* Some default classes
-------------------------------------------------------------- */

.small { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.quiet { color: #999; }

.hide { display: none; }
.highlight { background: #ffc; }

.top { margin-top: 0; padding-top: 0; }
.bottom { margin-bottom: 0; padding-bottom: 0; }


