/* -------------------------------------------------------------- 
   
   grid.css
   * Sets up an easy-to-use grid of 24 columns.
-------------------------------------------------------------- */

/* Global Settings */

* 
{
	border-style: none;
    border-color: inherit;
    border-width: 0px;
    padding: 0px;
    text-decoration:none;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
}

/* Use this class on any .span / container to see the grid. */
.showgrid { background-image:url(../images/grid.png);  }


/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, 
div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, 
div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, 
div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, 
div.span-21, div.span-22, div.span-23, div.span-24 {
  float: left;
  margin-right: 10px; 
}

/* The last column in a row needs this class. */
.last, div.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1  { width: 30px; }
.span-2  { width: 70px; }
.span-3  { width: 110px; }
.span-4  { width: 150px; }
.span-5  { width: 190px; }
.span-6  { width: 230px; }
.span-7  { width: 270px; }
.span-8  { width: 310px; }
.span-9  { width: 350px; }
.span-10 { width: 390px; }
.span-11 { width: 430px; }
.span-12 { width: 470px; }
.span-13 { width: 510px; }
.span-14 { width: 550px; }
.span-15 { width: 590px; }
.span-16 { width: 630px; }
.span-17 { width: 670px; }
.span-18 { width: 710px; }
.span-19 { width: 750px; }
.span-20 { width: 790px; }
.span-21 { width: 830px; }
.span-22 { width: 870px; }
.span-23 { width: 910px; }
.span-24 { width: 950px; margin: 0; }


/* Border on right hand side of a column. */
.border {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
.colborder {
  padding-right: 24px;
  margin-right: 25px;
  border-right: 1px solid #eee;
}


/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column.  */

.pull-1 { margin-left: -40px; }
.pull-2 { margin-left: -80px; }
.pull-3 { margin-left: -120px; }
.pull-4 { margin-left: -160px; }
.pull-5 { margin-left: -200px; }

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5 {
  float:left;
	position:relative;
}

.push-1 { margin: 0 -40px 1.5em 40px; }
.push-2 { margin: 0 -80px 1.5em 80px; }
.push-3 { margin: 0 -120px 1.5em 120px; }
.push-4 { margin: 0 -160px 1.5em 160px; }
.push-5 { margin: 0 -200px 1.5em 200px; }

.push-1, .push-2, .push-3, .push-4, .push-5 { 
  float: right;
	position:relative;
}


/* Misc classes and elements
-------------------------------------------------------------- */

/* In case you need to add a gutter above/below an element */
.prepend-top { 
	margin-top:1.5em; 
}
.append-bottom { 
	margin-bottom:1.5em; 
}

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  background: #dae9f5; 
  /*color: #264409; */
  border:#7CB1DC thin solid;
  outline-color:#F00;
  padding:0;
  margin:0;
}

/* Use this to create a horizontal ruler across a column. */
hr {
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  color: #fff;
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "\0020"; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden; 
    overflow:hidden; 
}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }

/*  Settings for the Layout */
/* Header includes Logo + Search + contact */
#Header 
{
	height: 65px;
	min-height: 65px;
	padding-left:15px;
}

/* Menu contain Sub Menus */
#MenuHeader
{
	height: 44px;
	min-height: 44px;
	background:url(../images/Menu-Background.png) repeat-x;
	width:960px;
	background-color:#204298;
}

/* Text Navigation for SEO */
#TextNavigation
{
	height: 20px;
	min-height: 20px;
	text-align:center;
}
/* Copyright */
#Footer
{
	height: 20px;
	min-height: 20px;
	padding-top:4px;
	background-color:#204298;
	font-size :11px;
	color:#fff;
	overflow:auto;
	width:960px;
}
#Footer #Fleft
{
	padding-left : 10px;
	float:left;
}

#Footer #FRight
{
	float:right;
	padding-right:10px;
}

#FRight a, #Fleft a
{
	text-decoration:none;
	color:#FFF;
}



/* A container should group all your columns. */
#Wrapper {
  width: 960px;
  margin: 0 auto;
  padding: 12px;
  height:auto;
  overflow:auto;
  border:#969696 thin solid;
}

/* Logo on Top left */
#Logo 
{
	width : 496px;
}

/* Logo on Top left : Contact US*/
#ContactHeader
{	
	float:right;
	padding: 17px 15px 0 0;
	width : 132px;
	height: 26px;
	vertical-align:middle;
}

