/* This file is part of Mura CMS. 

	Mura CMS is free software: you can redistribute it and/or modify 
	it under the terms of the GNU General Public License as published by 
	the Free Software Foundation, Version 2 of the License. 

	Mura CMS is distributed in the hope that it will be useful, 
	but WITHOUT ANY WARRANTY; without even the implied warranty of 
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
	GNU General Public License for more details. 

	You should have received a copy of the GNU General Public License 
	along with Mura CMS.  If not, see <http://www.gnu.org/licenses/>. 

	However, as a special exception, the copyright holders of Mura CMS grant you permission 
	to combine Mura CMS with programs or libraries that are released under the GNU Lesser General Public License version 2.1. 

	In addition, as a special exception,  the copyright holders of Mura CMS grant you permission 
	to combine Mura CMS  with independent software modules that communicate with Mura CMS solely 
	through modules packaged as Mura CMS plugins and deployed through the Mura CMS plugin installation API, 
	provided that these modules (a) may only modify the  /trunk/www/plugins/ directory through the Mura CMS 
	plugin installation API, (b) must not alter any default objects in the Mura CMS database 
	and (c) must not alter any files in the following directories except in cases where the code contains 
	a separately distributed license.

	/trunk/www/admin/ 
	/trunk/www/tasks/ 
	/trunk/www/config/ 
	/trunk/www/requirements/mura/ 

	You may copy and distribute such a combined work under the terms of GPL for Mura CMS, provided that you include  
	the source code of that other code when and as the GNU GPL requires distribution of source code. 

	For clarity, if you create a modified version of Mura CMS, you are not obligated to grant this special exception 
	for your modified version; it is your choice whether to do so, or to make such modified version available under 
	the GNU General Public License version 2  without this exception.  You may, if you choose, apply this exception 
	to your own modified versions of Mura CMS. */



/* @group GLOBALS
===================================== */

body {
	font-size: 62.5%;
	height: 100%;
	background: #000000 url(../images/tuxedo_bg_tile.jpg) repeat-x fixed;
	}

html {
	height: 100%;
}

textarea {
	font-family: "Lucida Grande", "Lucida Sans", Verdana, Helvetica, Arial, sans-serif;
	}

ul, ol, dl { margin-bottom: 1.5em; }

a { 
	text-decoration: underline; 
	color: #555555;
}
a:hover { 
	text-decoration: underline;
	/*border-bottom: #ff0000 1px solid;*/
	color: #000000;
}


/* @end GLOBALS
-------------------------------- */



/* @group LAYOUT
===================================== */

#container {
	width: 960px;
	margin: 0 auto;
	height: auto;
	background: #FFFFFF;
	}

#content {
	clear: both;
	height: 100%;
	}

#primary {
	float: left;
	width: 728px;
	padding: 0 15px;
	}
.oneCol #primary {
	width: 930px;
	border: 0;
	}
.threeCol #primary {
	width: 528px;
	}

.content,
.sidebar {
	min-height: 100px; /* Fixes odd no-content disappearing bug. */
	height: 100%;
	overflow: hidden;
	}

#left { float: left; }
#right { float: right; }

.sidebar {
	margin: 0 20px 0 0;
	padding: 10px 0 0 16px ;
	height: auto;
	min-height: 437px;
	width: 165px;
	background: url(../images/sidebar_shadow.gif) top left no-repeat;
	}

#left.sidebar {}
#right.sidebar {}


/* @group Layout - Header
===================================== */

#header {
	position: relative;
	background: #1B5790 url(../images/frame_topright.jpg) top right no-repeat;
	
}

/* @end Layout - Header
-------------------------------- */


/* @group Layout - Footer
===================================== */

#footer {
	clear: both;
	/*position: fixed;
	top: auto;
	bottom: 0;*/
	position:relative;
	background: #1B5790 url(../images/frame_botright.jpg) bottom right no-repeat;
	height: 130px;
	padding: 0 0 0 0;
	width: 960px;
	}

/* @end Layout - Footer
-------------------------------- */

/* @end LAYOUT
-------------------------------- */



/* @group NAVIGATION/UI
===================================== */

/* @group Nav - Primary
===================================== */

#navPrimary {
	float: left;
	clear: both;
	width: 100%;
	margin: 0 0px 0 0px;
	list-style: none;
	background-color: #2D69A2;
	}

