/**
 * Template Tutorial - CSS Design Classes
 */
 





/**
 * CSS Guide for Mambo 4.5 templates 
 * @author Wee Keat Chin
 * @url www.visualdensity.com
 * @email weekeat@visualdensity.com
 
 * Modified by Tara Athan
 * tara_athan@alt2is.com
 * for use on www.imcwma.org
 */


/**
 * General Body Styling
 * --------------------
 * These are normal css setup reccommended for your
 * HTML template although they are not neccessary
 */



	


/**
 * General Mambo Styles
 * --------------------
 * The following are styles that are often used
 * site wide by Mambo to provide better control
 * of content's appearences.
 */


.pagenavbar { 
	/*for some weird reasons, this is not used in page nav, but found it used 
	  for nick names in forum threads by Simpleboard */
}

.pagenav {
	/* as the name implies, this is for formatting texts for
	   those "<< Start < Previous 1 Next > End >>" links */
	font-weight: normal;
}

a.pagenav, a.pagenav:visited {
	/* same as above, but for links */
	font-weight: bold;
	color: #343A58;
}

a.pagenav:hover {
	/* same as above, but for links with mouse pointer over it */
	color: #FF9900;
}

.small {
	/* general style for texts when small size fonts are used. In 
	   the contents, this style is used for "Written by..." texts */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 10px;
	color: #343A58;
	text-decoration: none;
	font-weight: normal;
	}

.smalldark {
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 10px;
    color: #343A58;
    text-decoration: none;
    font-weight: normal;
    }




/**
 * Mambo Form Styles
 * -----------------
 * Here are 2 styles that Mambo uses to let users control
 * how their forms and buttons may look.
 */
 
.button {
	/* this style applies to most form buttons generated by
	   Mambo and its components. Change its format here*/
	color: #FFFFFF; 
	font-family: Arial, Verdana, Helvetica, sans-serif;
	margin-top: 4px;
	font-weight: normal;
	text-align: center;
	font-size: 12px;
	background: #94B1CF;
	border: 1px solid #000066;
	height: 20px;
	}

.inputbox {
	/* Again, the name implies that this style changes the 
	   way those input box looks */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	color: #343A58;
	background: #FFFFFF;
	border: 1px solid;
	}





/**
 * Mambo Tabbed Frontend Admin Interface
 * -------------------------------------
 * The CSS styles here defines how the frontend admin interface
 * will look like when editing and adding news through frontend.
 */
 
.ontab {
	/* For styling of the "Tab" buttons when editing contents through the frontend
	   (when you log in as admin in the frontend). This .ontab is the styling for the
	   tab when it is active or after its "clicked" */
	background-color: #323A15;
	border-left: outset 1px #DCF2FA;
	border-right: outset 1px #808080;
	border-top: outset 1px #DCF2FA;
	border-bottom: solid 1px #d5d5d5;
	text-align: center;
	font-weight: bold;
	color: #FFFFFF;
}
.offtab {
	/* Same as above, used for styling of the "Tab" buttons when editing contents through the frontend.
	   This .ontab is the styling for the tab when it is NOT active or when it is NOT "clicked" */
	background-color : #e5e5e5;
	border-left: outset 1px #E0E0E0;
	border-right: outset 1px #E0E0E0;
	border-top: outset 1px #E0E0E0;
	border-bottom: solid 1px #d5d5d5;
	text-align: center;
	cursor: hand;
	font-weight: normal;
}

.tabpadding {
	/* this style is used set the size of the tab in 
	   in the above */
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;
}

.tabheading {
	/* Not too sure what this is used for. Couldn't find anything
	   related to it yet at the moment */
}

.pagetext {
	/* this style is used to style the content of the editing form
	   contents (where HTMLArea sits and all its forms + contents) in
	   the frontend Administration interface */
	visibility: hidden;
	display: none;
	position: relative;
	top: 0;
}



/**
 * Mambo Menu Styling
 * ------------
 * You can control the way menu behave and look
 * by using the CSS settings below
 */

a.mainlevel:link, a.mainlevel:visited {
	/* this styling is for the MAIN items in the menu */
	color: #3D4E6D;
	font-weight: bold;
	text-decoration:none;
	text-align: left;
	}

a.mainlevel:hover {
	/* same as above, but when hovering */
	color: #FF9900; 
	font-weight: bold;
	text-decoration:none;
	text-align: left;
	}
	