/* Contactus Hover */
#Contactus
{
	display:block;
	width : 132px;
	height: 26px;
	background-image:url(../images/Contactus.gif);
}
#Contactus:hover
{
	background-image:url(../images/Contactus_over.gif);
}

/* ================== Search box on Top left =================== */
.SearchHeader
{	
	float:right;
	width : 168px;
	height : 25px;
	padding-top : 17px;
	background:url(../images/SearchBox.gif) bottom left no-repeat;
	border:1px;
}

.SearchHeader .Search
{
    float: left;
    padding: 0;
    margin: 6px 0 0 22px;
    border:0;
    background: none;
	width:110px;
	outline: none;

}
/* Style for the Search Button */
.SearchHeader .go {
    float: right;
    margin: 3px 4px 0 0;
}
/* =================== END ==================*/
/* For the Contents */
#ContentWrapper
{
	height: 690px;
	min-height: 690px;
	background-color:#fff;
}

/* Style for the Header animation, uses jQuery */
#HeaderAnimation
{
	height : 279px;
	min-height:260px;
	margin-top:12px;
	border:0px;
	background:url(../images/shadow.gif) bottom repeat-x;
	background-color:#000;
	width:959px;
}
#HeaderAnimation2
{
	height : 260px;
	min-height:260px;
	margin-top:12px;
	border:0px;
	background-color:#000;
	width:959px;
}
#NewsTicker
{
	height:29px;
	width:874px;
	background:url(../images/NewsTickerSq.gif) no-repeat;
	padding-left:85px;
	padding-top:4px;
}
#NewsTicker #NewsDetails
{
	height:15px;
	border: #666 1px solid;
	font-size:11px;
	padding:4px;
	display:block;
	font-weight:bold;
}

#NewsTicker #NewsDetails span
{
	padding:5px 0 5px 4px;
	color:#1e469e;
}

/* Tabbed contents */
#ContentTabs
{
	height : 255px;
	min-height:255px;
	margin-top:12px;
}

/* ==============================================================================================   

		Products Page Style sheet starts here............................................. 
		Content area for the Products */
#ContentWrapperProducts
{
	height: 100%;
	min-height: 750px;
	overflow:hidden;
}

#ProductsTop
{
	width:566px;
	float:left;
	height:100%;
	padding-top:10px;
	overflow:hidden;
}
#ProductsTopSpan
{
	padding-left:95px;
	padding-top:20px;
	padding-right:15px;
	line-height:1.5em;
	font-size:12px;
}
#ProductsTopSpan500
{
	padding-left:60px;
	padding-top:40px;
	padding-right:15px;
	line-height:1.5em;
	font-size:12px;
}
#ProductsTopSpan .NormTxt
{
	
}

#ProductsDown
{
	width: 394px;
	height:100%;
	float:right;
	padding-top:10px;
	overflow:hidden;
}

/*	Find Products Box*/
#ProductsDown h2
{
	background-color:#204298;
	padding:10px;
	color:#fff;
}
#ProductsDownSearch
{
	position:relative;
	background-color:#dae9f5;
	top:-16px;
	width:175px;
	height:390px;
	float:left;	padding:10px;
}
#ProductsDownSearchCategory
{
	position:relative;
	background-color:#dae9f5;
	top:-16px;
	width:175px;
	height:390px;
	float:right;
	padding:10px;
	color:#2063a9;
	text-decoration:none;
}
#ProductsDownSearchCategory ul{
	list-style:none;
	text-align:left;
	margin:0px;
	line-height:1.8em;
}
#ProductsDownSearchCategory a{ text-decoration:none;color:#2063a9;}

/* ==============================================================================================   

		INDUSTRY SOLUTIONS STYLE HERE

	This is for the Title Image*/
#IndustryTop
{
	width: 585px;
	min-width:538px;
	float:left;
	height:100%;
	padding-top:10px;
}

/* This is for the Image on  the Right side of the Page */
#IndustryDown
{
	width: 375px;
	float:right;
	padding-top:77px;
	overflow:hidden;
}

/* This is for the Text on the Right side of the Page below the image */
#IndustryText
{
	background-color:#dae9f5;
	padding:10px 20px 10px 20px;
	line-height:16px;
}