#navPrimary li {
	float: left;
	margin: 0px 0px 0 0px;
	height: 23px;
	font-weight:normal;
	font-size: 8pt;
	color: #dddddd;
	line-height: 1.5;
	display:block;
	/*background: url(../images/navPrimaryLeftEdge.jpg) right top no-repeat;*/
	}

#navPrimary li.current {
	border-bottom: #FF8800 2px solid;	
}

#navPrimary li a{
	color:#cccccc;
	text-decoration:none;
	height:12px;
	font-weight: bold;
	line-height:22px;
	display:block;
	float:left;
	text-transform: uppercase;
	padding:0px 10px 10px 10px;
}

#navPrimary li a:hover{
	background: #6C94B8;
	border-bottom: #FF8800 3px solid;
	color: #ffffff;
}

#navPrimary li a.current {
	color: #ffffff;
}

#navPrimary li a.current:hover {
	color: #ffffff;
}

/* @group Nav - Primary - Dropdown
===================================== */
/* http://www.htmldog.com/articles/suckerfish/dropdowns/ */

#navPrimary li ul { /* second-level lists */
	display:list-item;
	position: absolute;
	left: -9999px;
	z-index: 1000;
	width: 250px;
	margin: 23px 0 0 0;
	padding: 0 10px 0px 0;
	list-style: none;
	background-color: #6C94B8;
	border-left: #B7CBDC 2px solid;
	border-right: #B7CBDC 2px solid;
	border-bottom: #B7CBDC 2px solid;

	filter:alpha(opacity=95);
	opacity: 0.95;
	-moz-opacity:0.95;

	}

#navPrimary li li { /* all list items */
	float: none;
	width: 100%; /* width needed for Opera */
	margin: 0;
	}

#navPrimary li li a {
	display: block;
	padding: .5em;
	width: 98%;
	line-height: 1;
	text-transform: none;
	color: #ffffff;
	font-weight: normal;
	}

#navPrimary li li a:hover {
	color: #000000;
	background:#B7CBDC;
	border-left: #FF8800 4px solid;
}


#navPrimary ul li.first,
#navPrimary ul li li.first { /* all list items */
	border: 0;
	}

#navPrimary ul li li.current { /* all list items */
	}

#navPrimary li ul ul { /* third-and-above-level lists */
	margin: -2.1em 0 0 12em;
	color: #333333;
	background-color: #B7CBDC;
	border-left: #6C94B8 2px solid;
	border-right: #6C94B8 2px solid;
	border-bottom: #6C94B8 2px solid;
	}

#navPrimary li ul ul a { /* third-and-above-level lists */
	color: #333333;
	}

#navPrimary li:hover ul ul,
#navPrimary li:hover ul ul ul,
#navPrimary li.sfhover ul ul,
#navPrimary li.sfhover ul ul ul {
	left: -9999px;
	}

#navPrimary li:hover ul,
#navPrimary li li:hover ul,
#navPrimary li li li:hover ul,
#navPrimary li.sfhover ul,
#navPrimary li li.sfhover ul,
#navPrimary li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	}

/* @end Nav - Primary - Dropdown
-------------------------------- */

/* @end Nav - Primary
-------------------------------- */


/* @group Nav - Secondary
===================================== */

.navSecondary { 
	border: #cccccc 0px solid;
	border-top: 0px;
	/*background: #efefef;*/
	margin: 0;
	padding: 5px 0 0 5px;
	list-style: none;
	color: #000000 !important;
	}

.navSecondary li ul {
	margin-left: 0;
	list-style: none;
	}

.navSecondary li {
	position: relative;
	margin: 0 0 1em;
	padding: 0 5px 0 1em;
	}

.navSecondary li a { 
	display: inline;
	width: 100%; /* play nice in IE6 */
	padding: 0;
	color: #222222;
	text-decoration: none; /* IE6 Bug */
	}

.navSecondary li a:hover {
	color: #000000;
	text-decoration: underline;
	}

.navSecondary li.current a {
	color: #000;
	font-weight: bold;
	}


/* @group Nav - Secondary - Second Level
===================================== */

.navSecondary li.current ul {
	margin: 10px 0 0;
	padding: 0 0 0 10px; 
	list-style: none;
	}

