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

	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.

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

/*-----------------------------------*\
	$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: #1d4767;
}

.container {
	max-width: 956px;
    min-height: 660px;
	margin: 30px auto;
	padding: 0;
    background-color: #24587F;
    border: 0px solid #000;
    box-shadow: 1px 1px 8px #000000;
}
/*
.title-image {
  float: left;
  display: inline-block;
}
*/
.title {
  float: left;
  display: inline-block;
  width: 460px;
  height: 560px;
  text-align: center;
  background-image: url(title.jpg);
  background-position: 0 0px;
  background-repeat: no-repeat;
  border: 0px solid #00FF00;
}

.list {
  float: left;
  width: 490px;
  height: 100%;
}

h1 {
    font-size: 14pt;
	font-weight: normal;
    color: #fff;
	line-height: 1.1;
    padding-top: 290px;
    padding-left: 20px;
    text-align: left;
    text-shadow: 0px 0px 7px #000;
    border: 0px solid #0000ff;
}

h2 {
    font-size: 24pt;
	font-weight: bold;
    color: #FFD700;
	line-height: 1.1;
    padding-top: 10px;
    padding-left: 20px;
    text-align: left;
    text-shadow: 0px 0px 0px #fff, 0px 0px 7px #000;
    border: 0px solid #0000ff;
}

h3 {
    font-size: 10pt;
	font-weight: normal;
    color: #fff;
    height: 20px;
    margin-top: 15px;
    padding-left: 20px;
    text-align: left;
    text-shadow: 0px 0px 7px #000;
    border: 0px solid #ff0000;
}

h4 {
  float: left;
  display: inline-block;
  width: 495px;
    font-size: 16pt;
	font-weight: bold;
    color: #ffd700;
	line-height: 1;
    padding-top: 20px;
    padding-bottom: 30px;
    text-align: center;
    text-shadow: 0px 0px 7px #000;
}

h5 {
  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 {
  color: #fff;
  text-decoration: none;
}

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

a:visited, a:visited {
  color: #6495ED;
  text-decoration: none;
}

ul {
  line-height: 1.35;
  font-weight: normal;
  text-align: left;
}

.list1, .list2 {
  float: left;
  clear: right;
  padding-top: 30px;
  left: 110px;
  width: 150px;
}

li {
  list-style: none;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: normal;
  font-size: 10pt;
}



/*-----------------------------------*\
	$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;
	}
}