a.sublevel:link, a.sublevel:visited {
	/* this styling is for menu items that HAS A PARENT */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	color: #343A58; 
	font-weight: normal;
}

a.sublevel:hover {
	/* pffff!.. you know this! */
	color: #FFFFFF; 
	text-decoration: none;
	}





/**
 * Mambo General styling for Sections/Categories/Contents
 * ------------------------------------------------------
 * These stylings are either sometimes or often used across
 * Sections, categories and contents. They, therefore, deserves
 * to be mentioned and separated from others.
 */
 
.createdate {
	/* name says it all.. its for styling the date the content/articles are created under 
	   contents title */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 9px;
	color: #343A58;
	text-decoration: none;
	font-weight: normal;
	}

.modifydate {
	/* need me to say? :) Well it styles the "Last updated on" text
	   at the end of articles/contents */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 10px;
	color: #343A58;
	text-decoration: none;
	font-weight: normal;
	}

a.readon:link, a.readon:visited {
	/* For formatting the "Read on..." link for blogs and on frontpage. */
	color: #23598d; 
	text-decoration: none; 
	font-family:  Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	}

a.readon:hover {
	/* Pfft..! */
	color: #23598d;	text-decoration: underline;
	font-weight: normal;
	font-family:  Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	}





/** 
 * Mambo Styling for Contents
 * --------------------------
 * All the styling for contents are listed
 * below.
 */
 


table.contenttoc {
	/* This is used to format the table of the Tables of Contents or "Jump to" 
	   box when it is enabled in a multiple paged content or article */
	color: #343A58;
	background-color: #e0e0e0;
	border-top: 1px solid #465675;
	border-bottom: 1px solid #465675;
	border-left: 1px solid #465675;
	border-right: 1px solid #465675;
    }

table.contenttoc td {
	/* the same as above, but this is used to format the td or
	   table cells */
	font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 8pt;
    font-weight: normal;
    text-align:left;
	padding: 3px;
}

.content_rating {
	/* used for styling the texts used for displaying 
	   those "stars" for rating in an article */
	font-weight: normal;
	font-size: 8pt;
}

.content_vote {
	/* used for those voting texts (the one with voting RADIO buttons) */
	font-weight: normal;
	font-size: 8pt;
}


/**
 * Mambo Sections Styles
 * ---------------------
 * Styling of sections tables 
 */

.sectiontableheader {
	/* This is for styling the section table headers on a SECTION's page.
	   An example would be those articles lists when you click on "News" or something?
	   With a table header of "Date", "Item Title", "Author" and "Hits" ? That's the
	   header that you will be controlling through this style */
	background-color : #94B1CF;
	background-repeat: repeat;
	padding: 2px;
	color : #FFFFFF;
	font-weight : bold;
	padding: 2px;
	}

.sectiontableentry1, {
	/* this is used when there's a whole list of data to provide and
	   you need to create alternate colors for each row of data. This is
	   the first color */
	background-color : #BED2EB;
	}
	
.sectiontableentry2 {
	/* this is the second color for the row. So, the table generator,
	   will alternate its style through sectionableentry1 and sectiontableentry2
	   as it cycles through and outputs each row of data. Similar to forum's post
	   listings */
	background-color : #F3F3F3;
	}





/**
 * Mambo Styles for Categories
 * ---------------------------
 * The following are the styling for "Category" items
 * generated from the Sections area
 */

.category {
	/* this is to set the category Titles ( found on a SECTION's page
	   where the Category lists are) styles */
	color: #3D4E6D; 
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px; 
	font-weight: bold; 
	text-decoration: none;
	}

a.category:link, a.category:visited {
	/* same as above, but to set the link format */
	color: #3D4E6D; font-weight: bold;
	}

a.category:hover {
	/* same as above, but for links with mouse pointer over it */
	color: #3D4E6D;
	}




/**
 * Mambo Blog styling
 * ------------------
 * Not too sure where this is used yet. I tried the blog section
 * but it doesn't seem to use it. If you have info on this,
 * email me. I'll update this part.
 */
 
a.blogsection:link, a.blogsection:visited {
	color: #44757D; 
	text-decoration: none; 
	font-family:  Arial, Verdana, Helvetica, sans-serif;
	font-size: 10px;
	}

