/*
 * Stylesheet for master template.
 *
 * layout for the master template
 *
 * Author: Mike Vervuren 2007
 *
 */

/* the layout is in three rows */
div.row {
	margin:0px 0px;
	position:relative;
	top:0px;
	left:0px;
}
div.row:after { content: ""; display: block; height: 0; clear: both; }
div.row { height: 100%; }

/* every row has one center column */
/* this is the container for the page */
div.centercell {
	position:relative;
	top:0px;
	left:0px;
	width:960px;
	margin:0px auto;
	padding:0px;
	background-color:transparent;
	color:inherit;
	text-align:left;
}

/* rows get seperated by an empty row */
div.whiterow {

	height:4px;
	background-color:white;
}
div.bordertop {
border-width:1px 0px 0px 0px;
border-style:solid;
border-color:#b7c21f white #d4dac4 white;
}
div.borderbottom {
border-width:0px 0px 1px 0px;
border-style:solid;
border-color:#d4dac4 white #b7c21f white;
}
/* the header row - containing the logo and menu */
#headrow {
	background-color: transparent;
	color: inherit;
	height:92px;
	vertical-align:middle;
}

/* The menu in the header row */
#headrow #menu {
	position:absolute;
	top:36px;
	left:420px;
	text-align:center;
	font-size:13px;
	background-color:transparent;
}

#headrow #menu ul {
	list-style:none;
}

#headrow #menu ul li {
	float:left;
	clear:none;
	margin:4px 0px;
}

#headrow #menu ul li.lastitem {
	clear:right;
}

/* the menu item */
#headrow #menu ul li a {
	display:block;
	padding:0px 6px;
	text-decoration:none;
	font-weight:bold;
	color:inherit;
	background-color:transparent;
}

/* the current active menuitem */
#headrow #menu ul li a.activeitem,
#headrow #menu ul li a:hover {
	background-color:transparent;
	color:inherit;
}
/* end of menu */

/* all other links in the header */
#headrow .centercell a {
	border-width:0px;
}

/* the time in the header */
#headrow .centercell span#thetime {
	color:inherit;
	font-weight:bold;
	font-size:smaller;
	position:absolute;
	top:6px;
	right:0px;
}

/* the middle row */
#bodyrow {
	background-color:transparent;
}

/* the main content container */
#bodyrow div.centercell {
	background-color:transparent;
}

/* the bottom row */
#footrow {
	height:92px;
}

/* fix height for centercell so we can position copyright and developer */
#footrow div.centercell{
	height:92px;
}

#footrow p strong {
}
#footrow .centercell #copyright {
	position:absolute;
	left:10px;
	bottom:2px;
}
#footrow .centercell #webdevelopment {
	position:absolute;
	right:10px;
	bottom:2px;
}
/* end of rows */