@charset "UTF-8";


/***********************************
          LAYOUT STYLES
***********************************/

body  {
	background: #333;
	margin: 0;
	padding: 0;
	text-align: center; /* centers the container in IE 5* browsers */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
#container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* overrides the text-align: center on the body element. */
	background-color: #FFF;
	/*following styles set faux column, keeping colored area same length as longest column on page*/
	background-image: url(../images/fauxColumnBack.gif); 
	background-repeat: repeat-y;
} 
#header {
	background-image: url(../images/header.gif);
	height: 125px;
	text-indent: -1000px;
} 
#header h1 {
	margin: 0; /* prevent margin collapse */
}
#navBar {
	float: left; /* since this element is floated, a width must be given */
	width: 185px;
	padding: 5px 0px 0px 5px;
}
#sidebar {
	float: right;
	width: 190px;
	padding: 5px 5px 0px 0px;
}
#samples {
	margin-top: 5px;
	margin-bottom: 5px;
}
#mainContent {
	background-color: #E9E9E9;
	margin-top: 0;
	margin-right: 205px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 20px;
} 
#footer {
	border-top: thin dotted #999;
	margin-top: 15px;
} 

/***** STANDARD FLOAT ELEMENTS *****/

.fltrt { /* float an element right on page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* float an element left on page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* 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;
}

/***********************************
        PRESENTATION STYLES
***********************************/

/***** Note: left margin set in header styles to match #contentBackground p *****/
/***** h tags in serif face to coordinate with font in header graphic *****/
h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.5em;
	font-weight: bold;
	color: #069;
}
h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.3em;
	font-weight: bold;
	color: #069;
	font-style: italic;
}
h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #333;
	margin-bottom: 0;
}
h4 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #333;
	font-style: italic;
	margin-bottom: 0;
}
p {
	font-size: 0.9em;
	line-height: 1.3em;
	color: #333;
	text-align: left;
}
#mainContent p, h1 {
	margin: 0px;/* prevent margin collapse */
}
#contactInfo p {
	font-size: 0.8em;
	line-height: 1.2em;
	text-align: right;
	padding-top: 80px;
}
#sidebar p {
	padding-right: 10px;
}
#footer p {
	margin: 0; /* prevent margin collapse */
	padding: 10px 0 0 0;
	text-align: center;
	line-height: 1.5em;
	color: #066699;
}
li {
	list-style-image: url(../images/bullet.gif);
	font-size: 0.9em;
	line-height: 1.4em;
	color: #333;
	list-style-type: disc;
}

/***** MISC CLASSES *****/

.bottomPadding {
	padding-bottom: 15px; /* adjust spacing on type elements with 0 margins */ 
}
#footer .copyright {
	font-size: 0.75em;
	color: #333333;
}

/***** NAVIGATION *****/
a:link {
	text-decoration: none;
	color: #069;
}
a:visited {
	text-decoration: none;
	color: #600;
}
a:hover {
	color: #600;
	text-decoration: underline;
}

/***** NAVIGATION ROLLOVERS *****/
/* Graphics use "Pixy" technique, repositioning for rollover states. Use current class on respective pages to display graphic indicating current page active with default mouse */
#navHome a {
	background: url(../images/navHome.gif) no-repeat;
	height: 30px;
	display: block;
	border-bottom: 2px solid #333;
}
#navHome a:hover {
	background-position: -180px 0px;
}
#navHome a.current {
	background-position: -360px 0px;
	cursor: default;  
}
#navDevel a {
	background-image: url(../images/navDevel.gif);
	height: 30px;
	display: block;
	border-bottom: 2px solid #333;
}
#navDevel a:hover {
	background-position: -180px 0px;
}
#navDevel a.current {
	background-position: -360px 0px;
	cursor: default;  
}
#navServices a {
	background-image: url(../images/navServices.gif);
	height: 30px;
	display: block;
	border-bottom: 2px solid #333;
}
#navServices a:hover {
	background-position: -180px 0px;
}
#navServices a.current {
	background-position: -360px 0px;
	cursor: default;  
}
#navAbout a {
	background-image: url(../images/navAbout.gif);
	height: 30px;
	display: block;
	border-bottom: 2px solid #333;
}
#navAbout a:hover {
	background-position: -180px 0px;
}
#navAbout a.current {
	background-position: -360px 0px;
	cursor: default;  
}
#navPortfolio a {
	background-image: url(../images/navPortfolio.gif);
	height: 30px;
	display: block;
	border-bottom: 2px solid #333;
}
#navPortfolio a:hover {
	background-position: -180px 0px;
}
#navPortfolio a.current {
	background-position: -360px 0px;
	cursor: default;  
}
#navContact a {
	background-image: url(../images/navContact.gif);
	height: 30px;
	display: block;
	border-bottom: 2px solid #333;
}
#navContact a:hover {
	background-position: -180px 0px;
}
#navContact a.current {
	background-position: -360px 0px;
	cursor: default;  
}
#navHome,#navDevel,#navServices,#navAbout,#navPortfolio,#navContact p {
	text-indent: -1000px; /* move text links off-screen */ 
}
#samples table {
	font-size: 0.85em;
	font-style: italic;
	line-height: 1.4em;
	font-weight: normal;
}
#samples td {
	text-align: center;
}
