/* ********************************
Default style declarations for Coalition (blue) website
******* */
a { /* defines how links look like */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-style: normal;
	font-weight: bold;
	color: #000099;
}

a:link, a:visited, a:active { /* Normally the links are not underlined (no text decoration) */
  text-decoration: none;
}

a:hover {	/* ...but links underline themselves when mouse points to them */
  text-decoration: underline;
}
				
.navLeftInfo {
	color: #666666;
	font-size: 8pt;
	font-weight: normal;
}

	/* Heading style definitions for levels 1, 2 and 3 */
h1 { 
	font-family:Verdana, sans-serif;
	font-size:16pt;
	color:navy;
}
h2 {  
	font-family:Verdana, sans-serif;
	font-size:13pt;
	color:navy;
}
h3 {
	font-family:Verdana, sans-serif;
	font-size:10pt;
	color:#CC0000; /*red*/
}

body { 
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px
}

/* ********************************
Definitions (placement, margins, background, etc.) of specific sections 
******* */

#leftBar { /* Defines the left section of the website */
	background-color:#8A8AB2; /* a shade of blue */
	float:left;	/* aligns to the left side */
	margin:0 3px 0 0; /* space between this section and its surroundings: top left bottom right */
}

#rightBar { /* Defines the right section of the website */
	background-color:#CDCDFF; /* a shade of blue */
	float:right; 
	padding:0;	/* space between the contents and margins of this box: all */
	margin:3px 0 0 3px;
}
#topBar { /* Defines the top section of the website */
	height:174; /* height of the section */
	margin: 0 0 0 3px; /* 3px on the left */
	background-color:#FFFFCD; /* a shade of yellow */
}

#mainPart {	/* Defines the main (content) section of the website */
	background-color:#FFFFCD; /* a shade of yellow */
	margin: 3px 0 0 0;
	padding: 3px;
}

#bottom { /* Defines the bottom section of the website (copyright) and its style */
	background-color:#FFFFCD; /* a shade of yellow */
	height:50px;
	padding:10px;
		/* style of text and font */
	color:#666666;	/* a shade of grey */
	size:12pt;
	font-weight:700;
	line-height:20pt;
	text-align:center;
	vertical-align:bottom;
}

/* ********************************
Style declarations used throughout the Coalition website 
******* */

#contentLinks {	/* Style used for a section with a list of links */
	background-color:white;	
	text-align:left;
	padding:5px;
		/* Style of regular text (not linked) */
	font-family: Verdana, sans-serif;
	font-size:9.0pt;
	color: navy;
}

#contentLinks a {	/* Style of a linked text */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-style: normal;
	font-weight: normal; /* non-bold */
	color: blue;
}

#contentLinks h4 {	/* style of a heading to be used in this section */
	font-family: Verdana, sans-serif;	
	font-size: 11pt;
	font-weight: bold;
	font-style: italic;
}

.content {	/* used within table cells <td class="content"> to enable style definitions there */
	font-family: Verdana, sans-serif;
	font-size:9.0pt;
	color: navy;
}

/* ********************************
Style declarations used within only one or few pages 
******* */

#leftLinks { /* background and default font style used in the left navigation bar (used in leftlinks.html document) */
	background-color: #8A8AB2;	/* a shade of blue */
	font-family: sans-serif;
	font-size:9pt;
	color: white;
}

#leftLinks a{ /* style of links used in the left navigation bar */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9pt;
  font-style: normal;
  font-weight: bold;
  text-decoration: none; /* not underlined */
  color: white;
  line-height: 12px; /* fixes the height of a line of text, regardless of the font size*/
}

#rightLinks { /* background and default font style used in the right navigation bar (used in rightlinks.html document) */
	background-color: #CDCDFF;
	font-family: sans-serif;
	font-size:8pt;
	color: navy;
}

#rightLinks a{ /* style of links used in the right navigation bar */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8pt;
  font-style: normal;
  font-weight: bold;
  text-decoration: none; /* not underlined */
  color: blue;
  line-height: 12px; /* fixes the height of a line of text, regardless of the font size*/
}

.quotation {	/* Used for various quotations where applicable */
	font-family:serif;
	color:#000099;
	font-size:12pt;
	font-style:italic;
	text-align:justify;
	text-indent:10px;
}

.author { /* used on conference-related pages */
	font-size:10pt;
	color:navy;
}

#excerpt {	/* used for newspaper-style excerpt from large text */
	border-style:solid;
	border-width:2px;
	border-color:black;
	margin: 5px 2px 5px 2px;
	padding: 5px;
	text-align:center;
}