﻿@charset "utf-8";
body  {
	font: 90% 
	'Arial', Helvetica, sans-serif;
	background: white;
	margin: 15px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color:#CECECE;
}

.hiddenPic {display:none;}


img {border: none;
	padding:0;
	margin:0;
	}

.twoColFixLtHdr #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */

} 
.twoColFixLtHdr #header {
vertical-align:middle;
	background-color: #FFF;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	height:180px;
	background-image: url(images/header_sky_900px.jpg);
	width:900px;
}



.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 10px;
	background-color: #FFF;
	overflow:visible;
	margin-top:5px;
}
.twoColFixLtHdr #mainContent { 
	margin: 15px 5px 15px 220px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer {
	padding: 0 0px 0 0px;
	background-color: #FFF;
	text-align:center;
} 


#footer a {
	text-decoration:none;
    font: bolder 12px 'Arial', Helvetica, sans-serif;
	color: #333366;
	text-align:center;
} 

#footer a:hover
{
	text-decoration:none;
    font: bolder 12px 'Arial', Helvetica, sans-serif;
	color:#000;
	text-align:center;
} 
#facebook
{
	margin: 5px 0 5px 0;

}


#mainContentrow
{
	margin: 5px;
	padding: 5px;
	float:left;
	overflow:hidden;
}

#mainContentrow_front
{
	width:800x;
	height: 410px;
	margin: 5px;
	float:left;
	overflow:hidden;
}


#mainContentrow_about
{
	width:850px;
	background-image: url(./images/front_bg.png);
	background-repeat:repeat-y;
	margin:3px;
	color:#000099;
	font-weight:500;
	font-family:Arial, Helvetica, sans-serif;
	padding:3px;
	font-size:12px;
	overflow:hidden;
	height:200px;
}

#mainContentrow_mission
{
	width:850px;
	background-image: url(./images/front_bg.png);
	background-repeat:repeat-y;
	margin:3px;
	color:#000099;
	font-weight:500;
	font-family:Arial, Helvetica, sans-serif;
	padding:3px;
	font-size:12px;
	overflow:hidden;
	height:200px;
}


#menu_header
{
background-image:url(./images/Header_Blue_Top_bg.png);
margin:0;
padding:0;
height:35px;
color:white;
}

#box
{
	width:310px;
	height: 150px;
	float:left;
	background-image: url(./images/box_bg.png);
	background-repeat:repeat-x;
	margin:5px;
	color:#000099;
	font-weight:500;
	font-family:Arial, Helvetica, sans-serif;
	padding:3px;
	font-size:12px;
}

.internal_box
{
	margin:2px;
	width:130px;
	float:left;
}

.internal_box_right
{
	margin:2px;
	width:170px;
	float:left;
}


.mainContent #mainContentrow1
{
	margin: 5px;
	width:inherit;
}

#Footer_Blue_Bar
{
	background-image: url(./images/Header_Blue_Top_bg.png);
	height: 22px;
	padding:0;
	margin:2;
	width:900px;
	color:#FFFFFF;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:12px;
	text-align:center;
}
#Footer_Purple_Bar 
{
	background-image: url(images/purple_footer_900px.png);
	height: 100px;
	padding:0;
	margin:0;
	width:900px;
}

#Offer_Box
{
	background-image: url(images/what_we_offer_bg.png);
	background-repeat:repeat-y;
	width:200px;
	padding:0;
	margin:0 0 5px 0;;
	background-color:#000066;
}

#Who_are_we_box
{
	width:185px;
	padding:0;
	margin:10px;
	color:#003399;

}

#Button
{	
	width: 200px;
	margin:0;
	padding:0;
}



.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#Menu_Bar
{
	width:inherit;
	height:50px;
}


#text {margin:0px; width:500px}
.hotspot {padding-bottom:0px; border-bottom:0px cursor:pointer}

