/*------------------------------------------------*/
/* CSS TEMPLATE (C)2015 FLETCH BRENDAN GOOD       */
/*------------------------------------------------*/


html,body {
	background:#eeeeee;
	height:100%;
}

.main {
	font-family: Georgia, "Times New Roman", Times, serif; color: #000;
	font-size: 23px
}

/*------------------------*/
/* Links                  */
/*------------------------*/ 


a.link:link {
	color: blue;
	text-decoration: underline;
	}
	
a.link:visited {
	color: red;
	text-decoration: none;
	text-decoration: underline;
	}
	
a.link:hover {
	color: white;
	background: #004f40;
	text-decoration: none;
	}
	

a.website:link {
	color: blue;
	text-decoration: underline;
	font-variant: small-caps;
	}
	
a.website:visited {
	color: red;
	text-decoration: none;
	text-decoration: underline;
	font-variant: small-caps;
	}
	
a.website:hover {
	color: white;
	background: #004f40;
	text-decoration: none;
	font-variant: small-caps;
	}
	

h1 {
	color: #444444;
	font-family: Georgia;
	font-size: 27px;
	font-variant: small-caps;
	}

h2 {
	color: #444444;
	font-size: 18px;
	font-family: Georgia;
	font-variant: small-caps;
	}


h3 {
	color: #3a0000;
	font-family: Georgia;
	font-size: 12px;
	}
	
p {
    margin-top: 1em;
	color: black;
	font-family: Georgia;
	font-size: 14px;
	}



/*------------------------*/
/* Layout                 */
/*------------------------*/

#outside{
	border: 1px solid;
	min-height:95%;
	max-width:924px;
	min-width:406px;
	background:#FFFFFF;
	margin: 20px auto;
	border-radius: 10px;
	border-color: #bbbbbb;
}
* html #outside{height:100%;} /*compensate for IE*/

#header{
	border: 2px solid;
	position:relative;
	top:-10px;
	max-width:924px;
	min-width:406px;
	min-height:180px;
	background:#FFFFFF;
	border-radius: 10px;
}

#topright {
	float:right;
	width:250px;
	height:120px;
	background:#000000;
	border-radius: 10px;
	border-color: white;
	border: 1px solid;
}

#topleft {
	width:648px;
	float:left;
}

#photoleft {
	float:left;
	width:350px;
}

#textright {
	width:450px;
	float:right;
}

#content {
     margin: 0 auto;
     max-width: 500px; 
}

#contentwide {
     margin: 0 auto;
     max-width: 700px; 
}



.clearer{clear:both;height:1px;overflow:hidden;margin-top:-1px;}
