@charset "UTF-8";

/* SprySlidingPanels.css - version 0.1 - Spry Pre-Release 1.6 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main SlidingPanels container. This selector
 * defines the width and height of the view port for the widget. Note that
 * this selector does not set the overflow property since that is done programatically
 * by the widget. Setting the overflow property programatically ensures that
 * the contens of the widget will be fully visible should JavaScript be disabled
 * in the browser.
 *
 * If you want to constrain the width of the SlidingPanels widget, set a width on
 * the SlidingPanels container. By default, our sliding panels widget expands
 * horizontally to fill up available space.
 *
 * The SlidingPanels container is positioned relative so that content inside it
 * can be positioned relative to its upper left corner.
 *
 * Avoid placing any CSS border or padding properties on the SlidingPanels container
 * as they can affect the proper positioning and sliding animations of the contents
 * inside the container.
 *
 * The name of the class ("SlidingPanels") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * SlidingPanels container.
 */
.SlidingPanels {
	position: relative;
	width: 100%;
	height: 400px;
	padding: 0px;
	border: none;
}

/* This is the selector for the container that holds all of the content panels
 * for the widget. The SlidingPanelsContentGroup container is what gets programtically
 * positioned to create the slide animation. It is also what governs the layout of
 * the panels.
 *
 * By default, the width of the container is the same as its parent, the SlidingPanels
 * container.
 *
 * You can make the panels within the SlidingPanelsContentGroup container layout
 * horizontally by giving the SlidingPanelsContentGroup container a width that is as wide
 * or larget than the sum of the widths of all of the content panels, and then floating
 * the content panels inside the SlidingPanelsContentGroup container so they all appear
 * on the same line. You may also need to float the SlidingPanels and SlidingPanelsContentGroup
 * containers to insure that none of the content panels "leak" outside of the widget.
 *
 * Avoid placing any CSS border, margin, or padding properties on the SlidingPanels
 * container as they can affect the proper positioning and sliding animations of the
 * the container within the widget.
 *
 * The name of the class ("SlidingPanelsContentGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you want to style the
 * SlidingPanelsContentGroup container.
 */
.SlidingPanelsContentGroup {
	position: relative;
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
}


/* This is the selector for the container that holds content for a given panel. In our
 * default style implementation, the dimensions of each content panel exactly match the
 * dimensions of the view port (SlidingPanels) container. This ensures that only one
 * panel ever shows within the view port.
 *
 * Avoid placing any CSS border, margin, or padding properties on the SlidingPanels
 * container as they can affect the proper positioning and sliding animations of the
 * the panel within the widget. You can place border, margins and padding on any content
 * *inside* the content panel.
 *
 * The name of the class ("SlidingPanelsContent") used in this selector is not
 * necessary to make the widget function. You can use any class name you want to style the
 * SlidingPanelsContent container.
 */
.SlidingPanelsContent {
	width: 100%;
	height: 400px;
	overflow: hidden !important;
	margin: 0px;
	padding: 0px;
	border: none;
}

/* The class used in this selector is programatically added to the SlidingPanels container
 * anytime we are animating between panels. This rule makes sure that *all* content inside
 * the widget is overflow:none to avoid a rendering glitch that occurs in FireFox 1.5 whenever
 * there is an element inside the widget that displays a scrollbar.
 *
 * The class is automatically removed once the animation has stopped so that the overflow
 * properties of the content inside the widget should be restored.
 */
.SlidingPanelsAnimating * {
	overflow: hidden !important;
}

/* The class used in this selector is programatically added to the SlindingPanelsContent
 * container that is currently visible in the view port. The class is automatically removed
 * when the widget switches to a different panel.
 */
.SlidingPanelsCurrentPanel {
}

/* The class used in this selector is programatically added to the SlidingPanels container
 * anytime the SlidingPanels container is given focus. The class is automatically removed
 * once the SlidingPanels container loses focus.
 */
.SlidingPanelsFocused {
}


	
/*     

	STRUCTURE

*/

body
{
	font:  11px/130%  verdana, arial, sans-serif;
	background-color: #fff;
	margin: 0px;
	color: #333;
}
	

#container
	{
	margin: 10px auto 0px auto;
	padding: 0px;
	width: 980px;
	}

#top {
	width: 980px;
	font: 10px "gill sans", verdana, arial, sans-serif;
	text-transform: uppercase;
	color: #666;
	}


#top img {
	float: left;
	}

#top #topRight {
	width: 340px;
	float: right;
	}

#top #topRight a {
	color: #666;
	text-decoration: none;
	}

#top #topRight b {
	font-weight: 500;
	}

#top #topRight div#language {
	padding: 10px 0px;
	letter-spacing: .1em;
	}

#top #topRight img {
	float: none;
	}

#top #topRight span.chosen {
	font-weight: bold;
	color: #009c81;
	}

#top #topRight #loginForm {
	padding: 15px 0px 10px 0px;
	background: url(images/twolines.gif) repeat-x top left;
	font-size: 14px;
	letter-spacing: .2em;
	width: 340px;
	float: left;
	}

