/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
 {
	margin: 0;
	padding: 0;
}
div {
	font-size: 1em;
}
a, a:link a:active {
	text-decoration: underline;
/* 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: inherit;
	color: #fefefe;
}
a:visited {
	text-decoration: underline;
	background-color: inherit;
	color: #fefefe;
}
a:hover {
	text-decoration: none;
	background-color: inherit;
	color: #dece56;
}
/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
}


div#content {
	margin: 0px;
	padding: 0px;
width:1003px;
overflow:hidden;
background-image:url(uploads/images/660-bgcontent.jpg);
}

div#main {
/* this is the last inside div so we set the space inside it to keep all content away from the edges of images/box */
	padding: 10px 15px;
/* you can set your own image here */
	background: url(uploads/ngrey/rtup.gif) no-repeat right bottom;
}

/* as we hid all hr for accessibility we create new hr with div class="hr" element */
div.hr {
	height: 1px;
	padding: 1em;
	border-bottom: 1px dotted black;
	margin: 1em;
}

/********************CONTENT STYLING*********************/

/* TEXT */
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;
}

/* 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 'Layout: Top menu + 2 columns' */

