/* CSS Document */

/* General Page Elements */
body {
	margin: 0;
	padding:0;	
	background-color:#D9E2CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}

p, li, address {
	font-size:0.8em;
}

h2 {
	font-size:1.1em;
}

h3 {
	font-size:1.0em;
	margin-top:5px
	margin-bottom:5px;
}

h4 {
	font-size: 0.8em;
	margin-bottom:3px;
	margin-top: 3px;
}

ul {
	margin-top:0px;
	margin-bottom: 5px;
}

address {
	font-style: normal;
	margin: 0px 10px 20px;
}

.spacer {
	clear:both;
}

span.iqeTitle {
	font-weight:bold;
}

.statement:first-letter {
	font-size:1.4em;
	/*
	vertical-align:top;
	text-align:center;
	float:left;
	padding: 0px 4px 0px 4px;*/
	font-weight:bold;
}

#page {
	margin:0 auto 0 auto;
	padding:0;
	width:780px;
	background-color: #A3BC7D;
	border-left: 1px solid black;
	border-right: 1px solid black;
}

/**
 * sectionHeader
 *
 * This is the section containing the title, and global navigation links
 */
#sectionHeader {
	display:block;
	position:relative;
	background: #FFED9F url(../images/title.png) no-repeat;
	background-color: ;
	margin:0;
	padding:0;
	height:95px;
	border: 0px;
}

#sectionHeader h1 {
	display:none;
	margin:0;
	padding:0;
}

#sectionHeader ul {
	text-align:right;
	position:absolute;
	bottom: 0;
	right: 0;
	margin: 0 0 5px 0;
	padding:0;	
}

#sectionHeader ul li {
	display:inline;
	margin:0 10px 0 10px;
}

#sectionHeader a {
	font-size: 0.9em;
}

/**
 * sectionNavigation
 *
 * This is the section for the navigation menu
 */
#sectionNavigation {

}

/*
#sectionNavigation ul {	
	display: block;
	margin: 0;
	padding: 0;
}

#sectionNavigation ul li {
	display: inline;
	list-style-type:none;
	margin: 0 0 0 0;
	padding: 0;
	
}
*/

    /* This is the part for the CSS menu - these settings are for a horizontal menu */
	#sectionNavigation {  /*set some default link text sizes */
		background-color: #69AA60;
		margin: 0;
		padding: 0;
		/*padding: 0 20px 0 20px;*/
		font-size: 0.7em;
	}
	
	#dmenu a:link, #dmenu a:visited, #dmenu a:active {
		color:#000000;
		text-decoration: none;
		font-weight: bold;
	}
	
	#dmenu a:hover {
		font-decoration: underline;
	}
	
    #dmenu{                         /* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        position: static;           /* need this so that the z-index stuff works correctly */
        background-color: #999;     /* the default background color within the main menu container */
        color: #ffffff;                /* the default font color (not links) within the main menu container */
        z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
            /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
    }
    #dmenu li{                      /* top-level menu element */
		font-size:1em;
        list-style-type: none;      /* disable the display of the list item bullets */
        float: left;                /* this is to allow for the horizontal main menu */
        border-top: black solid 1px;    /* border for each of the main menu items */
		border-bottom: black solid 1px;
		border-right: black solid 1px;
        background-color: #999;     /* main menu item background color */
        color: #000000;                /* main menu item font color (not links) */
        margin: 0px;                /* spacing between main menu items */
        padding: 0px;               /* padding within main menu items */
        width: 120px;               /* the width of each main menu item */
		background: url(../images/menu_bg.png) repeat-x center left;
        display: block;
    }
    #dmenu li a{                    /* top-level menu element links */
        text-align: center;         /* text alignment in main menu item links */
        width: 120px;               /* set this to (#dmenu li -> width) - (2 * (#dmenu li -> padding)) */
        display: block;
    }
    #dmenu li ul{                   /* sub-menu list container */
        position: absolute;         /* this is so that it doesn't push that page content around on hover */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        width: 180px;               /* the width of the sub menus */
        border: 1px solid black;    /* sub-menu borders */
        background-color: transparent;  /* sub-menu default background color */
        color: #fff;                /* sub-menu default font color (not links) */
		font-size: 1em;
    }
    #dmenu li ul li{                /* sub-menu element links */
        background-color: #AAA;  /* default background color for sub-menu container */
        color: #ffffff;                /* default font color (not links) for sub-menu container */
        border: none;               /* sub-menu item border settings */
        margin: 0px;                /* spacing between sub-menu containers */
        padding: 0;       /* This is for padding between menu items in the drop-downs */
        width: inherit;               /* (padding*2 - 5) must be subtracted from #dmenu li ul -> width and set for this one, or borders won't display properly...
                                       not sure where the other 5 pixels come from... Maybe it's actually padding*4 instead? I'll find out some other time */
		background-image:none;
		filter:alpha(opacity=90);
		-moz-opacity:0.9;
		opacity: 0.9;
    }
	
	#dmenu li ul li * {	/* needed for IE */
		position: relative;
	}
	
    #dmenu li ul li a{
		text-align:left;
		padding:2px 0 2px 5px;
        display: block;
        width: 175px;               /* should be set to the same value as #dmenu li ul li -> width */
    }
    #dmenu li ul li a:hover{
		filter:alpha(opacity=90);
		-moz-opacity:0.9;
		opacity: 0.9;
        background: #666;
        color: #ffffff;
    }
    #dmenu li:hover ul, #dmenu li.over ul{ /* lists nested under hovered list items */
        display: block;
    }

