@charset "UTF-8";
    /*  */
    /* General styles */
	* {
	  margin: 0;
	  padding: 0;
	}
	html {
	  height: 100%;
	}
    body {
        margin:0;
        padding:0;
        border:0;			/* This removes the border around the viewport in old versions of IE */
        width:850px;
		margin-left: auto;
		margin-right: auto;
        min-width:850px;    /* Minimum width of layout - remove line if not required */
							/* The min-width property does not work in old versions of Internet Explorer */
		font-size:12px;
		background:#ff9900;
		height:100%;
		font-family: "Trebuchet MS";
		
    }
	a {
		color:#609;
		text-decoration:none;
		font-size:12px;
	}
	p {
		font-family: "Trebuchet MS";
		font-size:12px;
		margin:4px;
		padding: 5px;
	}
	h2 {
		font-family: "Trebuchet MS";
		font-size:16px;
		font-weight:200;
		color:#F60;
		margin:0;
		padding-top:12px;
	}
	h3 {
		font-family: "Trebuchet MS";
		font-size:14px;
		font-weight:200;
		color:#999;
		margin:0;
		padding-left:5px;
	}
	/* Header styles */
    #header {
        clear:both;
        width:100%;
		height: 141px;
		background-image:url(../images/header.png);
		background-position:center top;
		background-repeat:no-repeat;
    }
	#menu {
        clear:both;
        width:100%;
		height: 55px;
		background-image:url(../images/menu.png);
		background-position:center top;
		background-repeat:no-repeat;
		text-align:center;
		position:relative;
		overflow:hidden;
    }
	#menu a{
	font-family: "Trebuchet MS";
	font-size:16px;
	font-weight: 400;
	color:#FFF;
	float:left;
	padding-top: 28px;
	}
	#menu a:hover{
	font-family: "Trebuchet MS";
	font-size:16px;
	font-weight: 400;
	color:#000;
	float:left;
	padding-top: 28px;
	text-decoration:underline;
	}
	#active {
		color:#000000;
	}

	/* column container */
	.colmask {
		position:relative;		/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	    clear:both;
	    float:left;
        width:100%;			/* width of whole page */
		overflow:hidden;	/* This chops off any overhanging divs */
		background:#FFF;
		min-height:350px;
	}
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;
		position:relative;
	}
	.col1,
	.col3 {
		float:left;
		position:relative;
		padding:0 0 1em 0;
		overflow:hidden;
		
	}
	.col2 {
		float:left;
		position:relative;
		padding:0 0 0 0;
		overflow:hidden;
	}
	/* Full page settings */
	.fullpage {
		background-image:url(../images/body.png);
		background-position:center;
		background-repeat:repeat-y;
	}
	.fullpage .col1 {
		width:96%;			/* page width minus left and right padding */
		left:2%;			/* page left padding */
	}
	/* 2 column right menu settings */
	.rightmenu .colleft {
        float:left;
        width:200%;
        margin-left:-200px;
        position:relative;
        right:100%;
    }
    .rightmenu .col1wrap {
	    float:left;
	    width:50%;
	    position:relative;
	    left:50%;
	    padding-bottom:1em;
	}
	.rightmenu .col1 {
        margin:0 15px 0 215px;
        overflow:hidden;
	}
    .rightmenu .col2 {
        float:right;
        width:185px;
        position:relative;
        left:185px;
		background:#E4E4E4;
		height: auto;
    }
	/* Footer styles */
	#footer {
        clear:both;
        float:left;
        width:100%;
		height:25px;
		background:#f6b976;
    }
    #footer p, a {
        padding:4px;
        margin:4px;
		text-align:center;
		font-size:10px;
		color: #000;
		font: "Trebuchet MS";
		text-decoration:none;
    }