/*
CSS for Upstate ATV Site
*/

body {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  background-color: #e2edff;
  line-height: 150%;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

h1{
  color: white;
  padding-top: 2em;
  padding-bottom: .2em;
  padding-left: .4em;
  margin: 0;
  background: navy url(gallery/Ride3.jpg) repeat-y right; 
}

h2 {
  color: navy;
  font-size: 130%;
  font-weight: normal;
  padding-top: 15px; 
 }

/* used on Bylaws  */
h4 {
  color: navy;
  font-size: 100%;
  font-weight: bold;
  padding-top: 5px;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ordered list */
ol {
  margin-top: 3px;
}

#ol1 li {
  list-style-type: decimal;
}

#ol2 li {
  list-style-type: lower-alpha;
}

/* unordered list */
ul {
  margin-top: 3px;
}

li {
  font-size: small;
  color: navy;
  list-style-type: none;
}

#ul1 li {
  list-style-type: disc;
}

/* definition list */
dl {
  margin-top: 3px;
}

dt, dd {
  font-size: small;
  color: navy;
  list-style-type: none;
}

p {
  font-size: small;
  color: navy;
  margin: 5px;
}

/* Used on the Home page: Last Updated line and Bylaws page */
.p1 {
  font-size: small;
  font-style: italic;
  line-height: 100%;
  padding-top: 15px;
}

/* Used on the About Us page  */
.p2:first-letter { 
  font-size: 2em; float: left;
} 


#tagline p{
  font-style: italic;
  font-family: Georgia, Times, serif; 
  background-color: #bed8f3;
  border-top: 3px solid #7da5d8;
  border-bottom: 3px solid #7da5d8;
  padding-top: .2em;
  padding-bottom: .2em;
  padding-left: .8em;
  margin: 0;
  background: #bed8f3 url(gallery/tagline-fade.jpg) repeat-y right bottom;  
 }

#navigation {
  width: 180px;
  background-color: #7da5d8;
  padding-top: .6em;
}

a {
  font-weight: bold;
  font-size: small;
}

a:link {
  color: #591c58;
}
a.one:link {
  color: red;
}

a:visited {
  color: navy;
}
a.one:visited {
  color: blue;
}

a:hover {
  text-decoration: none;
  color: white;
  background-color: navy;
}
a.one:hover {
  text-decoration: none;
  color: white;
  background-color: red;
}

a:active {
  color: aqua;
  background-color: navy;
}
a.one:active {
  color: yellow;
  background-color: red;
}

.fun {
  color: #C90FF0;
  font-size: small;
  font-weight: bold;
  font-family: Georgia, Times, serif;
  letter-spacing: 0.03em;
}

/* Upstate ATV logo */
.feature {
  float: right;
  margin: 10px;
  width: 150px;
  height: 125px;
}

/* Stop Sign */
.feature2 {
  float: left;
  margin: 10px;
} 


table.events {
  border-collapse: collapse;
}

table.events th, table.events td {
  border: 1px solid #2966a3;
}

table.events th {
  font-size: small;
  text-align: center;
  background: #2966a3;
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2px;
  padding-right: 2px;
}

table.events td {
  padding: 4px;
  font-size: small;
  background: #e2edff url(gallery/td.jpg) repeat-x top;
}

table.events caption{
  color: #000066;
  font-size: small;
  text-align: left;
  padding-bottom: 5px;
  font-weight: bold;
}


/*
This section deals with the position of items on the screen. I have used a 
mixture of relative and absolute positioning for the various items. 
*/

#navigation, #bodycontent, #bodycontent1, #header {
  position: absolute;
}

/* can change left to 137px also */
#navigation, #bodycontent, #bodycontent1 {
  top: 8.54em;
}

/* can change left to 200px also */
#bodycontent {
  left: 12em;
}

#bodycontent1 {
  left: 4em;
}

#header {
  width: 100%; 
  top: 3px;
  border-top: 3px solid #7da5d8;
}