﻿/* CSS for Jo Land Website */

/* BASICS */

* {
margin: 0;
padding: 0;
}

html {
text-align: center;
}

body {
width: 100%;
height: 100%;
background-color: #bcc;
}

#container {
position: relative;
margin: 0 auto;
width: 940px;
height: 750px;
background-color: #dee;
}

/* HEADINGS */

#header {
position: absolute;
top: 130px;
left: 520px;
width: 300px;
height: 100px;
}


/* IMAGES */

#titleimage {
position: absolute;
top: 70px;
left: 75px;
width: 333px;
height: 500px;
border: 3px solid #fff;
}


/* LISTS */

ul {
list-style-type: none;
}

/* NAVIGATION */

#navbar {
position: relative;
width: 800px;
height: 40px;
margin: 0 0 0 72px;
}

#navhome, #navbiog, #navpots, #navprocess, #navprices, #navevents, #navcontact, #navlinks, #navarchive {
position: absolute;
top: 5px;
height: 25px;
text-align: center;
}

#navhome {
left: 0;
width: 50px;
}

#navbiog {
width: 70px;
left: 95px;
}

#navpots {
width: 30px;
left: 210px;
}

#navprocess {
width: 60px;
left: 285px;
}

#navprices {
width: 50px;
left: 390px;
}

#navevents {
width: 50px;
left: 485px;
}

#navcontact {
width: 50px;
left: 580px;
}

#navlinks {
left: 675px;
width: 40px;
}

#navarchive {
left: 750px;
width: 50px;
}

#navhome ul, #navbiog ul, #navpots ul, #navprocess ul, #navprices ul, #navevents ul, #navcontact ul, #navlinks ul, #navarchive ul {
position: relative;
font-family: "Microsoft Sans Serif", sans-serif;
font-size: .8em;
height: 25px;
}

#navhome li, #navbiog li, #navpots li, #navprocess li, #navprices li, #navevents li, #navcontact li, #navlinks li, #navarchive li  {
display: inline;
width: 80px;
height: 50px;
}


/* LINKS */

a:link, a:visited {
color: #466;
text-decoration: none;
}

li.selected a:link {
color: #233;
font-weight: bold;
}

li.selected a:visited {
color: #233;
font-weight: bold;
}

a:hover {
color: #799;
text-decoration: none;
}

a:active {
color: #f00;
}

/* COPYRIGHT STATEMENT */

#copyright {
position: absolute;
top: 590px;
left: 0;
width: 940px;
margin: 20px auto 10px auto;
}

#copyright p {
font-family: "Microsoft Sans Serif", sans-serif;
font-size: .65em;
}


