/* sidebar */
.side { color: #FFFCF2; position: relative; margin: 10px; }
/* main */
.main { color: #674727; }
/* style for headlines without a line break */
.notice { text-align: center; font-size: large; font-weight: bold; }
a.notice:link {color: #674727; text-decoration: none; font-size: large; font-weight: bold;}
A.notice:visited {color: #674727; text-decoration: none; font-size: large; font-weight: bold;}
A.notice:active {color: #674727; text-decoration: none; font-size: large; font-weight: bold;}
A.notice:hover {color: #674727; font-size: large; font-weight: bold;}

body {color: #674727; background-color: #99A8AF;}

/* default links (used in navigation bar) */
A:link {color: #FFFCF2; font-size: small;}
A:visited {color: #FFFCF2; font-size: small;}
A:active {color: #FFFCF2; font-size: small;}
A:hover {color: white; font-size: small;}

/* links for light background */
A.light:link {color: #674727; font-size: small;}
A.light:visited {color: #674727; font-size: small;}
A.light:active {color: #674727; font-size: small;}
A.light:hover {color: #99A8AF; font-size: small;}

/* full size for light background */
A.regular:link {color: #674727; font-size: medium;}
A.regular:visited {color: #674727; font-size: medium;}
A.regular:active {color: #674727; font-size: medium;}
A.regular:hover {color: #99A8AF; font-size: medium;}

/*creates shadow around pictures*/
.img-shadow {
float:right;
background: url(dropShadow.jpg) no-repeat bottom right;
}
.img-shadow img {
display: block; /* IE won't do well without this */
position: relative; /* Make the shadow's position relative to its image */
padding: 5px; /*padding-bottom: 50px; This creates a border around the image */
background-color: #FFFCF2; /* Background color of the border created by the padding */
border: 1px solid tan; /* A 1 pixel greyish border is applied to the white border created by the padding */
margin: -6px 6px 6px -6px; /* Offset the image by certain pixels to reveal the shadow, as the shadows are 6 pixels wide, offset it by that amount to get a perfect shadow */
}