/*This is the design11 for Mark style sheet*/

body {
background-color: #000000;
color: #ffffff;
font-family: Frutiger, sans-serif;
font-size: 1em;
font-weight: 100;
margin: 0em;
}

#container {
position: absolute; top: 30px; left: 30px;
height: 566px; 
width: 850px; 
background-color: #6d6e71;
}

#content {
position: absolute; top: 26px; left: 26px;
height: 514px; 
width: 798px; 
border: 1px #ffffff solid;
}

/*This positions 'insideheader' relative to where it would have been (a minus value would push it up)*/
#insideheader {
position: relative; top: 3px; left: 19px;
color: #8c1316;
height: 30px; 
width: 285px;
background-image: url(images/picheader.jpg);
}

#indexleft {
position: absolute; top: 60px; left: 8px;
}

#indexright {
position: absolute; top: 64px; left: 430px;
}

#insidebottom {
position: absolute; top: 430px; left: 19px;  right: 460px;
z-index: 3;
}

#insidebottom2 {
position: absolute; top: 463px; left: 19px;  right: 460px;
font-size:75%
}

#insidemid {
position: absolute; top: 80px; left: 17px; right: 500px;
z-index: 3;
}

#insideright {
position: absolute; top: 83px; left: 365px;
}

#topmenu {
position: absolute; top: 6px; left: 430px;
display: inline; 
}

#linksleft {
position: absolute; top: 64px; left: 19px;
}

/*This makes anchor elements of 'insidebottom' sit on the same line (to start each on a new line use 'block' or use ul and li in the html)*/
#insidebottom a {display: inline}

/*This colours the anchors and turns off the underline*/
a:link {color: #ffffff; text-decoration: none;}

/*This briefly colours the anchor background when clicked on*/
a:active {background-color: #3cc7f0; }

/*This is the color & style of a visited link, only here to accomodate Safari online which made them purple (NOTE hover instruction needs to FOLLOW this one so that visited links hover also)*/
a:visited {color: #ffffff; text-decoration: none; }

/*This colours the anchors when the user hovers*/
a:hover {color: #8c1316;}

/*This resizes h2 relative to as set in body (which here was 1 em)*/
h2 {font-size:140%}

/*This resizes any copy in paragraphs relative to as set in body*/
p {font-size: 90%;}