/**
 * sectionSummary
 *
 * This is the section for the summary.  This typically contains an image and possibly some other text
 */
#sectionSummary {
	background-color: #758C6E;
	margin:0;
	padding:0;
}

.contentSummary {
	margin: 0;
	background-color: #758C6E;
	color:#FFFFFF;
	height: auto;
	width: 775px;
}

.contentSummary br {
	clear: both;
}

.imageSummary {
	float:left;
}

.contentSummaryText {
	background-color: #758C6E;
	float:left;
	margin:0;
	padding: 15px;
	width: 280px;
}

.contentSummaryText h2 {
	margin: 0 0 0 0;
	padding: 0;
	font-size: 1.3em;
}

.contentSummaryText ul {
	margin: 0 0 0 30px;
	padding: 0;
}

.contentSummaryText li {
	margin: 5px 5px 0px 5px;
	padding: 0;
}

.contentSummaryText .title {
	display:block;
	margin: 0;
	padding: 0;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration:inherit;
}

.contentSummaryText .extra {
	display:block;
	margin: 0 0 0 10px;
	padding: 0;
	clear:left;
	font-size: 1.2em;
	text-decoration:inherit;
}

.contentSummaryText a {
	color:#FFFFFF;
	text-decoration:none;
}

.contentSummaryText a:visted {
	color:#FFFFFF;
	text-decoration:none;
}

.contentSummaryText a:hover, .contentSummaryText a:hover .title, .contentSummaryText a:hover .extra,  {
	color:#FFFFFF;
	text-decoration:underline;
}


/**
 * sectionContent
 *
 * This is the section for the content.  Usually the main content of the page goes in here.
 */
#sectionContent {
	background-color: #A3BC7D;
	margin: 0;
	padding:0 0 20px 40px;
	border-bottom: 2px solid #3F663A;
}

.contentMain {
	margin:0;
	width:600px;
	padding: 10px 10px 10px 10px;
}



.contentExtra {
	border: 1px solid #000000;
	display:block;
	float:right;
	width:230px;
	margin: 10px 10px 10px 10px;
	padding: 2px 10px 10px 10px;
	background-color:#DEDB93;
}

.contentExtra p, .contentExtra ul {
	margin-top: 0;
	padding-top:0;
}

.contentExtra h3 {
	margin-bottom: 0;
	font-size: 1em;
}

.thumbs {
}

.imageThumb {
	border:1px solid black;
	margin:10px;
	padding: 1px;
	float:left;
}

ul.projectList li {
	list-style-type:none;
	margin:10px 0;
}

ul.projectList .title {
	display:block;
	margin: 0;
	padding: 0;
	font-weight: bold;
	text-decoration:inherit;
}

ul.projectList .extra {
	display:block;
	margin: 0 0 0 20px;
	padding: 0;
	clear:left;
	text-decoration:inherit;
}

ul.clientList li {
	list-style-type:none;
	margin-bottom:10px;
}

ul.clientList li span.client {
	display:block;
	font-size:1.2em;
	font-weight:bold;
}

ul.clientList li span.location{
	display:block;
	clear:both;
	font-weight:bold;
	margin:2px 10px 0px 40px;
}

ul.clientList li span.description {
	display:block;
	margin:2px 0px 3px 70px;
	list-style-type:disc;
}

/**
 * sectionFooter
 *
 * This is the section for the footer.  Copyright, credits, and various site links go here.
 */
#sectionFooter {
	margin:0;
	padding: 0 0 0 20px;
	background-color: #FFED9F;
	border-top: 3px solid #69AA60;
	border-bottom: 1px solid #000000;
}

#sectionFooter ul {
	margin:0;
	padding: 0;
}

#sectionFooter ul li {
	display: inline;
	margin: 0 10px 0 0;
	padding: 0;
	font-size: 0.7em;
}

.copyright {
	font-size:0.6em;
	padding:0;
	margin:0;
}

