/**************************************************/
/* Basic style sheet for TCMA conference web site */
/* ---------------------------------------------- */
/* Description:                                   */
/*    Set font family and colors                  */
/*    for all CSS enabled browsers                */
/*    (Layout imported for browsers over v4)      */
/**************************************************/

a {
	text-decoration: none; /*font*/
	font-weight: bold;
}
a:link { 
	color: #007EBB; /*colour*/
	background-color: transparent;
}
a:visited { 
	color: #99CCFF; /*colour*/
	background-color: transparent;
}
a:hover, a:active { 
	text-decoration: underline; /*font*/
	color: #008AC6; /*colour*/
	background-color: transparent;
}



body {
	margin: 0; /*shape*/
	padding: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif; /*font*/
	font-size: 85%;
	color: #003F5E; /*colour*/
	background: #FFF;
}

div, p, th, td, li, dd, dl, dt    {
	/* redundant selectors to help NS4 not forget font settings */
    font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 1em;
}

div {
	margin: 0; /*shape*/
	padding: 0;
}

ol, li, dl, dt, dd, p {
	line-height: 1.4; /*font spacing*/
}


h1 { /*Used for Site Name*/
	margin-top: 0; /*shape*/
	margin-right: 156px;
	font-family: Georgia, "Times New Roman", Times, serif; /*font*/
	font-size: 2em;
	letter-spacing: .3em;
	color:#FFCC33; /*colour*/
	background-color:  #006699; 
}
h2 { /*Used for Page Name*/
	margin-top: 0; /*shape*/
	margin-bottom: 1.2em;
	padding-top: .5em;
	font-weight: bold; /*font*/
	font-size: 1.8em;
	letter-spacing: .1em;
	color: #003F5E; /*colour*/
	background-color: transparent;
}

h3 { /*Used for page sections; side-bar#h3 given style in layout.css*/
	padding: .2em .3em .2em .3em; /*shape*/
	margin: 1.8em 0 .5em 0;
	font-size: 1.2em; /*font*/
	color: #003F5E; /*colour*/
	background-color:#D3E7FC;
	border-left: #0080A5 solid 8px;
} 


h4 { /*currently only used in #faq*/
	margin: 1.7em 0 .5em 0; /*shape*/
	font-size: 1.2em; /*font*/
	background-color: transparent; /*colour*/
	border-left: none;
	border-bottom: solid 2px #BCDBFA;
}


h5 { /*currently not used*/
	margin: 2.5em 0 .2em 0; /*shape*/
	font-size: 1em; /*font*/
}

h6 { /*currently not used*/
	margin: 1em 0 .2em 0; /*shape*/
	font-size: .95em; /*font*/
	font-style: italic;
}

img {
	border: none;
}

p {
	margin-bottom: 1em; /*shape*/
} 

li {
	margin-bottom: .5em; /*shape*/
}

ul, ol {
	margin-left: 1em; /*shape*/
	margin-top: 1em;
	padding-left: 1.5em;
}

ul ul, ol ul, ol ol {
	margin-left: .5em; /*shape*/
	margin-top: .5em;
	padding-left: 1.5em;
}




/*simple header styling for all browsers*/
#header {
	padding: 20px; /*shape*/
	color:#FFCC33; /*colour*/
	background-color: #069;  
}

img.logoteal {
	float:right;
}

#header p {
	margin-top: 0; /*shape*/
	margin-bottom: 0;
	color:#FFCC33; /*colour*/
	background-color:  #006699; 
	font-weight: bold;  /*font*/
	font-size: 1em;
	letter-spacing: .3em;
}

/*simple footer size styling for all browsers*/
#footer p {
	margin: 0 20px 0 20px; /*shape*/
	font-size: smaller;  /*font*/
}

/*simple page-content padding for all browsers*/
#page-content {
	padding: 2em 2.5em 2em 2.5em; /*shape*/
}


/*customising registration information*/
.regtypes li {
	margin-bottom: 1.5em; /*shape*/
}

ol.regtypes {
	list-style-type: lower-alpha;
}

/*used to highlight information on home page*/
.feature {
	margin-left: 2em; /*shape*/
	font-size: 1.1em; /*font*/
	font-weight: bold;
}

/*************************/
/* Timetable styles      */
/* -colour and shape     */
/* -font left as default */
/*************************/
#timetable {
	border: solid 2px #006699;
}
#timetable tr.headers {
	background-color: #FFCC33;
}

#timetable tr.stripeodd{
	vertical-align: top;
	padding-top: .5em;
	background-color: #D3E7FC;
}
#timetable tr.stripeeven {
	vertical-align: top;
	padding-top: .5em;
	background-color: #BCDBFA;
}

#timetable td, #timetable th {
	vertical-align: top;
	padding: 4px;
}

#timetable th p {
	margin-top: .2em;
	margin-bottom: .2em;
}

#timetable td.highlight {
	border: solid 1px #006699;
}

#timetable h4 {
	margin-top: .2em;
	margin-bottom: .4em;
	border:none;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.4;
}

#timetable h5 {
	margin: 1em 0 .1em 0;
	font-size: .95em;
	font-style: italic;
}
	
	
#timetable p {
	margin-top: .2em;
	margin-bottom: .8em;
	line-height: 1.4;
}

#timetable .noevent {
	background-color: #EDF5FE;
}

#timetable a {
	text-decoration: underline; /*font*/
	font-weight: normal;
}
#timetable a:link { 
	color: #0066CC; /*colour*/
}
#timetable a:visited { 
	color: #999999; /*colour*/
}
#timetable a:hover, #timetable a:active { 
	color: #0099FF; /*colour*/
}