a.blogsection:hover {
	color: #759328;	
	text-decoration: underline;
	font-size: 10px;
	}







/**
 * Mambo Modules formatting
 * ------------------------
 * These stylings are to format the way modules are
 * displayed. It mainly deals with the format of its
 * table. I think this doesn't need too much explaining
 */


	


/**
 * Mambo's Built-in Component's Syling
 * -----------------------------------
 * These stylings are used for Mambo's built-in components
 * such as newsfeeds, weblinks, contact, search and polls.
 * A commented subtitle will guide you which is for which
 */
 
 
 /*  Polls  */
 
.poll {
	/* polls texts */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #343A58;
	line-height: 14px
	}

.pollstableborder {
	/* set the border properties of the polls voting table */
	border: 1px solid #465675;
}



/*  Weblinks */

a.weblinks:link, a.weblinks:visited {
	/* well.. to format the link's titles under the "Weblinks" 
	   section on the frontend */
	color: #405115; text-decoration: none; font-weight: normal;
	font-family:  Arial, Verdana, Helvetica, sans-serif;
	}

a.weblinks:hover {
	/* same as above, but for link with mouseover */
	color: #000099;	text-decoration: underline;
	}
	


/*  Newsfeeds */

.newsfeedheading {
	/* The newsfeed title. NOTE: This will not affect the newsfeed's news title! */
   font-family: Arial, Verdana, Helvetica, sans-serif;
   font-size: 11px;
   font-weight: bold;
   color: #343A58;
   }

.newsfeeddate {
	/* yeah.. the date on the newsfeed */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 10px;
	color: #343A58;
	font-weight: normal;
	}

.fase4rdf {
	/* this is the body text of the newsfeed */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px; 
	color: #343A58; 
	font-weight: normal;
	}

a.fase4rdf:link {
	/* links of the body text of the newsfeed */
	font-size: 11px; 
	font-weight: bold; 
	color: #356C82;
	}

a.fase4rdf:hover {
	/* links of the body text of the newsfeed when mouse points over it*/
	font-size: 11px;
	font-weight: bold; color: #759328;
	}


/* Search page */


table.searchintro {
	/* This is for formatting the box with "Search Keyword: test returned 4 matches" box
	   that appears after you have entered a search value. It appears on the mainbody
	   with the search results  */
  	background-color: #FFFFFF;
	border: 1px solid #8D9ABC;
	}


/*  Contact's table settings  */

table.contact {
	/* for formatting the entire "Contact" table which includes
	   the name, address icons and form. Note this table DOES NOT 
	   enclose the dropdown list for selecting the Department/person
	   to contact */
	background-color: #FFFFFF;
	}

table.contact td.icons {
	/* the name gave it away. This formats the <td> cells
	   where the little icons sits next to the details (those addresses,
	   phone number etc) */
	background-color: #CCCCCC;
	}

table.contact td.details {
	/* this is for formatting the <td> cells where all the details sits.
	   The details where addresses, phone number and additional info are */
	background-color: #F3F3F3;
	font-size: 11px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	}


 /* Monochromatic Color Scheme
Reference http://december.com/html/spec/colorhslhex10.html
Hue 160, saturation 20%
Light
90%      #E0EBE7		R:224 G:235 B:231
80%      #C2D6CF		  
70%      #A3C2B8		
60%      #85ADA0
50%      #669988
40%      #527A6D	  R:82 G:122 B:109
30%      #3D5C52    R: 61  G: 92 B: 82
20%      #293D36    R: 41 G: 62 B: 54
10%      #111916    R: 17 G: 25 B: 22
*/

/* Contrast Color Scheme
Hue 50%, saturation 70%
Light
90%      #F7F1D4  R:247 G:241 B:212
70%      #F0DB75  
50%      #E6C419  R: 230 G: 196 B: 25
30%      #827017 
*/

/*	html, body {
		background-repeat	: repeat;
		background-color	: #85ADA0; 
		color				: #F7F1D4;
		font-family			: "Times New Roman", serif;
		font-size			: 1.0em;
		vertical-align		: middle;
		margin: 0px 0px 0px 0px;
	}
	*/ 