#tt {position:absolute; display:block; background:url(images/tt_left.png) top left no-repeat}
#tttop {display:block; height:5px; margin-left:5px; background:url(images/tt_top.png) top right no-repeat; overflow:hidden}
#ttcont {display:block; padding:2px 12px 3px 7px; margin-left:5px; background-image:url(images/tt_bg.png);background-repeat:repeat-y;color:#FFF}
#ttbot {display:block; height:5px; margin-left:5px; background:url(images/tt_bottom.png) top right no-repeat; overflow:hidden}


#basic-accordian{
	border:5px solid #EEE;
	padding:5px;
	width:350px;
	position:absolute;
	left:50%;
	top:50%;
	margin-left:-175px;
	z-index:2;
	margin-top:-100px;
}


.accordion_headings{
	padding:5px 5px 5px 25px;
	background: url(accordion_a.gif) no-repeat;
	color:#fff;
	border:1px solid #fff;
	cursor:pointer;
	font-weight:bold;
}
.accordion_headings:hover{
	background-position: left -25px;
}

#basic-accordian .header_highlight{
	color: #222;
	background-position: left -50px;
	cursor: text;
}
.accordion_child{
	padding:15px;
	background:#EEE;
}


/* header menu */
#menu {	
	clear: both;
	margin: 0; 
	padding: 0 0 0px 0;		
	width: 900px;		
	background: #FFF url(wrap-bg.jpg) repeat-y;
	float: left;
	background-color: #EEE;
}
#menu ul {
	font: bolder 12px 'Arial', Helvetica, sans-serif;
	color: #FFF;
	background-color: #EEE;		 	
	margin: 0 15px;
	padding: 0;
	display: inline;
	border-bottom: 0px solid #FFF;
	float: left;	
}
#menu li {
	float: left;
	list-style: none;
}
#menu li a {
	display: block;
	padding: 5px 15px;	
	color: #FFF;	
	text-decoration: none;	
}
#menu li a:hover {
	background: #C8935D;
	color: #FFF;
}
#menu li a#current  {
	background: #993333;
	color: #FFF;
}

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
#menu ul.MenuBarHorizontal
{
	
			 	
	margin: 0 15px;
	padding: 0;
	display: inline;
	float: left;
	width:885px;
	
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
#menu ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
#menu ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align:center;
	cursor: pointer;
	width: 10.5em;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
#menu ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 11.7em;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
#menu ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
#menu ul.MenuBarHorizontal ul li
{
	width: 11.7em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
#menu ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
#menu ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
#menu ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
#menu ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	color: #333;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
#menu ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #33C;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
#menu ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #33C;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
#menu ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(./SpryAssets/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
#menu ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(./SpryAssets/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
#menu ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(./SpryAssets/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
#menu ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(./SpryAssets/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
#menu ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}




#wrapper {
    width: 575px;
    margin: 3px auto;
}

#intro {
    padding-bottom: 10px;
}

#slider {
    width: 575px;
    margin: 0 auto;
    position: relative;
	border: 10px solid #ccc;
}

.scroll {
	overflow: hidden;
	width: 575px;
    margin: 0 auto;
    position: relative;
}

.scrollContainer {
	position: relative;
}

.scrollContainer div.panel {
    padding: 5px;
    width: 270px;
	height: 318px;
}

#left-shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 12px;
	bottom: 0;
	background: url(./images/leftshadow.png) repeat-y;
}

#right-shadow {
	position: absolute;
	top: 0;
	right: 0;
	width: 12px;
	bottom: 0;
	background: url(./images/rightshadow.png) repeat-y;
}

.inside {
	padding: 10px;
	border: 1px solid #999;
}

.inside img {
	display: block;
	border: 1px solid #666;
	margin: 0 0 10px 0;
	width: 250px;
}

.inside h2 {
	font-weight: normal;
	color: #111;
	font-size: 16px;
	margin: 0 0 8px 0;
}

.inside p {
	font-size: 11px;
	color:#000033;
}


.scrollButtons {
    position: absolute;
    top: 127px;
    cursor: pointer;
}

.scrollButtons.left {
    left: -45px;
}

.scrollButtons.right {
    right: -45px;
}

