/*************
Stylesheet for Temenos Academy Lectures
Date - July 2009
Author - Andrew Lowe

CSS Reset - by Eric Meyer ...who else?
*************/

/*RESET*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	color: black;
	background: white;
	font-size: 62.5%;
	line-height: 1;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/*******/

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/*DEFINED CLASSES*/

/*container*/
#container {
	background: transparent url(../img/islampat.gif) repeat-y right 105px;
	margin: 0 0;
	width: 1080px;
	overflow: hidden;
}

/*header*/
#header {
	background: #666699 url(../img/sun.gif) no-repeat 10px;
	border-bottom: 1px #545182 solid;
	padding-left: 141px;
	height: 65px;
}

#header img {
	position: relative;
	padding-left: 50px;
	top: 15px;
}

/*navigation*/
#navigation {
	overflow: auto;
}

#navigation ul li {
	background-color: #EBE8F7;
	float: left;
	padding: 10px 0;
	width: 120px;
	height: 20px;
	text-align: center;
}

#navigation ul li a {
	text-decoration: none;
	color: #993366;
	font-size: 1em;
}

#navigation ul li a:hover {
	text-decoration: underline;
}

/*sidebar*/
#sidebar {
	background-color: #EBE8F7;
	float: left;
	min-height: 520px;
	width: 160px;
}

#sidebar p, #sidebar address {
	padding-left: 1em;
}

#sidebar ul li {
	background: #BCCFF8 url(../img/buttonbg.png) repeat-x;
	border: 1px #A1ABD9 solid;
	min-height: 14px;
}

#sidebar ul li  a {
	text-align: center;
	color: #000842;
	display: block;
	min-height: 14px;
	padding: 4px 0;
	text-decoration: none;
}

#sidebar ul li a:hover {
	color: #454001;
	text-decoration: underline;
}

#sidebar ul li:hover {
	background: #FFE9C4 url(../img/buttonbg-up.png) repeat-x;
	border: 1px #DACB9F solid;
}

/*page-content*/
#page-content {
	color: #003366;
	font-family: Arial, Helvetica, sans-serif;
	min-height: 480px;
	overflow: auto;
	padding: 20px;
	width: 620px;
	
}

#page-content h3  a em {
	top: 0 !important;
}

#page-content #contact {

}

/*footer*/
#footer {
}

/*HTML ELEMENTS*/
p, address {
	font-size: 1.2em;
	line-height: 1.4em;
	padding-bottom: 0.5em;
}

h1 {
	font-size: 1.8em;
	font-weight: 600;
	color: #666699;
	padding-bottom: 1em;
}

h2 {
	font-size: 1.6em;
	font-weight: 600;
	padding-bottom: 0.5em;
}

h3 {
	font-size: 1.4em;
	font-weight: 600;
	padding-bottom: 0.5em;
}

address {
	padding-top: 1em;
}

a {
	text-decoration: none;
	color: #993366;
}

a:hover {
	text-decoration: underline;
}