.navSecondary li.current ul li {
	position: relative;
	margin: 0 0 6px;
	padding: 0;
	font-weight: normal;


	}

.navSecondary li.current ul li.last { position: relative; }

.navSecondary li.current ul li a {
	/*display: block;
	padding: 0;
	font-weight: normal; */
	text-decoration: none; /* IE6 Bug */

	background:none;
	display:block;
	float:none;
	padding:6px 6px;
	margin:0;
	border:0;
	height:auto;
	color:#105cbe;
	line-height:normal;
	
	}

.navSecondary li.current ul li a:hover { 
	color: #333; 
	background:#e3edef;
	
	}
.navSecondary li.current li.current a { color: #000; }

/* @end Nav - Secondary - Second Level
-------------------------------- */

/* @end Nav - Secondary
-------------------------------- */


/* @group Nav - Footer
===================================== */

.navFooter { 
	margin: 0;
	padding: 5px 0 0 5px;
	list-style: none;
	color: #dddddd !important;
	}

.navFooter li ul {
	margin-left: 0;
	list-style: none;
	display: inline;
	}

.navFooter li {
	position: relative;
	margin: 0 0 1em;
	padding: 0 5px 0 1em;
	display: inline;
	}

.navFooter li a { 
	display: inline;
	width: 100%; /* play nice in IE6 */
	padding: 0;
	color: #dddddd;
	text-decoration: none; /* IE6 Bug */
	}

.navFooter li a:hover {
	color: #ffffff;
	text-decoration: underline;
	}

.navFooter li.current a {
	color: #000;
	font-weight: bold;
	}


/* @group Nav - Footer - Second Level
===================================== */

.navFooter li.current ul {
	margin: 10px 0 0;
	padding: 0 0 0 10px; 
	list-style: none;
	}

.navFooter li.current ul li {
	position: relative;
	margin: 0 0 6px;
	padding: 0;
	font-weight: normal;


	}

.navFooter li.current ul li.last { position: relative; }

.navFooter li.current ul li a {
	/*display: block;
	padding: 0;
	font-weight: normal; */
	text-decoration: none; /* IE6 Bug */

	background:none;
	display:block;
	float:none;
	padding:6px 6px;
	margin:0;
	border:0;
	height:auto;
	color:#105cbe;
	line-height:normal;
	
	}

.navFooter li.current ul li a:hover { 
	color: #333; 
	background:#e3edef;
	
	}
.navFooter li.current li.current a { color: #000; }

/* @end Nav - Footer - Second Level
-------------------------------- */

/* @end Nav - Footer
-------------------------------- */

/* @end NAVIGATION/UI
-------------------------------- */

/* @custom classes */
.mastheadTitle {
	font-family:sans-serif;
	font-weight: bold !important;
	font-size: 20px !important;
	color: #ffffff !important;
}

.mastheadSubtitle {
	font-family: sans-serif;
	font-weight: normal !important;
	font-size: 10pt !important;
	color: #ffffff !important;
}

.blueGradient {
	background: #0B4780 url(../images/btngradient_blue.jpg);
}

.orangeGradient {
	background: #FF8800 url(../images/btngradient_orange.jpg);
}

.leftcurvy {
	background: url(../images/left_curvy.png) left no-repeat !important;
}

.rightcurvy {
	background: url(../images/right_curvy.png) right no-repeat !important;
}

#crumbList a { 
	text-decoration: none; 
	color: #222222;
}

#homepageNavlist {
	padding-top: 40px;
	float: right;
	list-style: none;
	}

#homepageNavlist li {
	font-weight:bold;
	/*background: url(../images/navPrimaryLeftEdge.jpg) right top no-repeat;*/
	}

#homepageNavlist li a{
	color:#ffffff;
	text-decoration:none;
	font-size: 11pt !important;
	padding:0px 10px 10px 10px;
}

#homepageNavlist li a:hover{
	text-decoration:underline;
}

#div_homepage_tour {
	width: 960px;
	height: 130px;
	margin: -50px -20px 0px -15px;
	background: url(../images/homepage_bg.jpg) no-repeat;
}

#divbtn_homepage_tour {
	background: url(../images/btnTour-leftside.png) left no-repeat;
	float: right;
	margin: 86px 0 0 0;
}

#divbtn_homepage_tour2 {
	background: url(../images/btnTour-rightside.png) right no-repeat;
}