.hide {
    display: none;
}


/* Form */
form {
	width: 500px;
	border: 1px solid #EEE;
	padding: 10px;
	margin: 40px auto;
	font-family: tahoma, verdana, "sans-serif";
	margin: 0;
	padding: 0;
	font-size: 95%;
	
}

label {
	display: block;
	margin-top : 8px;
	width: 100%;
	background-repeat: no-repeat;
	font-size: 95%;
	padding: 0;
}

.blue {
	color: #0099CC;
	font-weight: bold;
	padding: 0;
}



/* Congratulation message */
.MsgSent {
	Display: block;
	padding: 5px;
	margin: 0;
	width: 400px;
	text-align: center;
	border: 1px solid #EEE;
	background-color: white;
	padding: 0;
}

.MsgSent h1 {
	background: url(./images/MsgSent.gif) no-repeat 0 0;
	padding-left: 5px;
	height: 85px;
	line-height: 85px;
	padding: 0;
}

/* Error message */
.MsgError {
	Display: block;
	padding: 10px;
	margin: 40px auto;
	width: 400px;
	text-align: center;
	border: 1px solid #EEE;
	background-color: white;
}

.MsgError h1 {
	background: url(./images/MsgError.gif) no-repeat 0 0;
	padding-left: 20px;
	height: 85px;
	line-height: 85px;
	color: #CC0000;
}

.MsgSent p, .MsgError p {
	font-size: 1.3em;
	color:#999;
}

/***** FormCheck *****/
.tipsbox .tipsbox_top_left{
	background : url('./images/top_left.png') no-repeat;
	_background : url('./images/top_left.gif') no-repeat;
	_background-position : 9px 8px;
}

.tipsbox .tipsbox_top{
	background : url('./images/top.png') repeat-x;
	height : 17px;
	_background : url('./images/top.gif') repeat-x;
	_background-position : 0px 8px;
}

.tipsbox .tipsbox_top_right{
	background : url('./images/top_right.png') no-repeat;
	_background : url('./images/top_right.gif') no-repeat;
	_background-position : 0px 8px;
}

.tipsbox .tipsbox_left{
	background : url('./images/left.png') repeat-y;
	width : 17px;
	_background : url('./images/side.gif') repeat-y;
	_background-position : 9px 8px;
}

.tipsbox .tipsbox_right{
	background : url('./images/right.png') repeat-y;
	width : 22px;
	_background : url('./images/side.gif') repeat-y;
	_width : 9px;
}

.tipsbox .tipsbox_bottom_left{
	background : url('./images/bottom_left.png');
	_background : url('./images/bottom_left.gif') no-repeat;
	_background-position : 9px 0px;
}

.tipsbox .tipsbox_mark{
	background : url('./images/mark.png') no-repeat;
	height : 36px;
	_background : url('./images/mark.gif') no-repeat;
}

.tipsbox .tipsbox_bottom_right{
	background : url('./images/bottom_right.png');
	_background : url('./images/bottom_right.gif') no-repeat;
}

.tipsbox .tipsbox_inner, .tipsbox .tipsbox_inner_ie6{
	background : url('./images/inner.png');
}

.tipsbox .tipsbox_inner_ie6 {
	padding : 4px;
}

.tipsbox .tipsbox_error {
	background : url('./images/error.png') no-repeat;
	_background : url('./images/error.gif') no-repeat;
	width: 40px;
	height: 40px;
	margin-top: 5px;
	float: left;
	clear: left;
}

.tipsbox p, .tipsbox {
	font-size: 1em;
	font-family: tahoma, verdana, "sans-serif";
	margin : 0;
	padding : 0;
	border : 0;
	color : #FFF;
}

.tipsbox p {
	padding-left: 55px;
	line-height: 15px;
}

.tipsbox p span {
	font-size: 1em;
	font-weight: bold;
	color: red;
	line-height: 35px;
}


.error_f {
	border : 1px dotted #666;
	margin-top : 5px;
	background-color : #EAEAEA;
}

