/* Universal Formatting */
*
{
  box-sizing: border-box;
}

@font-face
{
	font-family: GhiyaStrokes;
	src: url(GhiyaStrokes.ttf);
}

body
{
	background-color: #b9e2d3;
	background-image: url("bg.png");
	background-repeat: repeat-x;
}
/* The top */

.header
{
	float: left;
	padding: 5px;
	text-align: center;
	margin: auto;
	width: 100%;
	border-color: #b29c58;
	border-bottom-style: solid;
}

.header2
{
	font-family: GhiyaStrokes;
	text-align: center;
	font-size: 48px;
	padding: 5px;
	padding-bottom: 0px;
}

div.header img {
	width:100%;
	height:auto;
}

/* Top left */
.header.side
{
	margin: auto;
	width: 20%;
	height:auto;
	border-bottom-style: none;
}

/* Links section*/
.header.main
{
	font-family: GhiyaStrokes;
	text-align: left;
	font-size: 38px;
	width: 70%;
	height:auto;
	border-bottom-style: none;
}

.header.side2
{
	margin: auto;
	display: block;
	width: 10%;
	padding: 0px;
	padding-bottom: 0px;
	max-width: 150px;
	height:auto;
	border-style: ridge;
	line-height: 0px;
}

a
{
	text-decoration: none;
}

a:visited
{
	color: #7e6a2a;
}
/* Links section links */
.toplink
{
	text-align: center;
	border-color: #b29c58;
	color: #23574f;
}

.toplink.active
{
	color: #b29c58;
}

.toplink.left
{
	border-right-style: solid;
}

/* The main body */
.column
{
	float: left;
	padding: 10px;
	padding-top: 0px;
	margin: 5px;
	width: 100%;
}
.columnalt
{
	float: center;
	padding: 10px;
	padding-top: 0px;
	margin: 5px;
	width: 100%;
}

/* The left side bar */
.column.side
{
	background-image: url("bg2.png");
	background-repeat: repeat-x;
	background-color: #b0d6c9;
	border-style: solid;
	border-color: #b29c58;
	background-color: #d5efe6;
	width: 18%;
	padding: 5px;
}

/* main content section */
.column.middle
{
	background-image: url("bg2.png");
	background-repeat: repeat-x;
	background-color: #b0d6c9;
	border-style: solid;
	border-color: #b29c58;
	background-color: #d5efe6;
	width: 78%;
	padding: 5px;
}

.columnalt.middle
{
	background-image: url("bg2.png");
	background-repeat: repeat-x;
	background-color: #b0d6c9;
	border-style: solid;
	border-color: #b29c58;
	background-color: #d5efe6;
	width: 95%;
	padding: 5px;
}

div.column.middle img
{
	float:right;
	max-width: 450px;
	width: 30%;
}
/* clear the floats */
.row:after
{
	content: "";
	display: table;
	clear: both;
}