#top #topRight #loginForm img {
	float: none;
	}

#top #topRight #loginForm input.field {
	font-family: verdana, arial, sans-serif;
	font-size: 11px;
	color: #999;
	font-weight: normal;
	width: 130px;
	height: 14px;
	border: 1px solid #cecece;
	float: left;
	margin-right: 5px;
	padding: 5px;
	}

#top #topRight #loginForm input.btn {
	background-color: #009c81;
	color: white;
	border: none;
	float: left;
	width: 21px; 
	height: 24px;
	font-size: 10px;
	padding: 0;
	font-family: "gill sans", verdana, arial, sans-serif;
	}

.content {
	background-color: #fff;
	color: #333;
	padding: 10px 15px 25px 5px;
	text-align: left;
	float: left;
	line-height: 140%;
	}

div#frontServices {
	margin-top: 20px;
	width: 362px;
	margin-bottom: 20px;
	}

div#frontServices img {
	float: left;
	}

div#frontServices img.thumbs {
	border-right: 1px solid white;
	}

div#frontServices div.descRow {
	width: 180px;
	text-align: center;
	color:  #009c81;
	font: 10px "gill sans", verdana, arial, sans-serif;
	padding: 5px 0px 10px 0px;
	text-transform: uppercase;
	}

div#frontServices div.btmRow {
	width: 360px;
	text-align: center;
	color: #009c81;
	font: 10px "gill sans", verdana, arial, sans-serif;
	padding: 5px 0px 20px 0px;
	text-transform: uppercase;
	border-bottom: 1px solid #009c81;
	float: left;
	}

div#projects {
	margin-top: 20px;
	width: 475px;
	}
	
div#projects div.content {
	background: url(images/projects_bg.gif) no-repeat bottom left;
	color: white;
	padding: 16px 30px 30px 37px;
	line-height: 150%;
	display: block;
	width: 408px;
	}

div#projects div.content a {
	font-weight: bold;
	color: white;
	text-decoration: none;
	}

div#projects div.content h2 {
	margin: 0;
	font: 11px 'gill sans', verdana, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .1em;
	padding: 10px 0px;
	}
	
#main {
	width: 550px;
	}

	
#interior {
	width: 440px;
	}

#col2 {
	width: 475px;
	margin-top: 35px;
	}

.leftDiv {	
	float: left;	
	}

.rightDiv {
	padding: 0px;
	float: right;
	}


/*     

	formatting styles

*/


small {
	font-size: 9px;
	}

h1 {
	background-color: white;
	font-weight: normal;
	font: 18px 'gill sans', verdana, arial, sans-serif;
	color: #009c81;
	text-transform: uppercase;
	margin: 0px;
	padding: 8px 0px 4px 0px;
	letter-spacing: .1em;
	}

#col2 h2 {
	background-color: white;
	font-weight: normal;
	font: 14px 'gill sans', verdana, arial, sans-serif;
	color: #009c81;
	text-transform: uppercase;
	margin: 0px;
	padding: 8px 0px 4px 0px;
	letter-spacing: .1em;
	}

b, strong {
	color: #009c81;
	}

strong {
	font-size: 9px;
	text-transform: uppercase;
	display: block;
	margin-top: 10px;
	}

a { 
	color: #009c81;
	text-decoration: none;
	}

img.border {
	padding: 3px;
	border: 1px solid #ccc;
	float: left;
	margin: 0px 10px 10px 0px;
	}

#col2 ul {
	margin: 0;
	padding: 0;
	}

#col2 li {
	margin-left: 1.5em;
	padding: 4px 0px 0px 0px;
	}

/*     

 NAV

*/


#nav, #nav_en {
	background: url(images/nav_bg.gif) repeat-x;
	width: 980px;
	float: left;
	margin-top: 2px;
	}

#nav ul, #nav ul li, #nav_en ul, #nav_en ul li {
	padding: 0px 0px;
	margin: 0px 0px 0px 0px;
	float: left;
	list-style-type: none;
	}
	
#nav ul li a {
	font:  10px/130% 'gill sans',  arial, sans-serif;
	border-bottom: 1px solid #ccc;
	display: block;
	padding: 17px 19px 10px 19px;
	text-transform: uppercase;
	color: #666;
	text-decoration: none;
	
	}

#nav_en ul li a {
	font:  10px/130% 'gill sans',  arial, sans-serif;
	border-bottom: 1px solid #ccc;
	display: block;
	padding: 17px 24px 10px 24px;
	text-transform: uppercase;
	color: #666;
	text-decoration: none;
	}

#nav ul li a:hover, #nav_en ul li a:hover  {
	color: #009c81;

	}

#nav ul li.current a, #nav_en ul li.current a {
	font:  10px/130%  'gill sans', verdana, arial, sans-serif;
	border-top: 3px solid #009c81;
	border-bottom: 1px solid #009c81;
	display: block;
	padding: 14px 21px 10px 21px;
	text-transform: uppercase;
	font-weight: bold;
	color: #009c81;
	}






