@import url('reset.css');
@import url('scrollable.css');


/* Colour Palette

Green - #009430 (0,148,48)
Orange - #f78e1f (247, 142, 31)

*/


#container {
	width: 800px;
	margin: 0 auto;
	position: relative;
	text-align: left;
}

#header {
	width: 800px;
	height: 267px;
	position: absolute;
	top:0;
	left: 0;
	background: url(../images/header.jpg) no-repeat;
	z-index: 20;
}

#header h1 {
	position: absolute;
	top: 90px;
	left: 545px;
}

#header h1 a {
	background: url(../images/logo-trans.png) no-repeat;
	width: 240px;
	height: 90px;
	display: block;
	text-indent: -999em;
}

#content {
	padding: 243px 35px 25px 225px;
	position: relative;
	background: url(../images/bg-tile.jpg) repeat-y;
	z-index: 10;
	top: 55px;
	-webkit-box-shadow: gray 0 0 10px;
	-moz-box-shadow: gray 0 0 10px;
	box-shadow: gray 0 0 10px;
	margin-bottom: 35px;
}

/* fix ie height */
#content {
  min-height:350px; 
  _height: 350px;
}

#menu-container {
	position: absolute;
	top: 240px;
	z-index: 30;
}

* html #menu-container {
	z-index: 9999;
}

#projects-pane {
	display: none;
	z-index: 9999;
	position: absolute;
	top: 350px;
	left: 200px;
	background: #f78e1f;
	padding: 10px;
	border: 1px solid #009430;
}
#projects-pane ul li a {
	line-height: 27px;
	display: block;
	padding: 3px 12px;
	text-align: center;
	font-size: 16px;
}
#projects-pane ul li:hover {
	color: white;
	background: #009430;
}
#projects-pane ul li a:hover {
	color: white;
}


/* Generic Styles */

body {
	font: 16px/25px Verdana, Arial, sans-serif;
	background-color: #e5e5e5;
	text-align: center;
}
a, a:visited {
	text-decoration: none;
	color: #009430;
}
a:hover, a:focus {
	color: #f78e1f;
	cursor: pointer;
}

p {
	margin-bottom: 12px;
}
p:last {
	margin-bottom: 8px;
}

h2 {
	font-size: 27px;
	line-height: 30px;
	letter-spacing: 1px;
	margin-bottom: 13px;
}

@font-face {
	font-family: Blue Highway D Type;
	src: url('../blue_highway_DType.ttf');
}

h1, h2, h3, h4, h5, h6 {
	font-family: Blue Highway D Type;
}

.left {
	float: left;
	margin-right: 15px;
	margin-bottom: 8px;
}
.right {
	float: right;
	margin-left: 15px;
	margin-bottom: 8px;
}

.iframe {
	margin-left:-20px; 
	margin-top:-10px;
}


/* Page Styles */

body#home-page h2 {
	display: block;
	background: none;
	font-size: 40px;
	line-height: 50px;
	box-shadow: rgba(0,148,48,0.4) 0 0 10px;
	-webkit-box-shadow: rgba(0,148,48,0.4) 0 0 20px;
	padding: 18px;
	text-align: center;
	margin-bottom: 18px;
	background: rgba(247, 142, 31, 0.4);
	font-family: Blue Highway D Type, Verdana, sans-serif;
}

#address-toggle {
	font-size: 12px;
	text-align: center;
	margin-bottom: 13px;
}
#address {
	font-style: normal;
	line-height: 18px;
	text-align: center;
	display: none;
}
#address h3 {
	font-size: 15px;
}
#address p {
	font-size: 10px;
}


/******* NAV STYLES ********/
ul#menu {
	display: block;
	position: relative;
	text-align: left;
	left: 15px;
}


/**/

ul#menu li a, ul#menu li a span{
	display:block;
	width:204px;
	height:70px;
	position:relative;
	overflow: hidden;
}

ul#menu li a span{
	width:204px;
	background: url(../images/menu-bg-trans.png) 0 0 no-repeat;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	text-indent: 20px;
	padding-top: 33px;
}
ul#menu li a:hover span {
	color: #f78e1f;
}

/* TOOLTIPS */
a.tooltip span {
    display:none;
    font-family: Verdana, sans-serif;
    font-size: 13px;
    font-weight: normal;
}
a.tooltip:hover span {
    display:block;
    position:absolute;
    top: 400px;
    left:205px;
    background:#f78e1f;
    border:1px solid #444;
    color:white;
    padding:17px;
    z-index:10;
    width: 500px;
}