/* GENERAL SETTINGS */
	html, body {
		font-size         : 1.0em;
		padding           : 1px;
		margin            : 1px;
		background-color  : #A3C2B8; /* MC 70 */
		color             : #000000; /* MC 00 */
		vertical-align    : middle;
		font-family       : "Times New Roman", serif;
	}	
	td,tr,p,div {
		font-family			  : "Times New Roman", serif;
/*		font-size         : 1.0em;*/
		margin            : 0px;
		padding           : 0px;
	}	
	ul {
		margin            :0px;
	}
	li {
		list-style        : inside 3px;
	}
	a:link {
    color					: #527A6D;
	  background-color		: #F7F1D4;
	  font-weight			: bold;
	  text-decoration		: none;
          }
	a:visited {
      color					: #669988;
	  background-color		: #F7F1D4;
	  font-weight			: bold;
	  text-decoration		: none;
        }
	a:hover {
	  color					: #F0DB75 ;
	  background-color		: #3D5C52;
	  font-weight			: bold;
	  text-decoration		: none;
        }
	a:active {
	  color					: #3D5C52;
	  background-color		: #E6C419 ;
	  font-weight			: bold;
	  text-decoration		: none;
	  }
	.hrule {
		color               : #527A6D; /* MC 40 */
		background-color    : #527A6D; /* MC 00 */
		height              : 0.2em;
		margin              : 4px 20px;
	}
	h1, h2, h3, h4, h5, h6 {
	  background-color       : #F7F1D4; /* CC 90 */
	  color                  : #3D5C52; /* MC 30 */
	}
	h1{
		font-family                 : Arial, sans-serif;
		font-weight                 : bold;
		font-size                   : 1.8em;
		font-style                  : italic;
		text-align                  : center;
		padding                     : 0.4em;
		margin                      : 0em;
		/* margin-bottom               : 0.3em; */
	}
	h2 {
		font-family                 : Arial, sans-serif;
		font-weight                 : bold;
		font-size                   : 1.4em;
		text-align                  : center;
		padding                     : 0.3em;
		margin                      : 0em;
		/* margin-bottom               : 0.25em; */
	}
	h3 {
		font-family                 : Arial, sans-serif;
		font-weight                 : bold;
		font-size                   : 1.3em;
		text-align                  : center;
		padding                     : 0.2em;
		margin                      : 0em;
		/* margin-bottom               : 0.2em; */
	}
	h4 {
		font-family                 : Arial, sans-serif;
		font-weight                 : bold;
		font-size                   : 1.2em;
		text-align                  : left;
		padding                     : 0.1em;
		padding-left                : 0em;
		margin                      : 0em;
		/* margin-bottom               : 0.1em; */	
	}
	h5 {
		font-family                 : Arial, sans-serif;
		font-weight                 : bold;
		font-size                   : 1.1em;
		font-style                  : italic;
		text-align                  : left;
		padding                     : 0.0em;
		margin                      : 0.0em;
		margin                      : 0em;
		/* margin-bottom               : 0.05em; */
	}
	h6 {
		font-family                 : Arial, sans-serif;
		font-weight                 : bold;
		font-size                   : 1.0em;
		font-style                  : normal;
		text-align                  : left;
		padding                     : 0.0em;
		margin                      : 0.0em;
		margin                      : 0em;
		/* margin-bottom               : 0.05em; */
	}
/* END GENERAL SETTINGS */

/* FLOAT CLEARING DIVISION */
	div.clearer {
		clear							:	left;
		height            : 1px;
	}
/* END CLEARING DIVISION */

