body {
  font: Arial;
  background: url(images/background.gif) repeat;
  color: white;
  font: 12px helvetica, arial, sans;
}

/* customising text */

/* outlining elements used on all pages */

#wrapper {
  margin: 0 auto;
  background: black;
  width: 780px;
  border: 1px dashed #ccc;
}

#header{
  margin: 0 auto;
  width: 780px;
  height: 150px;
  background: url(images/finallogo.gif) top center no-repeat ;
}

#left-column {
  width: 120px;
  height: 450px;
  float: left;
  border-left: none;
}

#center-column {
  width: 538px;
  min-height: 450px;
  float:left;
}

#frontpageimage{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
  border: 1px dashed #ccc;
}

#right-column {
  margin: 0 auto;
  width: 120px;
  height: 450px;
  float: right;
}

#right-column img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px; 
  border: 1px dashed #ccc;
}

#footer {
  margin: 0 auto;
  width: 780px;
  height: 60px;
  clear: both;
  text-align: center;
}

a, a:visited{
  color: #777;
  text-decoration: none;
}

a:hover {
  color: red;
  text-decoration: underline;
}

/* Services Page Specifics */

h1 {
  font: 16px arial;
}

h2 {
  font: 14px arial;
}

/* Links specifics */

#links {
  width: 100%;
  text-align: center;
  
}

/* Gallery Page Specifics */

#gallery {
width: 100%;
margin: 0 auto;
border: none;
padding: 10px;
}

#gallery img {
  border: 1px dashed white;
  margin: 25px;
}

/* gold page specifics */

#center-column-goldstuff {
  width: 490px;
  min-height: 450px;
  padding-left: 50px;
  float:left;
}

#goldstuff {
  margin: 10px;
  padding: 30px;
  border: 1px dashed white;
}

/*  here comes the menus  */

ul {
  float: left;
  margin-left: 10px;
  padding-left: 0px;
  list-style: none;
  width: 100px; /* Width of Menu Items */
  border: 1px dashed #ccc;
	}

* html ul {
  margin-left: 5px;
}


ul li {
	position: relative;
	}

li ul {
	position: absolute;
	left: 89px; /* Set 1px less than menu width */
	top: 0;
  width: 210px; /* Width of Sub-Menu Items */
	display: none;
	}



/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border-bottom: 0;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
* html li ul { left: 95px; }
/* End */

ul li a:hover { color: #E2144A; background: #f9f9f9; } /* Hover Styles */

li ul li a { padding: 2px 5px; } /* Sub Menu Styles */

li:hover ul, li.over ul { display: block; } /* The magic */


