/*ASOR 2013 styles */

body {
	background-color: #565656;
}

/***** layout divs ****/


#asor_wrapper{
	margin: 0 auto;
	padding: 173px 0 0 242px;
	width:728px;  /* note total width 970px */
	background-color: #5b8e3f;
	position: relative;
	border: none;
}

#banner {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	height: 173px;
}

#banner img {
	margin: 0;
	border: none;
}

#ASORlogo {
	float: left; 
	margin-right: 3px !important;
}

#asor_left {
	position: absolute;
	top: 173px;
	left: 0;
	width:242px;
	min-height: 490px;
	background-color: #5b8e3f;
	margin: 0;
	padding: 0;
}


#asor_right {
	font-family:Verdana, Geneva, sans-serif;
	font-size:13px;
	color:black;
	min-height:520px;
	background-color: #FFFFFF;
	margin: 0;
	padding: 40px 40px 10px 50px;
	line-height: 1.4em;
}

#footer {
	font-size: 11px;
	padding: 25px 0 5px 30px;
	clear: both;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	color: #6d6c73;
	margin: 0;
}

#homelink {
	position: absolute;
	top: 790px;
	left: 20px;
	font-family:Verdana, Geneva, sans-serif;
	font-size: 14px;
}

#homelink a {
	color: #FFFFFF;
	text-decoration: none;
}

#homelink a:hover {
	text-decoration:underline;
}


#asordors {
	font-family: Verdana;
    font-size: 12px;
	color: #FFFFFF;
	padding-left:18px;
	padding-top: 14px;
	padding-right: 10px;
	padding-bottom: 8px;
	border-bottom: #FFFFFF 3px solid;
	background-color: #a4b565;
	line-height: 1.3em;
}


/***** end of layout divs ****/

/****** text styles ******/

h1 {
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 32px;
	font-weight: normal;
	color: #a0b474;
	margin-bottom: 30px;
	line-height: 1.2em;
	margin-top: 14px;
}

h2 {
	font-family:Tahoma, Geneva, sans-serif;
	font-size: 18px;
	font-weight: normal;
	color: #8ca061;
	line-height: 1.2em;
}

h3, .sessionheading {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #8ca061;
	text-transform: uppercase;
}

h4 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color:#4d4c4c;
}	

p.letter {
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: bold;
	font-family:Arial, Helvetica, sans-serif;
}

li {
	margin-bottom: 5px;
}


/******* end of text styles ***/

/*** table styles ***/


table
{
	border-collapse:collapse;
	border style: none;
	border-spacing:0px;
}

td
{
	padding:8px;
	margin:0px;
}

/*** end of table styles ***/

#logos img
{
	margin:0px;padding:0px;float:left;border:none;
	
}

img.right {
	float: right;
	margin-left:30px;
	margin-bottom: 17px;
}

img {
	border:none;
}


/*** styles for menu ****/

ul.makeMenu, ul.makeMenu ul {
  width: 242px;                /* sets the size of the menu blocks */
  /*border: 1px solid #0093D6;*/   /* puts a black border around the menu blocks */
  background-color: #5b8e3f;   /* makes the menu blocks in blue - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  font-family:Verdana;
  font-size:14px;
  margin-bottom:0px;
  margin-top:0px;
  padding-bottom:0px;
  border-bottom:solid 1px #fff;	
}




ul.makeMenu ul{
	
	border-left:1px solid white;

}


ul.makeMenu li {

  list-style-type: none;       /* removes the bullet points */
  /*margin: 0px;*/             /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  margin-left:0px;
  padding-left:20px;;
  margin-bottom:0px;
  margin-top: 0;
  padding-bottom:2px;
  padding-top:6px;
  padding-bottom:6px;
  color: #fff;                 /* sets the default font colour to white */
  border-bottom:solid 1px #fff;
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly lower than the parent menu item */
  left: 262px;                 /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
  margin-bottom:0px;
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #829a3d;   /* gives the active menu items a lightblue*/
  color: #fff;                 /* makes the active menu item text black */ 
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}
/* and some link styles */
ul.makeMenu li a { color: #fff; display: block; width: 100%; text-decoration: none; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #fff; }
ul.makeMenu li:hover > a { color: #fff; } /* supports links in branch headings - should not be display: block; */

/***** end of styles for menu ****/



/*** other styles to be used later for proceedings ***/

span.session {
	color: #8CA061;
	font-weight: bold;
}

blockquote {
	margin: 2px 0 0 30px;
}

.organisers {
	list-style-type:none;
	margin-top: 7px;
	margin-bottom: 7px;
}

/**** styles used for hyperlinks to trigger jquery popup windows (session descriptions) ***/

a.ex2trigger {
	padding-left: 0 !important;
}


/**** hyperlink styles  ****/

a:link {text-decoration:none; color: #005892;}
a:visited { }
a:hover {text-decoration: underline; color: #829A3D;}
a:active {text-decoration: underline; color: #829A3D;}