#IndustryDown  .C_Contents
{
	background-color:#dae9f5;
	color:#204298; 
	display:block;
	padding:4px;
	text-decoration:none;	
	font-size:11px;
	width:300px;
}
#IndustryDown .Captions 
{
	background-color:#204298;
	color:#fff; 
	display:block;
	padding:4px;
	width:300px;
}
#IndustryDown .C_Contents ul
{
		list-style-type:square;
		line-height:1.8em;
		text-decoration:none;
}

#IndustryDown .C_Contents a
{
	color:#204298; 
}


/* ==============================================================================================   

		INDUSTRY PLATFORMS STYLE HERE
*/
#PlatformsTopSpan
{
	padding-left:0px;
	padding-top:20px;
	padding-right:30px;
	height:auto;
	overflow:auto;
}

/* ==============================================================================================   

		PRODUCTS BY PLATFORM STYLE HERE
*/
#PlatformsDown
{
	position:relative;
	background-color:#d4e6f6;
	top:-16px;
	height:350px;
	float:left;	
	padding:10px;
	width:175px;
	text-align:center;
}

/* ==============================================================================================   

		GENERAL STYLE HERE
*/
#ContentWrapperGeneral
{
	min-height: 550px;
	padding:10px 0 10px 0;
	height:auto;
	overflow:hidden;
}

#ContentWrapperGeneral h3
{
		background-color:#204298;
		color:#FFF;
		padding:6px;
}

/* ==============================================================================================   

		PRODUCT LEGECY STYLES
*/
.PL_HeaderTitle 
{
	height:35px;
	min-height:35px;
	color:#000;
	padding-top :14px;
	padding-left:60px;
	font-size:28px;
	line-height:normal;
}
.PL_HeaderTitle2 
{
	height:35px;
	min-height:35px;
	color:#000;
	padding-left:60px;
	font-size:28px;
	line-height:normal;
}
.PL_SubHeader
{
	background:#204298 url(../images/product-legecy-subheader-bg.gif) right no-repeat;
	color:#FFF;
	padding-left:60px;
	height:115px;
}
.PL_SubHeader .title
{
	position:relative;
	top:46px;
	color:#FFF;
	font-size:18px;
}

.PL_Details
{
	width:535px;
	min-width:535px;
	float:left;
	margin-top:20px;
	/* ===== =====*/
	overflow:none;    /* This hack if for stupid IE6 for not taking the Overflow:none value. */ 
	_overflow:hidden;
	/* ===== =====*/
	padding:0 14px 10px 60px;
	line-height:1.5em;
  	/* border-right:#204298 1px solid; */
	min-height:610px;
}

.PL_Details ul
{
	color:#204298;
	list-style-type:square;
	line-height:inherit;
}

.PL_Details .Order
{
	color:#204298; 
	font-size:14px;
	font-weight:bold;
}

.Order
{
	color:#204298; 
	font-size:14px;
	font-weight:bold;
}

.PL_Options
{
	width:350px;
	min-width:350px;
	float:right;
	padding-top:20px;
	overflow:hidden;
}

#PL_Pic td
{
	padding-left:20px;
}
.PL_Options .Captions
{
	background-color:#204298;
	color:#fff; 
	display:block;
	padding:4px;
}

.PL_Options .C_Contents
{
	background-color:#dae9f5;
	color:#204298; 
	display:block;
	padding:2px;
	text-decoration:none;	
	font-size:11px;
}

.C_Contents ul
{
		list-style-type:square;
		line-height:1.8em;
		text-decoration:none;
}

.C_Contents a
{
	color:#204298; 
}

.PL_SubHeader .titleA
{
	position:relative;
	top:17px;
	color:#FFF;
	font-size:18px;
	line-height:1.4em;
}
.PL_SubHeader .titleB
{
	position:relative;
	top:4px;
	color:#FFF;
	font-size:18px;
	line-height:1.5em
}
/* Sub Header Image */
.PL_SubHeaderImage
{
	height:215px;
}
.PL_SubHeaderImage .PL_SubHeaderText
{
    width:450px;
    padding-left:58px;
    padding-top:12px;
    line-height:2em;
}
/* Sub Header Image for Series Page*/
.SP_SubHeaderImage
{
	background:url(../Products_images/ex1200-header.jpg) right no-repeat;
	height:215px;
}

