/* Desktop, fixed width CSS */

/* Reset */
* {
	margin: 0;
	padding: 0;
}

/**
 * Color, typography and basic layout
 * Colors:
 * - #CCCCFF -> light blue (background)
 * - #000066 -> Dark blue (body text, rules)
 * - #660000 -> Marroon (link text)
 * - #00A3A3 -> Medium-light blue (navigation and footer background)
 */
body {
	background: #000000;
	color: #FFFFFF;
	font: Verdana, Georgia, "Times New Roman", serif;
	background-image: url('webpagebackground.jpg');
}
a, a:visited {
  color: #D3D3D3;
}
p {
  margin: 0.5em 0.25em;
  font-size: 1.20em;
}
h1 {
  font-size: 2.5em;
	border: solid #FFFFFF;
	border-width: 2px 0;
	padding: 0.25em;
  text-align: center;
  font-variant: small-caps;
  font-family: 'Audiowide', cursive;
}
h2 {
  text-align: center;
  font-variant: small-caps;
  font-family: 'Audiowide', cursive;
  font-size: 1.60em;
}
dl {
  margin: 0 0.5em;
}
dt {
  font-weight: bold;
  margin: 0.5em 1em 0.5em 0;
  border-bottom: 2px dashed #abb7ba;
  font-size:1.15em;
}
.intro {
  font-size: 1.35em;
  line-height: 1.3em;
  text-align: justify;
  margin: 0.5em;
  font-weight: bold;
}
.navigation {
  
  border-bottom: 2px solid #000066;
  border-top:2px solid #000066;
}
.navigation ul li {
  text-align: center;
  display: block;
  float: left;
  padding: 0.25em 0;
}
.navigation li a {
  color: #f9f3e9;
  font-variant: small-caps;
  text-decoration: none;
}
.header p {
  margin-left: -1000px;
}
#points ul {
  list-style-image: url('images/point.png');
  margin: 0.5em 0 1em 0.5em;
  padding-left: 1em;
}
#points ul li {
  margin: 0.5em 1em;
}

/* Structure */
body, .header, .navigation, .footer {
  width: 960px;
}
.header, .navigation, .footer {
  clear: both;
}
.column {
  margin: 10px 10px 0 0;
}
.navigation {
  min-height: 50px;
}
.navigation ul li {
  width: 320px; /* 960/3 */
}
.header {
  background:url(images/bg.jpg);
  height: 92px;
}
#visit {
  width: 320px;
  float: left;
}
#main {
  margin: 10px 0 0 340px;
  width: 620px;
}