/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */

/* >>>>>>>>>>>>>>>> BASIC STYLES <<<<<<<<<<<<<<<<<<<<< */
body {
	background:#7ca0c2;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size:62.5%;
	margin: 0;
	padding: 0;
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
p, input, blockquote, ul {
	font-size:1.2em;
	margin:0;
	line-height:1.5;
	margin-bottom: 1.2em;
}
li {
	margin-bottom:0;
	margin-left:-10px;
}
ul ul {
	font-size:100%  /*fixes the problem of nested list text size (each nest level inherits the calculated em size as its new "1em") */
}
img {
	border:0;
}
h1 {
	color: #006699;
	font-size: 1.6em;
	font-weight: bold;
}
h2 {
	color: #006699;
	font-size: 1.3em;
	margin-bottom:0;
	font-weight: bold;
	text-transform:uppercase;
}
a, a:link {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
/*	text-decoration: underline;*/
}

/* >>>>>>>>>>>>>>>> MAIN DIVS  <<<<<<<<<<<<<<<<<<<<< */
#outerWrapper {
	background-image:url(../images/bg.jpg);
	background-repeat:repeat-y;
	background-position:left top;
	margin: 0 auto;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 680px;
}
#header {
	/*  background-color: #ddd;*/
/*  border-bottom: solid 1px #666;*/ /* Sets the bottom border properties for an element using shorthand notation */
  padding: 10px 10px 30px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	float:left;
	width:660px;  /*total width of 680 minus 10px padding each side*/
}
#header img {
	float:left;
}
#content {
	margin: 0 0 0 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px;
}

#content.splash img {
margin-left:-230px;
margin-top:-25px;
}
#content.portfolio p {
line-height:1.4;
}
#content.about p,
#content.about li {
padding-right:15px;
}
#sidebar {
	margin-top:2.4em; /* H1 line height (in this case, 1.6em @ 1.5 line height = 2.4em), so lines up with top of main content*/
	float: left;
	padding: 10px;
	width: 200px;
}
#footer {
	padding: 10px 0;
}

/* >>>>>>>>>>>>>>>> TOP MENU <<<<<<<<<<<<<<<<<<<<< */
ul.menu {
	list-style-type:none;
	background:#006699;
	float:right;
	padding:0;
	margin:0;
	margin-top:75px;  /*to push down so menu bottom aligns with picture bottom*/
	width:440px;  /*header=630, minus photo/sidebar=230 (incl padding)*/
}
ul.menu li {
	display:inline;
}
ul.menu li a {
	padding:3px 21px;
	border-right:1px white solid;
	display:block;
	color:#fff;
	float:left;
}
ul.splash {
	width:353px;
	margin-top:112px;
	padding-left:7px;
}

ul.menu li a:hover {
	color: #ACACAC;
}
ul.menu li a.menuLast {
	border:0;
}

/* >>>>>>>>>>>>>>>> FOOTER: BOTTOM MENU, COPYRIGHT AREA <<<<<<<<<<<<<<<<<<<<< */

#footer ul.menu {
	margin:0 auto;
	width:100%;
	text-align:center;
}
#footer ul.menu li a.menuFirst {
	padding-left:140px;
}
#copyright {
	background:#7ca0c2;
}
#copyright p {
	color:white;
	text-align:center;
	font-size:1em;
	padding-top:10px;
}
#copyright a {
	color:white;
	font-weight:normal;
}
#copyright a:hover {
	color: #4b4c4d;
}
/*#copyright span.bullet {
color:#4b4c4d;
}*/

/* >>>>>>>>>>>>>>>> SPLASH PAGE STYLES <<<<<<<<<<<<<<<<<<<<< */
/*#splash #outerWrapper {
	width:680px;
}*/
/*#splash #content {
	margin:10px auto; 
	padding:0;
}*/
/*#splash h1 {
	float:right;
	margin-right:150px;
	margin-bottom:-25px;
	}*/

/*#splash h1 a {
	color:#3d7aa7; 
}*/
/*#splashTable {
	margin-left:-220px;
}
#splashTable td {
	padding:0;
}*/

/* >>>>>>>>>>>>>>>> ABOUT PAGE STYLES <<<<<<<<<<<<<<<<<<<<< */

#andersen {
	float:left;
	text-align:center;
	margin-left:-200px;
	font-weight:bold;
	color:#006699;
}

/* >>>>>>>>>>>>>>>> PORTFOLIO PAGE STYLES <<<<<<<<<<<<<<<<<<<<< */

.houseTitle {
	font-weight:bold;
	color:#006699;
}
td {
	padding:5px;
	vertical-align:top;
}
td td {  /*to keep table-within-a-table from getting double padding*/
	padding:0;
}
.enlarge {
	text-align:right;
	font-size:1em;
	padding-right:0;
}
a .enlarge {
	color: #848585;
}
td a:hover span.enlarge {
	color: #006699;
}

/* >>>>>>>>>>>>>>>> UTILITY STYLES <<<<<<<<<<<<<<<<<<<<< */

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
.clearFloat {
	clear: left;
	display: block;
}
.pullLeft {
	margin-left:-230px;
}