.error_f p {
	margin : 5px;
	color : #A00;
}

.error_f p span {
	font-size : 1.1em;
	color : #000;
	margin : 5px 0px 0px 0px;
}

/*Forms defaults - change as needed*/
input, textarea {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#404040;
}
label {
	color:#999;
	cursor:pointer;
	padding-left:2px;
	line-height:16px;
}
label.chosen {color:#333;}

/*Transparent items*/
.outtaHere {
	position:absolute;
	left:-3000px;
}

/*Radio buttons*/
.radioArea, .radioAreaChecked {
	display:block;
	float:left;
	clear:left;
	width:15px;
	height:14px;
	font-size:0;
	cursor:pointer;
}
.radioArea {background:url(./images/radio.gif) no-repeat left top;}
.radioAreaChecked {background:url(./images/radio.gif) no-repeat left bottom;}

/*Checkboxes*/
.checkboxArea, .checkboxAreaChecked {
	display:block;
	float:left;
	clear:left;
	width:13px;
	height:13px;
	font-size:0;
	padding:0;
	margin:0;
	cursor:pointer;
}
.checkboxArea {background:url(./images/checkbox.gif) no-repeat left top;}
.checkboxAreaChecked {background:url(./images/checkbox.gif) no-repeat left bottom;}
.focused {border:1px dotted #ddd;}

/*Text inputs*/
.textinput, .textinputHovered {
	height:15px;
	background:url(./images/input_bg.gif) repeat-x left top;
	border:none;
	padding:4px 0;
	vertical-align:middle;
}
.textinputHovered {background-position:left bottom;}
.inputCorner {
	padding-bottom:0;
	vertical-align:middle;
}

/*Text areas*/
.txtarea .tr, .txtarea .tr_xon {background:url(./images/txtarea_tr.gif) no-repeat top right;}
.txtarea .tr_xon {background:url(./images/txtarea_tr_xon.gif) no-repeat top right;}
.txtarea img.txt_corner {
	width:5px;
	height:5px;
	display:block;
}
.txtarea .br, .txtarea .br_xon {background:url(./images/txtarea_br.gif) no-repeat top right;}
.txtarea .br_xon {background:url(./images/txtarea_br_xon.gif) no-repeat top right;}
.txtarea .cntr {background:url(./images/txtarea_cntr.gif) repeat-y right top;}
.txtarea .cntr_xon {background:url(./images/txtarea_cntr_xon.gif) repeat-y right top;}
.txtarea .cntr_l, .txtarea .cntr_l_xon {
	width:5px;
	background:url(./images/txtarea_l.gif) repeat-y left top;
	float:left;
}
.txtarea .cntr_l_xon {background:url(./images/txtarea_l_xon.gif) repeat-y left top;}
.txtarea textarea {
	border:0;
	background:none;
	padding:0;
	margin:5px;
}

/*Selects*/
.selectArea {
	width:200px;
	height:21px;
	background:url(./images/select_bg.gif) repeat-x left top;
}
.selectArea .left {
	width:8px;
	height:21px;
	float:left;
	background:url(./images/select_left.gif) no-repeat left top;
}
.selectArea .right {
	width:21px;
	height:21px;
	float:right;
	background:url(./images/select_right.gif) no-repeat left top;
}
.selectArea .right a {
	display:block;
	width:200px;
	height:21px;
	margin-left:-179px;
	position:absolute;
}
.selectArea .right i {display:none;}
.selectArea .center {
	width:160px;
	color:#FFF;
	padding-top:3px;
	overflow:hidden;
	white-space:nowrap;
}

/*Selects drop-down*/
.optionsDivInvisible, .optionsDivVisible {
	position:absolute;
	margin-top:-1px;
	margin-left:3px;
	width:172px;
	background:#6f7074;
	padding:2px;
	font-size:11px;
	z-index:20;
}
.optionsDivInvisible {display:none;}
.optionsDivVisible {display:block;}
.optionsDivVisible p {
	margin:0;
	padding:0;
}
.optionsDivVisible a {
	color:#F2F2F2;
	text-decoration:none;
	display:block;
	padding:1px 4px;
	border:1px solid #6f7074;
}
.optionsDivVisible a:hover {
	color:#FFF;
	background:#5F6062;
	border-color:#cfd0d6;
}

/*Button*/
.buttonSubmit, .buttonSubmitHovered {
	width:auto;
	height:26px;
	color:#FFF;
	font-weight:bold;
	padding:2px;
	background:url(./images/button_bg.gif) repeat-x left top;
	cursor:pointer;
	border:none;
}
.buttonSubmitHovered {background-position:left bottom;}
.buttonImg {vertical-align:bottom;}

#contactList {
	padding-left:2em;
	width:36em;
}

.inst {
	font-size:1.4em;
	line-height: 1.714286em;
	margin-bottom:1em;
}

#contactList dl, #contact form label {
	font-size:1.2em;
}