.GN_OrderBox { 
  background: #dbe9f6; 
  border:#204298 thin solid;
  border-bottom:0;
  padding:0;
  margin:0;
}
.GN_OrderBox td{
  border-bottom:#204298 thin solid;
}

.GN_Details
{
	width:500px;
	min-width:500px;
	float:left;
	margin-top:20px;
	padding:0 14px 10px 55px;
	overflow:auto;
	line-height:1.5em;
  	/* border-right:#204298 1px solid; */
}

.GN_Details_New
{
	width:500px;
	min-width:500px;
	float:left;
	margin-top:20px;
	padding:0 14px 10px 55px;
	overflow:auto;
	line-height:1.5em;
  	/* border-right:#204298 1px solid; */
}

/* ------------ PARTNER PAGE STYLESHEETS --------------------*/
.Partner_Header
{
	line-height:1.6em;
	padding-top:28px;
}
.Partner_Header .PHead
{
	float:left;
}
.Partner_Header H4 
{
		color:#204298;
}
.Partner_Header .Pad_left
{
	padding-left:97px;
}
.Partner_Header .Pad_left_app
{
	padding-left:77px;
}
.Partner_Header .BBox
{
	background-color:#204298;
	color:#FFF;
	width:675px;
	padding:20px;
}
.BBox .BBox_text
{
	color:#FFF;
	width:450px;
	display:block;
}
.Partner_Header .BBox_top
{
	float:right;
	background-color:#f0f7fd;
	width:230px;
	padding:20px;
	line-height:1.7em;
	color:#204298;
	font-size:11px;
	border:1px solid #828282;
	
}
.Partner_Header .BBox_top ul li a { color:#204298; }

.Partner_Header .Content_mid
{ 
	padding-left:97px;
	width:515px;
	line-height:1.4em;
}

#PH_Left
{
   	float:left;
	width:400px;
	padding-left:97px;
}
/* =========== SEARCH ============ */
#SearchWrapper
{
	padding-left:25px;
	width:95%;
	overflow:visible;
}

#GSearchWrapper
{
	padding-left:25px;
	width:95%;
	height:1150px;
	min-height:1150px;
}
	
/* =========== COMPANY PROFILE ============ */
#CProfile
{
	padding-top:0px;
	width:960px;
	overflow:hidden;
	line-height:1.5em;
}
#CProfile  .floatL
{
	float:left;
	margin-right:15px;
	padding-right:15px;
}

#CProfile  .floatR
{
	float:left;
	width:525px;
}

.CProfile_LeftText
{
	padding-left:60px;
	width:550px;
	float:left;
}
#CProfile_RightLinks
{
	width:300px;
	float:right;
}
#CProfile_RightLinks .Header
{
	background-color:#204298;
	display:block;
	padding:8px;
	color:#FFF;
}
#CProfile_RightLinks .Contents
{
	background-color:#dae9f5;
	display:block;
	padding:8px;
}
/* ---------------------------------- 
For login Form
*/
#ContentWrapperGeneralLeft
{
	min-height: 550px;
	overflow:auto;
	padding:10px 0 10px 0;
	height:auto;
	overflow:hidden;
}

#ContentWrapperGeneralLeft #FormLogin
{
	width:500px;
}

#ContentWrapperGeneralLeft #FormLogin input
{
	border:#334974 1px solid;
	padding:2px;
}

#ContentWrapperGeneralLeft #FormLogin input
{
	border:#334974 1px solid;
	padding:2px;
}

/* ============= Partner Description ================== */
#PartnerImageLeft
{
	width:220px;
	float:left;
	min-height:550px;
	text-align:right;
	padding:10px;
	padding-top:0;
}
#PartnerContentRight
{
	float:left;
	width:600px;
	min-height:550px;
	padding:10px;
	border-left:#666 1px solid;
	padding-top:0;
	line-height:1.6em;
	margin-bottom:25px;
}
#PartnerContentRight .CompanyName
{
	color:#204298;
	font-size:17px;
	font-weight:bold;
}
#PartnerContentRight .Address
{
	font-size:12px;
}
#PartnerContentRight .Description
{
	font-size:11px;
}
#PartnerMainContent
{
	background-color:#099;
}

/* ============ For VTI News =========== */
.LeftRightPadd
{
	padding:2px 22px 2px 22px;
}

.LeftRightPadd img
{
	float:left;
	padding-right:15px;
	padding-bottom:20px;
}

/* ============ Latest News ============== */
.NewsDiv
{
}

/* ============ Upcoming Events ============== */
.EventsDiv
{
	padding-left:40px;
}
.EventsDiv td 
{
	padding:3px;
	border:0;
	margin:0;
}

/* ============ Quality styles ============== */
.Quality_Header
{
	padding-left:60px;
	width:525px;
	line-height:1.5em;
	float:left;
}
.Quality_Header h1
{
	font-size:14px;
	color:#204298;
	line-height:1.6em;
	padding-top:28px;
}
#Q_Box
{
	width:290px;
	float:right;
	padding-top:35px;
}
#Q_Box #Title
{
	padding:6px;
	background-color:#204298;
	color:#fff;
}
#Q_Box #Contents
{
	padding:6px;
	background-color:#dae9f5;
	color:#fff;
	line-height:2em;
}
#Q_Box #Contents a
{
	color:#204298;
}
.QABottom
{
	background-color:#933;
}
.QABottom .ImgFloatLeft
{
	float:left;
	width:260px;
	padding-left:55px;
	padding-top:100px;
}
.QABottom .TxtFloatRight
{
	float:left;
	width:550px;
	padding-left:55px;
}
.QABottom .TxtFloatRight ul
{
	padding-left:25px;
}

/* Industry Details */
#IndustryDetails
{
	padding-left:60px;
	width:700px;
}

/* Industry Platforms */

#ProductPlatforms
{
	width:195px;
	float:right;
}
#ProductPlatforms h3
{
	background-color:#204298;
	padding:3px;
	color:#FFF;
}
#IndustryPDown
{
	width: 422px;
	height:100%;
	float:right;
	padding-top:77px;
	overflow:hidden;
}
#IndustryPTop
{
	width:500px;
	float:left;
	height:100%;
	padding-top:10px;
}
#IndustryTopSpan
{
	padding-left:0px;
	padding-top:20px;
	padding-right:0px;
	height:auto;
	overflow:auto;
	width:538px;
}
#IndustryPTopSpan
{
	padding-left:0px;
	padding-top:20px;
	padding-right:0px;
	height:auto;
	overflow:auto;
	width:538px;
}
#IndustryPTopSpan .PaddLeft
{
	padding-left:95px;
}
#IndustryPTop1
{
	width: 538px;
	min-width:538px;
	float:left;
	height:100%;
	padding-top:10px;
}
/* ==================================================================== */
/* DEFAULT / HOME PAGE COLUMNS */

#DefaultTab
{
	padding:1px;
	margin:1px;
	border:1px #000 solid;
}

/* For Sales and Support */
.SS_Table
{
	font-size:11px;
	padding:6px;
	width:450px;
}
.SS_Table td
{
	border:1px #000 solid;
	padding:6px;
}
#SSTop
{
	width: 566px;
	height:100%;
	float:left;
	padding-top:10px;
	overflow:hidden;
}
#SSDown
{
	width: 394px;
	height:100%;
	float:right;
	padding-top:10px;
	overflow:hidden;
	line-height:1.5em;
}
/* =================================== 
Careers Page Style 
*/

#Career_RightLinks
{
	width:300px;
	float:right;
}
#Career_RightLinks ul li
{
	color:#204298;
	line-height:1.9em;
	font-weight:normal;
}
#Career_RightLinks .Header
{
	background-color:#204298;
	display:block;
	padding:8px;
	color:#FFF;
}
#Career_RightLinks .Contents
{
	background-color:#dae9f5;
	display:block;
	padding:8px;
}

/* Style for Downloads */ 
#DownloadsTop
{
	width: 960px;
	height:100%;
	padding-top:10px;
	overflow:hidden;
}
/* Contact us details */

#SSDown .Captions
{
	background-color:#204298;
	color:#fff; 
	display:block;
	padding:4px;
}

#SSDown .C_Contents
{
	background-color:#dae9f5;
	color:#204298; 
	display:block;
	padding:4px;
	text-decoration:none;	
	font-size:11px;
}

#SSDown .C_Contents ul
{
		list-style-type:square;
		line-height:1.8em;
		text-decoration:none;
}

#SSDown .C_Contents a
{
	color:#204298; 
}

/*==========================================================
	DAC Express table.
*/

.DAC_tab
{
	position:relative;
	width:818px;
	height:491px;
	background-color:#e8e3d1;
	z-index:100000;
}