/*-----------------------------------*\

	Toast
	A Simple CSS Framework
	=================================

	Values you may want to change:
	- .container { max-width:; }
	- p { margin-bottom:; }
	- html { font:; }

	Remember: no framework will be as
	good as a custom built, per-
	project	one. Toast and other
	frameworks are best used for
	rapid prototyping.

\*-----------------------------------*/


@import url(http://fonts.googleapis.com/css?family=Fredericka+the+Great);


/*-----------------------------------*\
	$RESET
\*-----------------------------------*/

* {
	margin: 0;
	padding: 0;
	position: relative;
    box-sizing: border-box;
}



/*-----------------------------------*\
	$MAIN
\*-----------------------------------*/

html {
    font-size: 100%;
	font-family: Verdana, Geneva, sans-serif;

}

@media screen and (max-width: 650px) {
	html {
		font-size: 100%;
	}
}

body {
  margin: 22px auto;
  background-color: #000041;
}

.container {
	max-width: 900px;
    min-height: 600px;
	margin: 30px auto;
	padding: 0;
    background-color: transparent;
    background-image: url(old-farm.jpg);
    background-position: left top;
    background-repeat: no-repeat;
    border: 0px solid #000;
    box-shadow: 1px 1px 8px #000000;
}

.title-image {
  float: left;
  display: inline-block;
}

.title {
  float: left;
  display: inline-block;
  width: 100%;
  height: 420px;
  text-align: center;
  background-image: url(title.jpg);
  background-position: 0 0;
  background-repeat: no-repeat;
  border: 0px solid #00FF00;
}

h1 {
  font-family: "Fredericka the Great";
    font-size: 36pt;
	font-weight: 600;
    color: #000041;
    padding-top: 50px;
    text-align: center;
    /*text-shadow: 0px 0px 7px #000;*/
    border: 0px solid #0000ff;
}

h2 {
    font-size: 18pt;
	font-weight: normal;
    color: #000041;
    margin-top: 15px;
    text-align: center;
    text-shadow: 0px 1px 0px #fff;
    border: 0px solid #ff0000;
}

h3 {
    font-size: 12pt;
	font-weight: bold;
    color: #000;
    padding-top: 10px;
    text-align: center;
}

h4 {
  float: left;
  display: inline-block;
  width: 455px;
  font-size: 12pt;
  padding-left: 20px;
  text-shadow: 1px 1px 3px #000;
  border: 0px solid #ff0000;
}

p {
    float: left;
  width: 455px;
  font-size: 10pt;
	margin: 5px 20px 20px 20px;
    border: 0px solid #ff0000;
}

a:link, h3 a:link {
  color: #fff;
  text-decoration: none;
}

a:hover, a:visited:hover, h3 a:hover, h3 a:visited:hover  {
  color: #FF8C00;
  text-decoration: none;
}

a:visited, h3 a:visited {
  color: #fff;
  text-decoration: none;
}

.list1, .list2, .list3 {
  position: relative;
  float: left;
  clear: right;
  left: 150px;
  width: 250px;
}

li {
  list-style: none;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: bold;
  font-size: 16pt;
  line-height: 1.5;
  text-align: left;
}



/*-----------------------------------*\
	$TYPE

	Works off the assumption of a 1.5
	line height @ 20px. Again, change
	as necessary.
\*-----------------------------------*/

hr {
	border: none;
	border-bottom: 1px solid rgba(0,0,0,.1);
	margin-top: -1px;
}



/*-----------------------------------*\
	$GRID
\*-----------------------------------*/

.grid {
	margin-left: -2%;
	max-width: 105%;
    background: transparent;
}

.unit {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: top;
	margin-left: 2%;
	margin-right: -.25em;
    top: 30px;
    left: 0px;
	/* Clearfix */
	overflow: hidden;
	*overflow: visible;
}

	.unit.demo {
		background-color: #fff8eb;
		height: 48px;
		height: 3rem;
		margin-bottom: 24px;
		margin-bottom: 1.5rem;
	}

.span-grid {
	width: 97%;
}

.one-of-two { width: 48%; }

.one-of-three { width: 30.36%; }
.two-of-three { width: 63.666666666%; }

.one-of-four { width: 22.05%; }
.three-of-four { width: 72%; }

.one-of-five { width: 17.07%; }
.two-of-five { width: 37%; }
.three-of-five { width: 57%; }
.four-of-five { width: 77%; }

@media screen and (max-width: 650px) {
	.grid {
		margin-left: 0;
		max-width: none;
	}

	.unit {
		width: auto;
		margin-left: 0;
		display: block;
	}
}