/* BANNER SETTINGS */
	.bannerColorBand {
		position             : relative; 
		/* postion:relative needed to set the z-index */
		z-index              : 2;  
		/* the title is rendered above elements with z-index 1 */
		background-color : #527A6D; /* MC 40 */
		color            : #F0DB75; /* CC 70 */
		width            : 100%;
		border-collapse  : collapse;
/*The next item applies rounded corners (CSS3) but only in Safari and FF since it's not fully supported in all browsers*/
/*Once supported "-khtml-" and "-moz" can be removed*/
		-khtml-border-radius: 18px;
		-moz-border-radius: 18px;
	}
	.identifier {
		background-color : #293D36; /* MC 20 */
		color            : #F0DB75; /* CC 70 */
		white-space      : nowrap;
		text-align       : center;
		vertical-align   : middle;
		font-family      : Arial, sans-serif;
		padding          : 4px;
		font-size        : 24pt; 
		font-weight      : bold;
		/*The next item applies rounded corners (CSS3) but only in FF since it's not fully supported in all browsers*/
		/*Once supported "-khtml-" can be removed*/
		-khtml-border-radius-topleft: 18px;
		-khtml-border-radius-bottomleft: 18px;
		-moz-border-radius-topleft: 18px;
		-moz-border-radius-bottomleft: 18px;
	}
	.images {
		width            : 100%;
		background-image: url(http://www.imcwma.org/images/ovines_small.jpg);
		}
	.imageL {
		width:100%;
		height: 9.0em;
		background-image: url(http://www.imcwma.org/images/Arundo_small.JPG);
		background-repeat: no-repeat;
		}
	.imageR {
		width:100%;
		height: 9.0em;
		background-image: url(http://www.imcwma.org/images/Downingia_pool_small.JPG);
		background-repeat: no-repeat;
		background-position: top right;

		}
	.action {
		background-color : #293D36; /* MC 20 */
		color            : #F0DB75; /* CC 70 */
		white-space      : nowrap;
		text-align       : left;
		vertical-align   : middle;
		font-size        : 1.1em;
		font-family      : Arial, sans-serif;
		padding          : 4px;
		/*The next item applies rounded corners (CSS3) but only in FF since it's not fully supported in all browsers*/
		/*Once supported "-khtml-" can be removed*/
		-khtml-border-radius-topright: 18px;
		-khtml-border-radius-bottomright: 18px;
		-moz-border-radius-topright: 18px;
		-moz-border-radius-bottomright: 18px;
	}
	.action a:link {
		background-color : #293D36; /* MC 20 */
		color            : #F0DB75; /* CC 70 */
		font-weight      : bold;
		text-decoration  : none;
	}
	.action a:visited {
		background-color : #293D36; /* MC 20 */
		color            : #F0DB75; /* CC 70 */
		font-weight      : bold;
		text-decoration  : none;
	}
	.action a:hover {
		background-color : #F7F1D4; /* CC 90 */
		color            : #527A6D; /* MC 40 */
		font-weight      : bold;
		text-decoration  : none;
	}
	.action a:active {
		background-color : #E6C419 ; /* CC 50 */
		color            : #3D5C52; /* MC 30 */
		font-weight      : bold;
		text-decoration  : none;
	}
/* END BANNER SETTINGS */

/* PATHWAY STYLES */		
		#crumbs {	
		background-color		: #527A6D; /* MC 40 */
		color					      : #F0DB75; /* CC 70 */
		font-size				    : 1.0em;
		padding					    : 4px;
		margin-top          : 4px;
  	/*Once supported "-khtml-" can be removed*/
  	-khtml-border-radius-topleft: 9px;
  	-khtml-border-radius-topright: 9px;
  	-moz-border-radius-topleft: 9px;
  	-moz-border-radius-topright: 9px;
	}
	.pathway {
		color					      : #F0DB75; /* CC 70 */
	}
	a.pathway:link {
		background-color		: #527A6D; /* MC 40 */
		color					      : #F7F1D4; /* CC 90 */
	} 
	a.pathway:visited {
		background-color		: #527A6D; /* MC 40 */ 
		color					      : #F7F1D4; /* CC 90 */
	}
	a.pathway:hover {
		background-color		: #3D5C52; /* MC 30 */
		color					      : #F0DB75;/* CC 70 */
	}
	a.pathway:active {
		background-color		: #527A6D; /* MC 40 */
		color					      : #F0DB75; /* CC 70 */
	}
	.crumbstext {
		font-size           : 0.9em;
		font-weight         : bold;
		font-family         : "Arial", sans-serif;
	}
/* END PATHWAY STYLES */
	
/* RIGHT COLUMN MODULE SETTINGS */
	#columnRight {
		float               : left;
		/* alternate approach:
		position            : absolute;
		top                 : 5em;
		right               : 20px; */
		width               : 12em;
		margin               : 0px;
		padding              : 0px;
	}
	#columnRight ul {
		list-style-type      : none; /* no bullets */
		list-style-position  : outside;
		margin               : 0px;
		padding              : 0px;
	}
	#columnRight ul li {
		padding              : 0px 0.1em;
		margin               : 0px 4px 0px 0px;
	}
