/* CSS Document */

html, body {margin: 0; padding: 0; border: 0;}

body {
color: #000000; 
background: #FFFFFF url('http://www.andejohnston.com/images/metalbg.jpg'); 
font-family: verdana, sans-serif; 
font-size: 10px; 
text-align: center;
margin: 32px 0px 0px 10px;  /* page margins top, right, bottom, left */
}

h2 {font-size: 14px; font-weight: bold; text-align: left; padding: 5px;}

h3 {font-size: 12px; font-weight: bold; text-align: left; padding: 5px;}

.clear { clear: both; }

.alignright {margin-top: 0; text-align: right;}

.small {font-size: 10px;}


.wrapper {
margin: 0 auto;
width: 665px;
text-align: left;
background: #FFFFFF;   /* Center Column Color */
border: 2px solid #000000;
}

/*** Below is the Tan hack, needed because the decorative side borders (thin black) on 
.wrapper. It fixes the box model of IE5.x/win, making it display the same as other browsers. ***/

* html .wrapper {
width: 668px; 
w\idth: 665px; 
}

.outer {
border-left: 200px solid #DCDCDC;  /* Left Column Color */
border-right: 175px solid #DCDCDC;    /* Right Column Color */
background: url('http://www.andejohnston.com/images/blackline.gif') 100% 0 repeat-y;
}
/*** These are the visible side col BG's. The image BG is needed to replace a side border
on div.inner, which can't be used because of problems in Mozilla. The image substitutes 
for the thin black divider between the right green col and the center col. If the black divider
is not wanted, the BG image may be removed. The Tan hack below feeds a IE a different 
BG location, due to a BG placement variation. 
***/

* html .outer {
background:  url('http://www.andejohnston.com/images/blackline.gif') 485px 0 repeat-y;
}

.inner {
margin-left: -2px; /*** This fixes a small overlap problem in IE6. ***/
width: 468px; /*** This width is for non-IE browsers. Mozilla makes this necessary. ***/
border: 2px solid #000000;
border-width: 0 0 0 2px;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout. It blows 
my mind that all this hacking is being caused by the mighty Gecko engine! (shakes head ruefully)
***/

* html .inner {
width: 100%;
}

.float-wrap {
float: left;
width: 487px;
margin-left: -200px;       /*** Same length as left column width ***/
}

/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/

.left {
float: left;
width: 197px;
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
}

.right {
float: right; 
width: 175px;
position: relative; /*** IE needs this or the contents won't show outside the parent container. ***/
}

* html .right {
margin: 0 -175px 0 0; /*** IE gets this margin. ***/
}

.center {
float: right;
width: 287px;   /* controls center collumn width */
}

.wide {
background-color: #068CFF;    /* header and footer color */
width: 100%; 
border: 2px solid #000000;
}

.wide p {padding: 5px;}

.top {
height: 35px;
border-width: 0 0 2px;
}

.bottom {
height: 50px;
border-width: 2px 0 0;
}

/* Mozilla bug fixes */
html>body .inner, html>body .float-wrap {
border-bottom: 1px solid transparent;
}