#contactList dl {
	margin-top:1.5em;
}

#contactList dt {
	color:#7d502e;
	height:2.7em;
	padding-left:55px;
	line-height:1.1em;
}

#maurice{ background:url(images/Maurice_small.png) no-repeat left top; }
#denis { background:url(images/denis_small.png) no-repeat left top; }
#liam { background:url(images/liam_small.png) no-repeat left top; }
#james { background:url(images/James_OConnell_small.jpg) no-repeat left top; }
#bernard { background:url(images/Bernard_Butler_Small.jpg) no-repeat left top; }
#TeresaB{ background:url(images/Teresa_browne_small.jpg) no-repeat left top; }
#AngelaG{ background:url(images/angela_gleeson_small.jpg) no-repeat left top; }
#PaulineMcA{ background:url(images/Pauline_Kirby_McAuliffe_Small.jpg) no-repeat left top; }
#JoB{ background:url(images/Jo_Burke_Small.jpg) no-repeat left top; }
#MariaC{ background:url(images/maria_campbell_small.jpg) no-repeat left top; }
#ShaunR{ background:url(images/Shaun_Riordan_Small.jpg) no-repeat left top; }
#DeirdreMcA{ background:url(images/Deirdre_McAuliffe_small.jpg) no-repeat left top; }
#SarahR{ background:url(images/sarah_small.gif) no-repeat left top; }
#JulieR{ background:url(images/Julie_Rae_small.jpg) no-repeat left top; }


#contactList a {
	font-weight:bold;
	color:#000000;
	text-decoration:none;
}

#contactList a:hover {
	text-decoration:underline;
}

#contactList dd {
	margin-bottom:1.43em;
	padding-left:35px;
	margin-top:-1.1em;
	color:#383838;
}

#slideshow {
	position:relative;
	width:310px;
	height: 150px;
	float:left;
	background-image: url(./images/box_bg.png);
	background-repeat:repeat-x;
	color:#000099;
	font-weight:500;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}

#slideshow DIV {
	position:absolute;
    z-index:8;
    opacity:0.0;
	width:310px;
	height: 150px;
	float:left;
	background-image: url(./images/box_bg.png);
	background-repeat:repeat-x;
	margin:5px;
	color:#000099;
	font-weight:500;
	font-family:Arial, Helvetica, sans-serif;
	padding:3px;
	font-size:12px;
}

#slideshow DIV.active {
    z-index:10;
    opacity:1.0;
	width:310px;
	height: 150px;
	float:left;
	background-image: url(./images/box_bg.png);
	background-repeat:repeat-x;
	margin:5px;
	color:#000099;
	font-weight:500;
	font-family:Arial, Helvetica, sans-serif;
	padding:3px;
	font-size:12px;
}

#slideshow DIV.last-active {
    z-index:9;
    width:310px;
	height: 150px;
	float:left;
	background-image: url(./images/box_bg.png);
	background-repeat:repeat-x;
	margin:5px;
	color:#000099;
	font-weight:500;
	font-family:Arial, Helvetica, sans-serif;
	padding:3px;
	font-size:12px;
}




