/*
 * personal.lse.ac.uk/mcclean
 * Style Sheet for On-Screen and Print Display
 * Created: 1 January 2010, t.c.mcclean@lse.ac.uk
 */

/*
 * Colour Palette:
 *
 * Dark Blue:	#2a418c	(Headings)
 * Mid Brown:	#594848	(Body text)
 * Light Blue:	#0671b0	(Active links)
 * Light Grey:	#e8e6e4	(Page background)
 * White:	#ffffff	(Content box background)

 * "Black":	#0a001b	(Headings and passive links)
 * Dark Grey (e.g. dotted lines): #808080
 * Mid Grey (e.g. page margin): #C5C3BF
 * Light Grey (e.g. text subheadings): #a89d9d
 * Gold:       #b5a665 (Links and highlighted text)
 *
 */

/*
 * Standard HTML Elements
 */

a{
	color: #2a418c;
	text-decoration: none;
	}

a:active,
a:hover{
	color: #0671b0;
	text-decoration: underline;
	}

body{
	background-color: #e8e6e4;
	font-family: Helvetica Neue, Arial, sans-serif;
	font-weight: 200;
	font-size: 13pt;
	line-height: 135%;
	margin: 48px;
	color: #594848;
	}

div{
	border: none;
	margin: 0px;
	padding: 0px;
	}

h1{
	color: #2a418c;
	font-size: 26pt;
	font-weight: 300;
	margin: 0px;
	padding: 0px;
	text-align: left;
	}

h2{
	border-bottom: solid 1px #2a418c;
	color: #2a418c;
	cursor: pointer;
	font-size: 14pt;
	font-weight: 300;
	margin: 0px;
	margin-bottom: 0.5em;
	margin-top: 1em;
	padding: 0px;
	text-align: left;
	}

h3{
	color: #2a418c;
	font-size: 12pt;
	font-weight: 300;
	margin: 0px;
	margin-bottom: 0.5em;
	margin-top: 2em;
	padding: 0px;
	text-align: left;
	}

img{
	border: none;
	}

li{
	font-size: 10pt;
	list-style-type: square;
	margin: 0px;
	padding: 0px;
	}

p{
	margin: 0px;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
	padding: 0px;
	}

table{
	border-collapse: collapse;
	font-size: 12pt;
	padding: 0px;
	margin: 0px;
	vertical-align: top;
	}

td{
	font-weight: 200;
	padding: 0px;
	margin: 0px;
	padding-bottom: 0.5em;
	vertical-align: top;
	}

th{
	font-weight: 400;
	padding: 0px;
	margin: 0px;
	padding-bottom: 0.5em;
	padding-right: 0.5em;
	text-align: left;
	vertical-align: top;
	}

ul{
	margin: 0px;
	margin-bottom: 1em;
	margin-left: 4em;
	padding: 0px;
	}

/*
 *
 * Layout DIVs
 *
 */

/*
 * Root Content Container
 */

div.body{
	background-color: #ffffff;
	border-color: #808080;
	border-style: solid;
	border-width: 1px;
	left: 50%;
	margin: 0px;
	margin-left: -400px;
	position: absolute;
	max-width: 768px;
	min-width: 768px;
	padding: 16px;
	width: 768px;
	}

/*
 * Top-of-Page Header
 */

div.header{
	clear: both;
	float: left;
	margin-bottom: 16px;
	max-width: 768px;
	min-width: 768px;
	width: 768px;
	}

/*
 * Main Site Navigation Menu
 */

div.menu{
	clear: both;
	display: none;
	margin-bottom: 16px;
	}

div.menu ul{
	margin: 0px;
	padding: 0px;
	list-style: none;
	}

div.menu ul li{
	display: block;
	float: left;
	padding: 4px;
	margin: 0px;
	}

div.menu ul li.first{
	border-left: none;
	}

div.menu ul li a{
	background: #2a418c;
	color: #ffffff;
	display: block;
	font-size: 9pt;
	margin: 0px;
	padding: 4px;
	text-align: left;
	text-decoration: none;
	width: 110px;
	}

div.menu ul li a:hover{
	color: #ffffff;
	background: #0671b0;
	text-decoration: none;
	}

/*
 * Main Content
 */

div.content{
	clear: both;
	float: left;
	margin-bottom: 16px;
	max-width: 768px;
	min-width: 768px;
	width: 768px
	}

/*
 * Bottom-of-Page Footer
 */

div.footer{
	clear: both;
	float: left;
	font-size: 7pt;
	max-width: 768px;
	min-width: 768px;
	text-align: center;
	width: 768px
	}

/*
 *
 * Modifications to the above for hard-copy printout
 *
 */

@media print{
	body{
		background: none;
		}
	div.body{
		margin: 0px;
		padding: 0px;
		position: static;
		width: auto;
		}
	div.header{
		position: static;
		width: auto;
		}
	div.menu{

		position: static;

		width: auto;
		}
	div.content{
		position: static;
		width: auto;
		}
	div.footer{
		position: static;
		width: auto;
		}
	}