/*****************************************************************/
/** Copyright Invent Media - www.inventmedia.com.au				**/
/** All rights reserved											**/
/*****************************************************************/

/******************************* Body ********************************/
html { 
	overflow-y: scroll; /* Forces vertical scroll bar to always be visible avoiding the page shift left when the scrollbar is activated */
}
body {
	margin: 0;
	padding: 0;
	border: 0px;
	background: #1d1917; 
	font-size: 13px;
	color: #FFFFFF;
}

body, th, td, input, textarea, select, option {
	font-family: Arial, Helvetica, sans-serif;
}

/***************************** Headings *******************************/
h1, h2, h3 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #FFFFFF;
}

h1 {
	font-size: 3em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.6em;
}

/************ Paraghraphs, ordered lsits, un-order lists ***************/
p, ul, ol {
	line-height: 200%;
}

/************************** Block quotes *******************************/
blockquote {
	padding-left: 1em;
}

blockquote p, blockquote ul, blockquote ol {
	line-height: normal;
	font-style: italic;
}

/***************************** Links ***********************************/
a {
	color: #FFEA6F;
}

a:hover {
	text-decoration: none;
}


/****************************** Page ********************************/
#page {

	width: 800px;
	margin: 0 auto; /* align div center */
	padding: 20px 0 20px 0; /* setting bottom padding to the distance footer is from bottom - see footer */
}

/*********************** Lists ********************************/

#page a {
	text-decoration: none;
}

#page a:hover {
	text-decoration: underline;
}

/*************************** Content shared classes *********************************/
p {
	padding: 10px 0 10px 0;
}

.title {
	margin: 0;
	border-bottom: 2px solid #4A3903;
}

.clear { 
/*** clear is use to remove the float. need for footer to work ****/
  clear: both;
}

/***************************** Display code ****************************************/
.code{
	font-family:"Courier New", Courier, monospace;
	font-size:14px;
	background:#484848;
	color:#CCCCCC;
}

.codeYellow {
	color:#FFFF66;
}

.codeGreen {
	color:#66CC33;
}