#btn_homepage_tour {
	background: #FF8800;
	padding: 0px;
	text-align: center;
	display:block;
	height: 43px;
	font-size: 14pt !important;
	font-weight: bold !important;
	color: #ffffff;
	text-decoration: none;
	margin: 0 12px 0 12px;
	padding: 0 0 0 0;
	line-height: 43px;
}

#homepage_fdx_title {
	color: #ffffff;
	font-size: 14pt !important;
	font-weight:bold;
}

.pullQuote {
	width: 220px;
	height: 144px !important;
	margin: 0 0 0 10px;
	float: right;
}

.pullQuote td {
	font-size: 8pt;
	width: 220px;
	height: 144px;
	padding: 8px 8px -20px 8px;
	background: url(../images/pullquote-bg.jpg) no-repeat;
}

.featureTable {
	width: 100%;
	border-collapse:separate;	
}

.featureTable td {
	background: url(../images/feature_td_bg.jpg) top no-repeat;
	width: 34%;
	font-size: 9pt;
	padding: 10px 0px 30px 0px;
}

.featureTable td a {
	color: #000000;
	font-size: 11pt !important;
	font-weight: bold !important;
	text-decoration: none;
}

.homepageFeatureTable {
	width: 100%;
	border-collapse:separate;	
}

.homepageFeatureTable td {
	background: url(../images/feature_td_bg.jpg) top no-repeat;
	width: 25%;
	font-size: 9pt;
	padding: 14px 14px 0 18px;
}

#featA {
	/*background: url(../images/icons/doclib.gif) top left no-repeat;*/
	/*background-image: url(../images/icons/doclib.gif);
	background-repeat: no-repeat;
	background-position: 0 0;*/
	padding: 0px 0 0 20px;
}

#featB {
	/*background: url(../images/icons/bizforms.gif) top left no-repeat;*/
	padding: 0px 0 0 20px;
}

#featC {
	/*background: url(../images/icons/dashboard.gif) top left no-repeat;*/
	padding: 0px 0 0 20px;
}

#featD {
	/*background: url(../images/icons/compatible.gif) top left no-repeat;*/
	padding: 0px 0 0 20px;
}

#featE {
	/*background: url(../images/icons/platform.gif) top left no-repeat;*/
	padding: 0px 0 0 20px;
}

#featF {
	/*background: url(../images/icons/integration.gif) top left no-repeat;*/
	padding: 0px 0 0 20px;
}

#featG {
	/*background: url(../images/icons/workflow.gif) top left no-repeat;*/
	padding: 0px 0 0 20px;
}

#featH {
	/*background: url(../images/icons/design.gif) top left no-repeat;*/
	padding: 0px 0 0 20px;
}

#homeIntroTitle {
	color: #000000;
	text-transform:uppercase;
	font-weight: bold;
}

#homeToolsTitle {
	color: #000000;
	text-transform:uppercase;
	font-weight: bold;
}

#homePlatformTitle {
	color: #000000;
	text-transform:uppercase;
	font-weight: bold;
}

#homeSeeYourselfTitle {
	color: #000000;
	text-transform:uppercase;
	font-weight: bold;
}

#linkHomeVideos {
	width: 200px;
	line-height: 48px;
	display:block;	
	background: #0B4780 url(../images/btngradient_blue.jpg);
	color: #ffffff;
	font-weight:bold;
	font-size: 11pt !important;
	text-decoration: none;
	text-align: center;
	margin-left: 30px;
}

#linkHomeContact {
	width: 420px;
	line-height: 48px;
	display:block;
	color: #ffffff;
	background: #FF8800 url(../images/btngradient_orange.jpg);
	font-weight:bold;
	font-size: 10pt !important;
	text-decoration: none;
	text-align: center;
}

#searchForm
{
	position:absolute; 
	top: 7px; 
	left: 320px;	
}

#txtKeywords {
	height: 15px;
	width: 158px;
}

#google_translate_element {
	height:26px; 
	overflow:hidden; 
	position: absolute; 
	top: 10px; 
	left: 810px;
}

#facebook_element {
	position: absolute; 
	top: 44px; 
	left: 786px;
}



/* @group MODULES
===================================== */

/* add modules, components, etc. here */

/* @end MODULES
-------------------------------- */


/* EOF */
