/* Start of CMSMS style sheet 'Artvark CSS' */
/* browsers interpret margin and padding a little differently, we'll remove all default padding and margins and set them later on */
* {
	margin: 0;
	padding: 0;
}
/*Set initial font styles*/
body {
	text-align: left;
	font: 11px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
/*if img is inside "a" it would have borders, we don't want that*/
img {
	border: 0;
}
/*default link styles*/

a, a:link a:active {
/* set all links to have underline */
	text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
	background-color: silver;
/* this is a bluish color, you change this for all default link colors */
	color: black;
}
a:visited {
/* keeps the underline */
	text-decoration: none;
	background-color: silver;
/* a different color is used for visited links */
	color: black;
}
a:hover {
/* remove underline on hover */
	text-decoration: none;
	background-color: #fdd262;
/* using a different color makes the hover obvious */
	color: black;
}
/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
/* you can set your own image and background color here */
	background: white repeat left top;
}
div#pagewrapper {
/* min max width, IE wont understand these, so we will use java script magic in the <head> */
	max-width: 99em;
	min-width: 60em;
	background-color: white;
	color: black;
	margin-left: auto;
	margin-right: auto;
	width: 1090px;
}
div#content {
}
/* this gets all the outside calls that were used on the div#main before  */
/* this is an IE6 hack, you may see these through out the CSS */

div#sidebar {
/* set sidebar left. Change to right, float: right; instead, but you will need to change the margins. */
	float: left;
/* sidebar width, if you change this change div.back and/or div.back1 margins */
	width: 370px;
/* FIX IE double margin bug */
	display: inline-block;
/* you can set your own image here */
	background: none no-repeat right top;
	margin-right: 5px;
}

div#main {
	width: 425px;
	display: inline-block;
	float: left;
	background-position: right bottom;
	margin: 5px;
}

div#right {
	width: 260px;
	display: inline-block;
	margin: 5px;
	float: none;
	background-position: right bottom;
}

div#footer {
/* color of text, the link color is set below */
	color: #595959;
/* you can set your own image here */
	background: none left top;
	clear: both;
}

div#footer p {
/* some air for footer */
	padding: 1.5em;
/* centered text */
	text-align: center;
	margin: 0;
	font-size: 11px;
}
div#footer p a {
/* footer link would be same color as default we want it same as footer text */
	color: #595959;
	background-color: silver;
	text-decoration: none;
}

div#footer p a:hover {
/* footer link would be same color as default we want it same as footer text */
	color: #595959;
	background-color: #fdd262;
	text-decoration: none;
}
/********************CONTENT STYLING*********************/
/* HEADINGS */
div#content h1 {
	color: black;
	font-size: 18px;
	text-transform: uppercase;
	padding-bottom: 5px;
}

div#content h2 {
	color: black;
	text-transform: uppercase;
	font-size: 15px;
}

div#content h3 {
	color: black;
	font-size: 13px;
	text-transform: uppercase;
	line-height: 25px;
}
/* END HEADINGS */
/* TEXT */
p {
/* default p font size, this is set different in some other divs */
	font-size: 1em;
	line-height: 1.4em;
}
blockquote {
	border-left: 10px solid #ddd;
	margin-left: 10px;
}
strong, b {
/* explicit setting for these */
	font-weight: bold;
}
em, i {
/* explicit setting for these */
	font-style: italic;
}
/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
/* css-3 */
	white-space: pre-wrap;
/* Mozilla, since 1999 */
	white-space: -moz-pre-wrap;
/* Opera 4-6 */
	white-space: -pre-wrap;
/* Opera 7 */
	white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
	word-wrap: break-word;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	background-color: #ddd;
	margin: 0 1em 1em 1em;
	padding: 0.5em;
	line-height: 1.5em;
	font-size: 90%;
}
/* Separating the divs on the template explanation page */
div.templatecode {
	margin: 0 0 2.5em;
}
/* END TEXT */
/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
	font-size: 1.0em;
	line-height: 1.4em;
	margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
	margin: 0 0 0.25em 3em;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#main dl dd {
	margin: 0 0 1em 1em;
}
/* END LISTS */
/* End of 'Artvark CSS' */