/* END RIGHT COLUMN MODULE SETTINGS */

	
/* TABLE MODULE STYLES */	
	table.moduletable {
		/* styling the module table */
		margin: 4px;
		width: 100%;
		  	/*Once supported "-khtml-" can be removed*/
  	-khtml-border-radius-topleft: 9px;
  	-khtml-border-radius-topright: 9px;
  	-khtml-border-radius-bottomleft: 9px;
  	-khtml-border-radius-bottomright: 9px;
  	-moz-border-radius-topleft: 9px;
  	-moz-border-radius-topright: 9px;	
  	-moz-border-radius-bottomleft: 9px;
  	-moz-border-radius-bottomright: 9px;	
		border: 1px solid #293D36	;
		background-color: #F0E4A8;
		}	
	table.moduletable th {
		/* styling the module header, and the module titles */
		font-family: Arial, Verdana, Helvetica, sans-serif;
		font-size: 1.1em;
		font-weight: bold;
		color: #EBD6AD; /*MC 30% */
		background-color: #3D5C52; /*CC 70% */
		text-align: left;
		padding: 4px;
		  	/*Once supported "-khtml-" can be removed*/
  	-khtml-border-radius-topleft: 9px;
  	-khtml-border-radius-topright: 9px;
  	-moz-border-radius-topleft: 9px;
  	-moz-border-radius-topright: 9px;		
		}
	table.moduletable td {
		/* well.. for formatting the table cells of the module table */
		font-family			: "Times New Roman", serif;
		font-size: 1.0em;
		padding: 4px;
		}
/* END TABLE MODULE STYLES */		
		
/* CONTENT STYLES */
	.contentpane {	
		background-color : #F7F1D4;
		}	
	.contentpaneopen {	
		background-color : #F7F1D4;
		padding-left     : 1em;
		padding-right    : 1em;
		}
	.contentheading, .contentheading table {
		/* This is used in several places; the Heading of contents on the frontpage,
		   it is also used for Section's heading (see above for explanation) "News" or
		   whatever heading you used */
		font-family: Arial, Verdana, Helvetica, sans-serif;
		font-size: 1.2em;
		font-weight: bold;
		font-style: italic;
	 	color: #827017;
		text-align:left;
/*		line-height: 1.2em;
		height: 1.2em; */
		}
	.contentdescription {
		/* When you create a link to a Section in the main menu and when clicked on it, it will display
		   "News" then some description (with image if you selected one) and then a list of 
		   Category of News. This style is used for formating the "DESCRIPTION" part of that page */
		font-family: Arial, Verdana, Helvetica, sans-serif;
		font-size: 11px;
		color: #333333;
		text-align: left;
		}
/* END CONTENT STYLES */


/* COMPONENT STYLES */

.componentheading, td.contentheading_stc{
	/* This is used for formatting the component's title
	   when it is displayed on its own page on the frontend */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 1.4em;
	font-weight: bold;
        font-style: italic;
 	color: #3D5C52;
	text-align:center;
	}
/* END COMPONENT STYLES */

/* JEVENT STYLES */
td.contentheading_jev{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 3em;
	font-weight: bold;
        font-style: italic;
	text-align:center;
}

/* END JEVENT STYLES */

/* BOTTOM MODULES STYLES */
#bottom {
		width               : 100%;	
	}
#bottom div {
		float               : left;
	}
#bottom a  {
		font-size         : 1em;
		display           : block;
		float             : left;
		vertical-align    : middle;
		padding           : 4px;
		margin            : 2px;
		/*The next item applies rounded corners (CSS3) but only in FF since it's not fully supported in all browsers*/
		/*Once supported "-khtml-" can be removed*/
		/*-khtml-border-radius: 6px;*/
		-khtml-border-radius: 9px;
		-moz-border-radius: 9px;

		font-family       : Arial, sans-serif;
		font-weight       : bold;
		text-decoration   : none;
		text-align        : center;   
		font-size         : 0.9em;
	}
#bottom a:link {
		background-color  : #527A6D;
		color             : #F0DB75;
	}
#bottom a:visited {
		background-color  : #527A6D;
		color             : #F0DB75;
	}
#bottom a:hover {
		background-color  : #3D5C52;
		color             : #F0DB75;
	}
#bottom	a:active {
		background-color  : #527A6D;
		color             : #F0DB75;
	}
/* END BOTTOM MODULES STYLES */