﻿/* 
  HTML5 âœ° Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: normal; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #0069aa; text-decoration:none;}
a:hover { color: #e86530; text-decoration:underline; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }



/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }





 /* Primary Styles
 */
 

 @font-face {
 font-family: 'ProximaNova-Semibold';
 src: url("http://www.informatica.com/type/proximanova-semibold-webfont.eot");
 src: url("http://www.informatica.com/type/proximanova-semibold-webfont.eot?#iefix") format('embedded-opentype'),
	url("http://www.informatica.com/type/proximanova-semibold-webfont.woff") format('woff'),
	url("http://www.informatica.com/type/proximanova-semibold-webfont.ttf") format('truetype'),
	url("http://www.informatica.com/type/proximanova-semibold-webfont.svg#ProximaNovaSemibold") format('svg');
 font-weight: normal;
 font-style: normal;
}
 @font-face {
 font-family: 'ProximaNova-Light';
 src: url("http://www.informatica.com/type/proximanova-light-webfont.eot");
 src: url("http://www.informatica.com/type/proximanova-light-webfont.eot?#iefix") format('embedded-opentype'),
	url("http://www.informatica.com/type/proximanova-light-webfont.woff") format('woff'),
	url("http://www.informatica.com/type/proximanova-light-webfont.ttf") format('truetype'),
	url("http://www.informatica.com/type/proximanova-light-webfont.svg#ProximaNovaLight") format('svg');
 font-weight: normal;
 font-style: normal;
}
/*
 @font-face {
 font-family: 'ProximaNova-Regular';
 src: url("http://www.informatica.com/type/proximanova-regular-webfont.eot");
 src: url("http://www.informatica.com/type/proximanova-regular-webfont.eot?#iefix") format('embedded-opentype'),
	url("http://www.informatica.com/type/proximanova-regular-webfont.woff") format('woff'),
	url("http://www.informatica.com/type/proximanova-regular-webfont.ttf") format('truetype'),
	url("http://www.informatica.com/type/proximanova-regular-webfont.svg#ProximaNovaRegular") format('svg');
 font-weight: normal;
 font-style: normal;
}
*/

.web-type-light{ font-family:ProximaNova-Light, Arial, Helvetica, sans-serif;}
.web-type-semibold{ font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}


 
 
#page-thumbnail{
	display:none;}


body{
	color:#666;
	font-family:Arial, Helvetica, sans-serif;
	line-height:1.6em;
	font-size:80%;
	width:100%;
	height:100%;
	position:relative;}

h2.size22{
	font-size:22px;
	line-height:24px;
	margin-bottom:20px;}
h2{
	color:#333;
	font-weight:normal;
	font-size:18px;
	margin-bottom:10px;
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}
h3{
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}
h4{
	color:#333;
	font-weight:normal;
	font-size:14px;
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}

a.more-link{
	display:inline-block;
	font-weight:bold;
	padding-right:10px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{5be003fd-32c0-4934-8c49-acf1ae7aa710}_more-link-arrow.png") no-repeat 100% 7px;
	color: #0069aa !important; }

a.more-link:hover{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{5be003fd-32c0-4934-8c49-acf1ae7aa710}_more-link-arrow.png") no-repeat 100% -8px;
	color: #e86530 !important;}

a.button{
	display:inline-block;
	height:27px;
	padding:0px 0 0 20px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{bf556685-1787-4a0c-adeb-e67ea45c2668}_button-white.png") no-repeat 0 0;}
a.button span{
	display:inline-block;
	height:23px;
	padding:4px 20px 0 0;
	font-size:12px;
	font-weight:bold;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{bf556685-1787-4a0c-adeb-e67ea45c2668}_button-white.png") no-repeat 100% 0;}



#container{
	width:100%}


/* HEADER */
#header{
	width:100%;
	background:#366896;
	position:relative;
	z-index:10000;
	float:left;}

#header .contents{
	width:980px;
	margin:auto;
	position:relative;}
	
.header-content-container{
	width:100%;
	float:left;
	background:#366896;	
	min-height:97px;}

#logo a{
	display:block;
	width:230px;
	height:60px;
	outline:none;
	position:absolute;
	top:24px;
	left:10px;}





#header-search{
	width:175px;
	position:absolute;
	right:10px;
	top:42px;}

form.search-form{
	position:relative;
	width:175px;}
	
.search-input-bg{
	width:165px;
	padding-left:10px;
	float:left;
	height:21px;
	padding-top:5px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{65ddb561-74bf-4879-b554-6bef71bf7129}_search-bg.png") no-repeat 0 0;
}

#search{
	width:128px;
	border:none;
	color:#666;
	padding:0px 10px 0px 0px;
	outline:none;
	display:inline-block;
	float:left;
	background:none;
	}
form.search-form .search-submit{
	display:inline-block;
	width:26px;
	height:26px;
	text-indent:-9999px;
	outline:none;
	border:none;
	float:left;
	background:none;
	font-size:0px;
	line-height:0px;
	cursor:pointer;
	}



#header-links{
	width:370px;
	position:absolute;
	top:48px;
	right:190px;
	list-style:none;
	line-height:1em;}

#header-links li{
	float:left;
	margin-right:20px;}

#header-links li a{
	color:#c3d2e0;
	text-decoration:none;}
#header-links li a:hover{
	text-decoration:underline;}

#header-links li.worldwide a.worldwide{
	padding-right:16px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{8ecaf58f-1a2c-4146-b185-dc84173618ee}_header-links-arrow.png") no-repeat 100% 4px;
	position:absolute;
	z-index:1000;
	text-decoration:none;}

#header-links li.worldwide .worldwide-dropdown-header{
	width:98px;
	height:35px;
	position:absolute;
	margin:-15px 0 0 -15px;
	z-index:200;
	display:none;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{f5e5fb4e-29c9-4045-8ce8-594d619110f7}_worldwide-dropmenu-header-bg.png") no-repeat 0 0;}
#header-links li.worldwide .worldwide-dropdown{
	width:273px;
	height:291px;
	position:absolute;
	margin:20px 0 0 -15px;
	padding:10px 10px 15px 15px;
	z-index:200;
	display:none;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ca3bbf26-1719-4d61-a2f6-8e3c4eff743c}_worldwide-dropmenu-bg.png") no-repeat 0 0;}

#header-links li.worldwide .worldwide-dropdown .section1,
#header-links li.worldwide .worldwide-dropdown .section2{
	width:100px;
	float:left;
	position:relative;}
#header-links li.worldwide .worldwide-dropdown .section2{
	width:145px;
	padding-left:12px;
	margin-left:12px;
	border-left:1px solid #497ead;}
#header-links li.worldwide .worldwide-dropdown ul{
	margin:0;
	padding:0;
	list-style:none;}
#header-links li.worldwide .worldwide-dropdown ul li{
	float:none;
	margin-bottom:12px;}
#header-links li.worldwide .worldwide-dropdown ul li.more{
	margin-top:37px;
	font-weight:bold;}
/* MENU */
#menu{
	width:100%;
	background:#1b4973;
	float:left;}

#menu ul.top-menu{
	width:980px;
	margin:auto;
	border-left:1px solid #316696;
	list-style:none;}
#menu ul.top-menu li{
	float:left;
	border-right:1px solid #316696;}
#menu ul li a.top-menu{
	display:block;
	height:30px;
	padding-top:12px;
	outline:none;
	position:relative;
	text-align:center;
	color:#FFF;
	font-weight:bold;
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;
	text-transform:uppercase;
	font-size:13.2px;}
#menu ul li a.top-menu:hover{
	color:#1b4973;
	text-decoration:none;}
	
#menu ul li#menu-big-data a.top-menu{width:110px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -1px 0;}
#menu ul li#menu-products a.top-menu{width:121px;background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -112px 0;}
#menu ul li#menu-solutions a.top-menu{width:124px;background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -234px 0;}
#menu ul li#menu-customers a.top-menu{width:131px;background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -359px 0;}
#menu ul li#menu-services-training a.top-menu{width:189px;background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -491px 0;}
#menu ul li#menu-resource-library a.top-menu{width:177px;background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -681px 0;}
#menu ul li#menu-company a.top-menu{width:120px;background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -859px 0;}


#menu ul li#menu-big-data:hover a.top-menu{background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -1px -42px;color:#1b4973;}
#menu ul li#menu-products:hover a.top-menu{background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -112px  -42px;color:#1b4973;}
#menu ul li#menu-solutions:hover a.top-menu{background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -234px  -42px;color:#1b4973;}
#menu ul li#menu-customers:hover a.top-menu{background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -359px  -42px;color:#1b4973;}
#menu ul li#menu-services-training:hover a.top-menu{background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -491px  -42px;color:#1b4973;}
#menu ul li#menu-resource-library:hover a.top-menu{background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -681px  -42px;color:#1b4973;}
#menu ul li#menu-company:hover a.top-menu{background:url("http://img.en25.com/eloquaimages/clients/Informatica/{61738a05-e33a-4c18-acf6-38df0c9bdfd5}_menu.png") no-repeat -859px  -42px;color:#1b4973;}




#menu ul li .dropdown{
	width:410px;
	position:absolute;
	margin:0px 0 0 -3px;
	padding:20px 25px 25px 25px;
	z-index:200;
	display:none;}
#menu ul li#menu-big-data .dropdown{ height:70px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{49749135-bf48-4c0b-a44b-b1e2be5d6c8f}_dropdown-bg-big-data.png") no-repeat 0 0;}
#menu ul li#menu-products .dropdown{ height:285px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{4385f683-60ae-4d8c-83fa-6871f23411a7}_dropdown-bg-products.png") no-repeat 0 0;}
#menu ul li#menu-solutions .dropdown{ height:290px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d5826ae2-cca3-424f-9e9c-29e339da51f1}_dropdown-bg-solutions.png") no-repeat 0 0; width:660px;}
#menu ul li#menu-customers .dropdown{ height:200px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{f3386cce-220d-45b0-b2dc-29504aad5493}_dropdown-bg-customers.png") no-repeat 0 0;width:675px;margin-left:-148px;}
#menu ul li#menu-services-training .dropdown{ height:200px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{f1096438-b20a-49e8-b5d9-e81ee15a05f5}_dropdown-bg-services-training.png") no-repeat 0 0; width:390px;margin-left:-3px;}
#menu ul li#menu-resource-library .dropdown{ height:250px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{e2d9c8f6-9573-4c79-8e12-7e49bb087b88}_dropdown-bg-resource-library.png") no-repeat 0 0;width:505px;margin-left:-374px;}
#menu ul li#menu-company .dropdown{ height:100px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{5034cab1-632e-4108-baf9-3adbde2d87a2}_dropdown-bg-company.png") no-repeat 0 0; margin-left:-327px;}

#menu ul li .dropdown .section1,
#menu ul li .dropdown .section2,
#menu ul li .dropdown .section2b,
#menu ul li .dropdown .section3{
	float:left;
	width:195px;}
#menu ul li .dropdown .section1,
#menu ul li .dropdown .section2b{
	margin-right:18px;
	border-right:1px solid #e2e2e2;}

#menu ul li .dropdown h4{
	font-size:13px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	color:#333;}

#menu ul li .dropdown h4.no-link{
	color:#659900;
	margin-bottom:7px}
#menu ul li .dropdown ul{
	border-left:none;
	list-style:url("http://img.en25.com/eloquaimages/clients/Informatica/{00d34cdc-db11-4dd5-b2de-ac1c120430ce}_dropdown-arrow.png");
	margin:-7px 0 20px 12px;
	padding-left:0;}
#menu ul li .dropdown ul li{
	float:none;
	font-size:12px;
	line-height:1.5em;
	border:none;}
#menu ul li .dropdown a{
	color:#666;}
#menu ul li .dropdown a:hover{
	color:#0069aa;
	text-decoration:none;}
#menu ul li .dropdown h4 a{
	color:#333;
	display:inline-block;
	margin-bottom:8px;
	line-height:1.3em;}




#menu ul li#menu-customers .section1{
	width:430px;
	border-right:none;
	padding-right:0;
	margin-right:5px;}
#menu ul li#menu-customers .featured-video{
	margin-top:10px;}
#menu ul li#menu-customers .featured-video ul{
	margin-top:0}

#menu ul li#menu-customers .featured-video ul{
	list-style:none;
	margin:0;}
#menu ul li#menu-customers .featured-video ul li{
	float:left;
	position:relative;
	width:200px;
	margin-right:15px;}
#menu ul li#menu-customers .featured-video ul li a{
	display:block;
	width:200px;
	height:160px;
	text-align:center;
	color:#FFF;
	line-height:1.1em;}
#menu ul li#menu-customers .featured-video ul li a:hover{
	color:#A8CEF4;}
#menu ul li#menu-customers .featured-video ul li a span{
	position:absolute;
	bottom: 13px;
	padding:0 10px;}
#menu ul li#menu-customers .section2{
	margin-top:28px;
	border-left:1px solid #e2e2e2;
	padding-left:15px;
	width:220px;}
#menu ul li#menu-services-training .section2{
	width:170px;}
#menu ul li#menu-resource-library .find-resource-box{
	margin:3px 0 12px 0;
	padding-bottom:12px;
	border-bottom:1px solid #e2e2e2;}
#menu ul li#menu-resource-library #find-resource{
	width:420px;
	display:inline-block;}
#menu ul li#menu-resource-library #uniform-find-resource-submit{
	display:inline-block;
	color:#0069aa;}
#menu ul li#menu-resource-library .section1{
	width:280px;
	padding-right:10px;}


/* SIDE TOOLKIT */

#side-toolkit {
	position:fixed;
	top:160px;
	width:44px;
	right:0;
	z-index:100;}

#side-toolkit a.contact-us{
	display:block;
	width:44px;
	height:118px;
	float:right;
	margin-right:-5px;
	text-indent:-9999px;
	outline:none;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{63ce5f9e-bc43-4a91-9112-4d5a640bb7b9}_contact-us.png") no-repeat 0 0;
	margin-bottom:10px;}
#side-toolkit a.contact-us:hover{
	margin-right:0;}

#side-toolkit .toolkit-links{
	width:39px;
	height:177px;
	position:relative;
	float:right;
	padding-top:3px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{300c256a-54d5-48c7-b1ba-c2c25b49c5d5}_toolkit-links-bg.png") no-repeat 0 0;}

#side-toolkit .toolkit-links a{
	display:block;
	width:24px;
	height:24px;
	float:right;
	margin:6px 5px 0 0;
	text-indent:-9999px;
	outline:none;}
#side-toolkit .toolkit-links a.linkedin{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{b15413b9-b114-431d-a938-3aa0ec4d85be}_icon-linkedin.png") no-repeat 0 0;}
#side-toolkit .toolkit-links a.facebook{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{01d9d453-624e-410c-bd19-18bd416c3510}_icon-facebook.png") no-repeat 0 0;}
#side-toolkit .toolkit-links a.twitter{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{19a7c6a2-d696-4b98-a4e5-ccb6ad469592}_icon-twitter.png") no-repeat 0 0; margin-bottom:4px;}
#side-toolkit .toolkit-links a.share{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{baa963e0-ac49-4b4a-beeb-6fc4eb8e40e1}_icon-share.png") no-repeat 0 0;}
#side-toolkit .toolkit-links a.print{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ab5aca4b-74a9-47f0-aef0-54c9c30ebe83}_icon-printer.png") no-repeat 0 0;}

#side-toolkit .toolkit-links .divider{
	width:24px;
	float:right;
	height:1px;
	margin:3px 5px 0 0;
	background:#cccccc;
	line-height:0px;
	border-bottom:1px solid #FFF;
	}



#twitter-overlay,
#facebook-overlay,
#linkedin-overlay,
#share-overlay{
	display:none;
	position:fixed;
	width:274px;
	height:330px;
	padding:2px 19px 6px 5px;
	right:40px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{5a96e44f-0f25-45b8-a8c5-73312259e533}_sns-overlay-bg.png") no-repeat 0 0;
	z-index:1000;}
#twitter-overlay{top:295px;}
#facebook-overlay{top:267px;}
#linkedin-overlay{top:240px;}
#share-overlay{top:335px;
	width:204px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{5a96e44f-0f25-45b8-a8c5-73312259e533}_sns-overlay-bg.png") no-repeat 0 0;
	height:173px;}

#twitter-overlay h3,
#facebook-overlay h3,
#linkedin-overlay h3,
#share-overlay h3{
	font-size:14px;
	padding-left:30px;
	height:19px;
	margin:15px 0 0 12px;}
#share-overlay h3{
	padding-left:0;}
#twitter-overlay h3{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{b7f28a18-c3ed-4eb7-a2b2-d8ff6a3cb495}_twitter-overlay-logo.png") no-repeat 0 0;}
#facebook-overlay h3{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{748b9999-11cc-4194-8c8b-0b4fdd9055a9}_icon-facebook.png") no-repeat 0 0;height:24px;}
#linkedin-overlay h3{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{be7b96cf-790b-49c3-8a89-4dbfa463fefa}_icon-linkedin.png") no-repeat 0 0;height:24px;}


#twitter-overlay a.close,
#facebook-overlay a.close,
#linkedin-overlay a.close,
#share-overlay a.close{
	display:block;
	width:10px;
	height:10px;
	text-indent:-9999px;
	outline:none;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{dfca18a9-a58a-4e2f-9d81-b71c0e17c55a}_sns-overlay-close.png") no-repeat 0 0;
	float:right;
	margin:20px 15px 0 0;}

#twitter-overlay ul.contents,
#facebook-overlay ul.contents,
#linkedin-overlay ul.contents{
	border-top:1px solid #e2e2e2;
	border-bottom:1px solid #e2e2e2;
	margin:10px 0 0 2px;
	height:230px;
	overflow-y: scroll;
	width:270px;
	font-size:12px;
	line-height:1.4em;}
#twitter-overlay ul.contents li,
#facebook-overlay ul.contents li,
#linkedin-overlay ul.contents li{
	padding:0.7em 5px;
	border-bottom:1px solid #eee;}

#twitter-overlay ul.contents li .tweet-user-name{
	font-weight:bold;}
#twitter-overlay ul.contents li .timestamp{
	display:block;
	color:#999;}
#twitter-overlay a.follow-us{
	width:86px;
	height:22px;
	display:block;
	text-align:center;
	font-weight:bold;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{51cbaf08-bd37-4ae4-98ca-f5d1e8bc7ad1}_twitter-overlay-follow-button.png") no-repeat 0 0;
	margin:10px 0 0 12px;
	padding-top:2px;
	text-decoration:none;}

#facebook-overlay a.actorPhoto{
	float:left;
	width:50px;
	display:block;
	margin-right:10px;}
#facebook-overlay div.storyInnerContent{
	float:left;
	width:180px;
	display:block;}
#facebook-overlay div.storyInnerContent h6{
	font-weight:normal;}
#facebook-overlay .facebook-like{
	margin-top:10px;}

#linkedin-overlay a.actorPhoto{
	float:left;
	width:50px;
	display:block;
	margin-right:10px;}
#linkedin-overlay div.storyInnerContent{
	float:left;
	width:180px;
	display:block;}
#linkedin-overlay div.storyInnerContent h6{
	font-weight:normal;}
#linkedin-overlay .facebook-like{
	margin-top:10px;}


#share-overlay ul{
	margin:0 0 0 15px;
	padding:0;
	list-style:none;}
#share-overlay ul li{
	margin:7px 0;
	height:22px;}


#share-overlay.bottom{
	position:absolute;
	width:204px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{f9198a63-c362-4614-b7de-4a9691c15061}_sns-share-overlay-bottom-bg.png") no-repeat 0 0;
	height:183px;
	bottom:75px;
	top:auto;
	right:-20px;}




/* MAIN */
#main{
	width:100%;
	padding-bottom:70px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{9f164bcc-1f40-4873-b535-429772087ccc}_main-bg.png") repeat-x 0 0;
	float:left;}

#main .shadow{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d97c1ff9-f07a-4c3b-b973-5434f33f6566}_main-contents-bg.png") no-repeat center 0;	
	min-height:500px;}
   
#main .contents{
	width:980px;
	margin:auto;}
/* Hero */
#hero{
	width:980px;
	height:335px;}

#hero h1,
#hero h2{	font-family:ProximaNova-light, Arial, Helvetica, sans-serif;}

#hero #slides{
	position:relative;}

#hero #slides .slides_container div.slide-item{
	width:980px;
	height:335px;
	position:relative;}




#hero #slides .slides_container div.hero-contents	{ position:absolute;}

#hero #slides .slides_container div.hero-contents h1,
#hero #slides .slides_container div.hero-contents h2{
	color:#5D8626;
	font-size:28px;
	font-weight:bold;
	line-height:1.2em;
	margin-bottom:10px;
}
#hero #slides .slides_container div.hero-contents a.learn-more-btn { display:inline-block; margin-top:10px;}
#hero #slides .slides_container div p{
	font-family:ProximaNova-light, Arial, Helvetica, sans-serif;
	font-size: 16px;}

#hero #slides .slides_container div.slide1 div.hero-contents{top:70px;	left:70px; width:420px;}
#hero #slides .slides_container div.slide2 div.hero-contents{top:70px;	left:70px; width:420px;}
#hero #slides .slides_container div.slide3 div.hero-contents{top:140px;	left:580px; width:420px;}
#hero #slides .slides_container div.slide4 div.hero-contents{top:70px;	left:70px; width:420px;}






#hero #slides .prev,
#hero #slides .next{
	display:block;
	position:absolute;
	width:40px;
	height:70px;
	top:136px;
	text-indent:-9999px;
	outline:none;
	z-index:10;}
#hero #slides .prev{ left:0; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d262e4ed-a93c-46e6-bce8-72348b6ae2a4}_hero-arrow-bg.png") no-repeat 0 0;}
#hero #slides .prev:hover{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d262e4ed-a93c-46e6-bce8-72348b6ae2a4}_hero-arrow-bg.png") no-repeat 0 -70px;}
#hero #slides .next{ right:0; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d262e4ed-a93c-46e6-bce8-72348b6ae2a4}_hero-arrow-bg.png") no-repeat 100% 0;}
#hero #slides .next:hover{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d262e4ed-a93c-46e6-bce8-72348b6ae2a4}_hero-arrow-bg.png") no-repeat 100% -70px;}

#hero #slides ul.pagination{
	position:absolute;
	top:275px;
	left:70px;
	list-style:none;
	margin:0;
	z-index:10;}
#hero #slides ul.pagination li{
	float:left;
	margin-right:6px;}
#hero #slides ul.pagination li a{
	width:8px;
	height:8px;
	display:block;
	text-indent:-9999px;
	outline:none;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ce09a420-76b0-43f9-9e0f-071c41ffc78a}_hero-slide-button.png") no-repeat 0 0;}
#hero #slides ul.pagination li.current a{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ce09a420-76b0-43f9-9e0f-071c41ffc78a}_hero-slide-button.png") no-repeat 0 -8px;}



/* Hero Bottom */
#hero-bottom{
	padding:30px 22px 20px 22px;}

#hero-bottom h2{
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}

#hero-bottom .more-link{
	clear:both;}

#hero-bottom .featured-demos{
	width:630px;
	float:left;
	border-right:1px solid #e2e2e2;}
#hero-bottom .featured-demos ul{
	list-style:none;
	margin:0;}
#hero-bottom .featured-demos ul li{
	float:left;
	position:relative;
	width:180px;
	margin-right:30px;
	margin-bottom:15px;}
#hero-bottom .featured-demos ul li a{
	display:block;
	width:180px;
	height:130px;
	text-align:center;
	color:#FFF;
	font-weight:bold;
	line-height:1.1em;
	text-decoration:none;}
#hero-bottom .featured-demos ul li a:hover{
	color:#A8CEF4;}
#hero-bottom .featured-demos ul li a span{
	position:absolute;
	bottom: 5px;}
#hero-bottom .featured-demos ul li a span.two-lined{
	bottom:13px;}

#hero-bottom .key-downloads{
	float:left;
	width:250px;
	margin-left:40px;}

#hero-bottom .key-downloads ul{
	list-style:none;}
#hero-bottom .key-downloads ul li{
	line-height:1.2em;
	margin-bottom:1em;}
#hero-bottom .key-downloads ul li.pdf{
	list-style-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{4c271d56-1d4e-41c9-b8b8-7256edc38f75}_icon-pdf.png");}
#hero-bottom .key-downloads ul li.msword{
	list-style-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{206c2905-5138-4aef-9ff1-9b891f2c2e3a}_icon-msword.png");}



#latest-news{
	clear:both;
	padding:20px 22px 40px 22px;
	border-top:1px solid #e2e2e2;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{47eff891-fdb5-4339-ac8c-c9d16c6e69c1}_hero-bottom-bg.png") repeat-x 0 100%;}


.latestnews-area { position:relative;}
.latestnews-area .textdiv { width:700px; padding-left:0px; margin:2px 0 0 10px; position:relative; z-index:99; float:left;  text-align:left; color:#000000; line-height:15px;}
.latestnews-area .textdiv ul li { list-style:none; display:block; width:700px !important; }
.latestnews-area .textdiv ul li a { font-weight:normal; line-height:18px;}
.latestnews-area .textdiv ul li a:hover { text-decoration:underline;}
.latestnews-area .outerdiv { position:absolute; float:left; z-index:99; top:-13px; right:0px; width:55px; height:36px; }
.latestnews-area .next { width:26px; height:36px; position:absolute; left:30px; top:5px; background: url("http://img.en25.com/eloquaimages/clients/Informatica/{05be0d7c-0825-450c-a369-d7e84b9cc446}_latest-news-arrow-bg.png") no-repeat right 0; }
.latestnews-area .next:hover { background: url("http://img.en25.com/eloquaimages/clients/Informatica/{05be0d7c-0825-450c-a369-d7e84b9cc446}_latest-news-arrow-bg.png") no-repeat right -36px; }
.latestnews-area .prev { width:26px; height:36px; position:absolute; left:0px; top:5px; background: url("http://img.en25.com/eloquaimages/clients/Informatica/{05be0d7c-0825-450c-a369-d7e84b9cc446}_latest-news-arrow-bg.png") no-repeat 0 0; }
.latestnews-area .prev:hover { background: url("http://img.en25.com/eloquaimages/clients/Informatica/{05be0d7c-0825-450c-a369-d7e84b9cc446}_latest-news-arrow-bg.png") no-repeat 0 -36px; }
.latestnews-area .titlediv { width:120px;float:left; text-transform:uppercase; font-size:14px;}





/* HOME Contents Body */

#contents-body{
	padding:20px;}

#contents-body .recent-blog-discussions,
#contents-body .events-webinars{
	width:265px;
	float:left;
	padding-right:28px;}
#contents-body .recent-blog-discussions{
	border-right:1px solid #e2e2e2;
	margin-right:28px;}


#contents-body .recent-blog-discussions h2{
	height:28px;
	padding-left:45px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{bcf9fac3-7220-4849-a202-75130dd358cc}_icon-recent-blog-discussions.png") no-repeat 0 0;}

#contents-body .recent-blog-discussions ul{
	margin:0;
	list-style:none;}
#contents-body .recent-blog-discussions ul li{
	margin-bottom:1.6em;}

#contents-body .recent-blog-discussions .blog-info{
	display:block;
	color:#999;}


#contents-body .events-webinars h2{
	height:28px;
	padding-left:42px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{19dfb795-e121-49b4-a5d3-fe49e6524d1b}_icon-events-webinars.png") no-repeat 0 0;}

#contents-body .events-webinars ul{
	margin:0;
	list-style:none;}
#contents-body .events-webinars ul li{
	margin-bottom:1.6em;}

#contents-body .events-webinars .event-info{
	display:block;
	color:#999;}

#contents-body .recent-blog-discussions a,
#contents-body .events-webinars a{
	font-weight:bold;}



#contents-body .call-out-boxes{
	width:320px;
	float:left;}
#contents-body .call-out-boxes h4{
	color:#666;
	font-family:ProximaNova-Light, Arial, Helvetica, sans-serif;}

#contents-body .call-out-boxes ul{
	list-style:none;
	margin:0;}
#contents-body .call-out-boxes ul li{
	margin-bottom:10px;
	width:320px;
	height:130px;
	position:relative;}
#contents-body .call-out-boxes ul li.box1{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{4bb97022-ed7e-4876-9f6d-dfa91ec1a8f1}_callout-box1-bg.png") no-repeat 0 0;}
#contents-body .call-out-boxes ul li.box1 h4{
	font-size:28px;
	width:210px;
	position:absolute;
	top:18px;
	left:25px;
	line-height:1.2em;}
#contents-body .call-out-boxes ul li.box1 a{
	position:absolute;
	top:85px;
	left:25px;
	text-transform: uppercase;
	font-size:10px;
	font-weight:bold;}

#contents-body .call-out-boxes ul li.box2{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{879e0884-cfb3-49e9-aae1-edf42f4577ed}_callout-box2-bg.png") no-repeat 0 0;}
#contents-body .call-out-boxes ul li.box2 h4{
	font-size:26px;
	width:230px;
	position:absolute;
	top:18px;
	left:25px;
	line-height:1.2em;}
#contents-body .call-out-boxes ul li.box2 a{
	position:absolute;
	top:85px;
	left:25px;
	text-transform: uppercase;
	font-size:10px;
	font-weight:bold;}

#contents-body .call-out-boxes ul li.box3{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{f80344f8-e0a7-48e0-8318-4dc468c22069}_callout-box3-bg.png") no-repeat 0 0;}
#contents-body .call-out-boxes ul li.box3 h4{
	font-size:18px;
	width:170px;
	position:absolute;
	top:35px;
	left:120px;
	line-height:1.2em;
	color:#FFF;}
#contents-body .call-out-boxes ul li.box3 a{
	position:absolute;
	top:85px;
	left:120px;
	text-transform: uppercase;
	font-size:10px;
	font-weight:bold;
	color:#a8cef4;}



#testimony{
	clear:both;
	padding:45px 50px 0 90px;
	border-top:1px solid #E2E2E2;}

#testimony blockquote{
	margin:0 auto 20px auto;
	font-size:36px;
	line-height:1.2em;
	quotes:"\201C" "\201D" "\2018" "\2019";
}
#testimony blockquote:before {
content:open-quote;}
#testimony blockquote:after {
content:close-quote;}

#testimony blockquote:before,
#testimony blockquote:after {
color:#c1d7e3;
font-size:100px;
line-height:0px;
vertical-align:bottom;
font-family:Georgia, "Times New Roman", Times, serif;}
#testimony blockquote p{
display:inline;}

#testimony .logo{
	width:180px;
	float:left;}
#testimony .logo img{
	border:1px solid #e2e2e2;}

#testimony .testimony-info{
	float:left;
	color:#999999;
	padding-top:10px;}

#testimony .more-link{
	padding-left:10px;}





/* PAGE GENERAL */

.page #page-hero{
	width:940px;
	position:relative;
	margin-bottom:30px;}
.page #page-hero .hero-contents{ position:absolute; top:65px; left:350px; width:480px;}
.page #page-hero h2{
	font-size:24px;
	font-weight:bold;
	color:#5D8626;
	font-family:ProximaNova-light, Arial, Helvetica, sans-serif;
	line-height:1.2em;}
.page #page-hero p.description{
	font-size:16px;
	color:#666;
	font-family:ProximaNova-light, Arial, Helvetica, sans-serif;
	line-height:1.4em;}
.page #page-hero .button{
	margin-top:10px;}

.page #page-hero .pagination{
	position:absolute;
	top:13px;
	right:13px;
	z-index:10;
	margin:0;
	list-style:none;}
.page #page-hero .pagination a{
	display:block;
	margin-bottom:6px;
	border:3px solid #fff;}
.page #page-hero .pagination a:hover{
	border:3px solid #A8CEF4;}
.page #page-hero .pagination .current a{
	border:3px solid #1b4973;}



.container-seperator-top { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{7a82a2b7-0f29-4891-b037-38d51545946e}_left-col-seperator-top.png") no-repeat 679px 0; }
.container-seperator-btm { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{547fe931-d0b1-40fe-a259-0e4b220d8b7f}_left-col-seperator-btm.png") no-repeat 679px bottom; }
.container-seperator-repeater { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{634285a5-6ce7-4182-a992-fbbb4cca80b0}_left-col-seperator-repeater.png") repeat-y 679px 0; }



.page-main{
	float:left;
	width:660px;
	padding-right:30px;
	margin-right:10px;}
.page-main h1,
.sub-page-main h1{
	font-size:22px;
	color:#333;
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}
.page-main h2,
.sub-page-main h2{
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}
.page-main h3,
.sub-page-main h3{
	color:#669900;
	margin-bottom:5px;
	font-size:14px;
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}
.page-main h4,
.sub-page-main h4{
	font-size:16px;
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}
.page-main p{
	margin-bottom:1.6em;}
.page-main ul{
	margin:0;}
.page-main ul.bullet-listing{
	margin-left:15px;
	margin-bottom:1.6em;}

.page-main-contents{
	padding-left:10px;}

a.white-btn {
float: left;
padding-left: 17px;
background: url("http://img.en25.com/eloquaimages/clients/Informatica/{5b84ad85-a4ce-459a-81ff-05a5a6c7bec6}_white-btn-link.png") no-repeat 0 0;
}
a.white-btn span {
float: left;
padding-right: 17px;
font-size: 12px;
line-height: 27px;
font-weight: bold;
background: url("http://img.en25.com/eloquaimages/clients/Informatica/{5b84ad85-a4ce-459a-81ff-05a5a6c7bec6}_white-btn-link.png") no-repeat right bottom;
}


.title-header{
	border-bottom:1px solid #e2e2e2;
	padding-bottom:27px;}

.title-box{
	width:400px;
	padding:0 20px 0 0px;
	float:left;}
.title-box.fullwidth { width:100%; }
.title-box h1{
	font-size:36px;
	font-weight:normal;
	line-height:1.2em;
	color:#333;
	font-family:ProximaNova-Light, Arial, Helvetica, sans-serif;}
.title-box p{
	font-size:18px;
	color:#999;
	line-height:1.4em;
	margin-bottom:1em;
	font-family:ProximaNova-Light, Arial, Helvetica, sans-serif;}

.title-side-links{
	float:left;
	width:195px;
	margin-top:45px;
	border-left:1px solid #e2e2e2;
	padding-left:20px;}
.title-side-links.video-thumb{
	border-left: none;
	padding-left: 0px;
	margin-top: 15px;}
.title-side-links ul{
	margin:0;
	list-style:none;}
.title-side-links ul li{
	margin-bottom:15px;}

.page-sidebar{
	width:240px;
	float:left;}



/* PAGE */
.summary-links{
	margin:40px 0;
	border-bottom:1px solid #e2e2e2;}
.sub-page-main.fullwidth {
	margin-left:0;}
.summary-links .section1,
.summary-links .section2{
	width:300px;
	float:left;}
.summary-links .section1{
	margin-right:30px;}
.summary-links .row{ }

.summary-links .item{
	margin-bottom:35px;}
.summary-links .item img{
	float:left;
	margin-right:20px;}
.summary-links .item .item-contents{
	float:left;
	width:240px;}
.summary-links .item .item-contents ul{
	margin:0;
	list-style:none;}


.courses-list{ margin-bottom:20px; padding-bottom:50px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{fe14daf6-bd8e-45fd-a05f-0e10231dbd27}_fullwidth-bottom-line-bg.png") no-repeat 50% 100%;}
.courses-list h4	{margin-top:8px;}

.row {}
.row .item{
	float: left;
	margin:10px;
	width: 190px;
	padding:10px;}
.row:last-child .item	{ border-top:1px solid #e2e2e2;}
.row .item img{
	float:left;
	margin-right:10px;}
.row .item .item-contents{
	float:left;}
.row .item .item-contents ul{
	margin:0;
	list-style:none;}


.page .bottom-call-out-box{
	width:666px;
	float:left;}

.page .bottom-call-out-box ul{
	list-style:none;
	margin:0;}
.page .bottom-call-out-box h4{
	color:#666;
	font-family:ProximaNova-Light, Arial, Helvetica, sans-serif;}
.page .bottom-call-out-box ul li{
	margin-bottom:10px;
	width:666px;
	height:126px;
	position:relative;}
.page .bottom-call-out-box ul li.box1{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{c1bd7817-e452-474b-8361-2f6bb1aebd0b}_page-call-out-box1-bg.png") no-repeat 0 0;}
.page .bottom-call-out-box ul li.box1 h4{
	font-size:30px;
	position:absolute;
	line-height:1.2em;
	top:18px;
	left:40px;
	width:350px;}
.page .bottom-call-out-box ul li.box1 a{
	position:absolute;
	text-transform: uppercase;
	font-size:10px;
	font-weight:bold;
	top:90px;
	left:40px;}

.page .bottom-call-out-box ul li.box2{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d51bedcb-9b35-42e1-b644-ef1c5b1075d4}_page-call-out-box2-bg.png") no-repeat 0 0;}
.page .bottom-call-out-box ul li.box2 h4{
	font-size:30px;
	position:absolute;
	line-height:1.2em;
	top:18px;
	left:40px;
	width:400px;}
.page .bottom-call-out-box ul li.box2 a{
	position:absolute;
	text-transform: uppercase;
	font-size:10px;
	font-weight:bold;
	top:90px;
	left:40px;}

.courses-call-outs { margin-top: 20px; margin-left:-10px; width:970px;}
.courses-call-outs h2	{ margin-left:10px;}
.bottom-call-out-box1, .bottom-call-out-box2, .bottom-call-out-box3{
	width:314px;
	height: 230px;
	margin-right: 6px;
	float:left;}
.bottom-call-out-box3{
	margin-right: 0px;}

.bottom-call-out-box1 ul, .bottom-call-out-box2 ul, .bottom-call-out-box3 ul{
	list-style:none;
	margin:0;}
.bottom-call-out-box1 h4, .bottom-call-out-box2 h4, .bottom-call-out-box3 h4{
	color:#666;
	font-family:ProximaNova-Light, Arial, Helvetica, sans-serif;
	width: 200px;
	font-size:16px;}
.bottom-call-out-box1 ul li, .bottom-call-out-box2 ul li, .bottom-call-out-box3 ul li{
	margin-bottom:10px;
	width:314px;
	height:124px;
	position:relative;}
.bottom-call-out-box1 ul li.box1{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{92c8ce2f-906b-4bdb-b986-967b2ce9b699}_courses-sub-1.png") no-repeat 0 0;}
.bottom-call-out-box2 ul li.box1{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{1b894bc9-2d96-4dec-a9c5-c35cd803843f}_courses-sub-2.png") no-repeat 0 0;}
.bottom-call-out-box3 ul li.box1{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{2d4b371d-1b1d-4b13-a5ce-bf7d47857590}_courses-sub-3.png") no-repeat 0 0;}
.bottom-call-out-box1 ul li.box2{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{68487eca-fe0c-45f0-9a1b-31db4e5bd38c}_courses-sub-6.png") no-repeat 0 0;}
.bottom-call-out-box2 ul li.box2{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{624f062d-88e3-424d-934e-a695dd6abcb1}_courses-sub-4.png") no-repeat 0 0;}
.bottom-call-out-box3 ul li.box2{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ebc251de-6fe3-4402-85f4-a05cca47add7}_courses-sub-5.png") no-repeat 0 0;}
.bottom-call-out-box1 ul li.box1 h4, .bottom-call-out-box2 ul li.box1 h4, .bottom-call-out-box3 ul li.box1 h4,
.bottom-call-out-box1 ul li.box2 h4, .bottom-call-out-box2 ul li.box2 h4, .bottom-call-out-box3 ul li.box2 h4{
	font-size:26px;
	position:absolute;
	line-height:1.2em;
	top:18px;
	left:20px;
	width:350px;}
.bottom-call-out-box1 ul li.box1 a, .bottom-call-out-box2 ul li.box1 a, .bottom-call-out-box3 ul li.box1 a,
.bottom-call-out-box1 ul li.box2 a, .bottom-call-out-box2 ul li.box2 a, .bottom-call-out-box3 ul li.box2 a{
	position:absolute;
	text-transform: uppercase;
	font-size:10px;
	font-weight:bold;
	top:85px;
	left:20px;}


.call-out-green{
	width:240px;
	height:123px;
	position:relative;
	text-align:center;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{8faa639b-20cf-4928-842b-8fb56d93d1f4}_page-sidebar-call-out-green.png") no-repeat 0 0;
	margin-bottom:30px;}
.call-out-green h4{
	font-size:18px;
	font-weight:normal;
	position:absolute;
	color:#FFF;
	top:32px;
	left:20px;
	width:200px;}
.call-out-green p.description{
	color:#fff;
	position:absolute;
	color:#FFF;
	top:50px;
	left:20px;
	width:200px;
	line-height:1.2em;}
.call-out-green a{
	font-size:12px;
	position:absolute;
	color:#a8cef4;
	top:80px;
	left:90px;
	widows:100px;}




.call-out-gray{
	width:240px;
	height:123px;
	position:relative;
	text-align:center;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{608c6018-8cd7-44a3-8453-c87d6701f489}_page-sidebar-call-out-gray-bg.png") no-repeat 0 0;
	margin-bottom:30px;
	float:left;
	}
.call-out-gray h4{
	font-size:18px;
	font-weight:normal;
	position:absolute;
	color:#FFF;
	top:32px;
	left:20px;
	width:200px;}
.call-out-gray a{
	font-size:12px;
	position:absolute;
	color:#a8cef4;
	top:80px;
	left:90px;
	widows:100px;}


/* SUB PAGE GENERAL */

h2.sub-page-title{ font-size:22px;}

#breadcrumb{
	margin-bottom:20px;}

#breadcrumb.nomrgnbtm{
	margin-bottom:0px;}

.sub-page #sub-page-hero{
	width:940px;
	height:163px;
	position:relative;
	margin-bottom:34px;	
	}
.sub-page #sub-page-hero .sub-page-hero-contents	{ position:absolute; top:40px; left:300px;}
.sub-page #sub-page-hero h1{
	font-size:36px;
	line-height:37px;
	font-weight:normal;
	color:#333;
	width:600px;
	font-family:ProximaNova-Light, Arial, Helvetica, sans-serif;
	margin-bottom:5px;}

.sub-page #sub-page-hero h3{
	font-size:13px;
	font-weight:normal;
	color:#666;
	width:600px;}
.sub-page #sub-page-hero p.description{
	font-size:16px;
	color:#666;
	width:600px;
	font-family:ProximaNova-Light, Arial, Helvetica, sans-serif;}

.products-powercenter #sub-page-hero h1{ width:380px;}
.products-powercenter #sub-page-hero p.description	{width:380px;}
.products-powercenter #sub-page-hero .button { position:absolute; right:40px;}
.products-powercenter #sub-page-hero .button1 { top:30px;}
.products-powercenter #sub-page-hero .button2 { top:90px;}
.courses #sub-page-hero .sub-page-hero-contents{ top:30px;}
.courses #sub-page-hero .sub-page-hero-contents .button{ margin-top:10px;}


/*
.sub-page #sub-page-hero .button{
	position:absolute;}
.sub-page #sub-page-hero .button{top:40px; right:40px;}
.sub-page #sub-page-hero .button1{top:40px; right:40px;}
.sub-page #sub-page-hero .button2{top:90px; right:40px;}
.courses.sub-page #sub-page-hero .button{
	top: 90px;
	left: 300px;}*/

.sub-page #sub-page-hero .button a{
	position:relative;}



.sub-page-sidebar{
	width:200px;
	padding-right:10px;
	float:left;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{888b44b7-9bb3-44bd-870d-5b543ddfc955}_sub-page-sidebar-bg.png") no-repeat 100% 100%;}


.sub-page-sidebar ul.sub-menu{
	margin:0;
	list-style:none;
	margin-bottom:40px;}
.sub-page-sidebar ul.sub-menu li a{
	width:210px;
	height:34px;
	padding:12px 0 0 12px;
	display:block;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{9acd23ec-35ae-44ad-9d46-e137038e530f}_sub-menu-bg.png") no-repeat 0 -46px;
	font-weight:bold;
	text-decoration:none;}
.sub-page-sidebar ul.sub-menu li a.selected{
	color:#FFF;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{9acd23ec-35ae-44ad-9d46-e137038e530f}_sub-menu-bg.png") no-repeat 0 0px;}




#main .sub-page-sidebar .links h3{
	font-size:16px;
	color:#666;}
.sub-page-sidebar .links .item{
	margin-bottom:25px;}
.sub-page-sidebar .links h4{
	font-size:13px;
	font-weight:normal;
	line-height:1.4em;
	margin:0 0 3px 0;}
.sub-page-sidebar .links ul{
	margin:0;
	list-style:none;
	font-size:12px;
	line-height:1.4em;}
.sub-page-sidebar .links ul li{
	margin-bottom:8px;}
.sub-page-sidebar .links a.more-link{
	font-size:12px;}




.sub-page-main{
	float:left;
	width:700px;
	margin-left:30px;
	position:relative;}
.sub-page-main.fullwidth{
	width: 100%;
}

.sub-page-tab-contents{
	border-bottom:1px solid #e2e2e2;}
.sub-page-tab-contents ul.tabs{
	margin:0;
	list-style:none;
	position:relative;
	z-index:10;}
.sub-page-tab-contents ul.tabs li{
	float:left;
	margin-right:6px;}
.sub-page-tab-contents ul.tabs li a{
	display:inline-block;
	padding:0 0 0 20px;
	height:41px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d7014926-3bee-4ddb-95e0-0fae2d14803c}_sub-page-tab-bg.png") no-repeat 0 -41px;}
.sub-page-tab-contents ul.tabs li a span{
	display:inline-block;
	padding:10px 20px 0 0;
	height:31px;
	font-weight:bold;
	color:#5482ab;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d7014926-3bee-4ddb-95e0-0fae2d14803c}_sub-page-tab-bg.png") no-repeat 100% -41px;}
.sub-page-tab-contents ul.tabs li a.selected{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d7014926-3bee-4ddb-95e0-0fae2d14803c}_sub-page-tab-bg.png") no-repeat 0 0px;}
.sub-page-tab-contents ul.tabs li a.selected span{
	color:#333;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{d7014926-3bee-4ddb-95e0-0fae2d14803c}_sub-page-tab-bg.png") no-repeat 100% 0px;}


.sub-page-tab-contents .tab-contents{
	clear:both;
	border-top:1px solid #e2e2e2;
	position:relative;
	top:-1px;
	padding:34px 0;}

.sub-page-tab-contents .tab-contents .section1{
	float:left;
	width:430px;
	margin-right:40px;}
.sub-page-tab-contents .tab-contents .section2{
	float:left;
	width:230px;}
.sub-page-tab-contents .tab-contents ul.demo{
	margin:0;
	list-style:none;}
.sub-page-tab-contents .tab-contents ul.demo li{
	position:relative;}
.sub-page-tab-contents .tab-contents ul.demo li a{
	width:230px;
	height:159px;
	display:block;
	position:relative;
	text-align:center;
	color:#FFF;
	font-size:12px;
	line-height:1.4em;}
.sub-page-tab-contents .tab-contents ul.demo li a span{
	position:absolute;
	bottom:14px;
	display:block;
	padding:0 10px;}
.sub-page-tab-contents .tab-contents ul.demo li a:hover{
	color:#A8CEF4;
	text-decoration:none;}


.sub-page-main .box-contents{
	margin-bottom:30px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{a834d617-370e-4b7a-be67-0b7102b2b2eb}_sub-page-main-box-contents-bg.jpg") no-repeat 0 0;}
.sub-page-main .box-contents .section1,
.sub-page-main .box-contents .section2,
.sub-page-main .box-contents .section3{
	width:212px;
	float:left;
	padding-top:30px;
	height:300px;
	position:relative;}
.sub-page-main .box-contents .section1,
.sub-page-main .box-contents .section2{
	margin-right:20px;
	padding-right:10px;
	border-right:1px solid #e2e2e2;}

.sub-page-main .box-contents h4{
	font-size:16px;
	height:24px;
	padding:3px 0 0 40px;
	margin-bottom:20px;}
.sub-page-main .box-contents h4.service-training{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{720c1319-8188-46f0-b9e9-dc1d656844a1}_box-contents-h3-service-training.png") no-repeat 0 0;}
.sub-page-main .box-contents h4.powercenter-buzz{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{a5a8f6a0-48f3-4639-a92f-927297cc1511}_box-contents-h3-powercenter-buzz.png") no-repeat 0 0;}
.sub-page-main .box-contents h4.powercenter-blocks{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ef09dd19-d40f-4163-a924-d535a8b21a2a}_box-contents-h3-powercenter-blocks.png") no-repeat 0 0;}

.sub-page-main .box-contents p{
	margin-bottom:1em;}

.sub-page-main .box-contents a.more-link{
	position:absolute;
	bottom:25px;}


.sub-page-main-bottom-contents{
	margin:35px 0;
	width:100%;}
.sub-page-main-bottom-contents .row{
	margin-bottom:20px;}
.sub-page-main-bottom-contents .row .left,
.sub-page-main-bottom-contents .row .right{
	width:48%;
	float:left;}
.sub-page-main-bottom-contents .row .left{
	margin-right:4%;}



.recent-powercenter-customers{
	width:700px;
	height:168px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{7a2f5180-67ce-4469-8300-f43e5d41e0e2}_recent-powercenter-customers-bg.png") no-repeat 0 0;
	position:relative;
	margin-bottom:50px;}
#main .recent-powercenter-customers h3{
	color:#FFF;
	font-size:18px;
	position:absolute;
	top:25px;
	left:20px;}

.recent-powercenter-customers-slides{
	width:600px;
	position:absolute;
	top:65px;
	margin-left:50px;}
.recent-powercenter-customers-slides ul{
	margin:0;
	list-style:none;}
.recent-powercenter-customers-slides ul li{
	width:600px;}
.recent-powercenter-customers-slides ul li span{
	width:280px;
	float:left;
	color:#FFF;
	font-size:12px;
	line-height:1.4em;}
.recent-powercenter-customers-slides ul li span:first-child{
	margin-right:40px;}
.recent-powercenter-customers-slides ul li span img{
	float:left;
	margin-right:15px;}
.recent-powercenter-customers-slides ul li span a{
	color:#c8eaff;
	display:inline-block;
	margin-top:10px;}
.recent-powercenter-customers .prev,
.recent-powercenter-customers .next{
	width:30px;
	height:30px;
	display:block;
	text-indent:-9999px;
	outline:none;
	position:absolute;
	top:90px;}
.recent-powercenter-customers .prev{
	left:10px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{8ccdce2c-df5b-4eb2-8dd9-25bcc7549bfc}_recent-powercenter-customers-slides-arrow-prev.png") no-repeat 0 0;}
.recent-powercenter-customers .next{
	right:10px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{db8e8314-df28-44e0-a136-28e972ec709f}_recent-powercenter-customers-slides-arrow-next.png") no-repeat 0 0;}

.related-products{
	float:left;
	margin-right:40px;
	width:300px;
	padding:25px 20px 20px 20px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{9cf5bf0a-526d-4329-a785-0e6d1d324eae}_sub-page-related-products-bg.png") no-repeat 0 0;}
.related-products h3{
	font-size:16px;
	color:#333;
	line-height:1em;
	margin-bottom:15px;}
.related-products ul{
	float:left;
	margin-right:15px;
	list-style:url("http://img.en25.com/eloquaimages/clients/Informatica/{9a504200-93c2-4047-a5af-f9c8506ec2ca}_green-tick.png");}






/* PRODUCTS */
.product-list p	{margin-bottom:1em;}

/* CUSTOMERS */


.emc-container { width:100%; float:left; padding-bottom:50px; border-bottom:1px solid #e2e2e2; margin-top:20px; margin-bottom:26px; }
.emc-logo { float:left; width:182px; }
.emc-logo img { float:left; margin-left:10px; }
.emc-desc { float:left; width:450px; }
.challenge-results-main-container { width:100%; float:left; }
.challenge-section { width:321px; float:left; }
ul.tick-listing { list-style:none; }
ul.tick-listing li { padding-left:21px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{9a504200-93c2-4047-a5af-f9c8506ec2ca}_green-tick.png") no-repeat 2px 5px; margin-bottom:5px; }
.results-section { width:302px; float:right; }
.highlight-txt { color:#82b125; font-size:36px; line-height:37px; margin-bottom:5px;}
.results-section p { margin-bottom:25px; line-height:16px; }
.related-story-block { width:241px; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{e34a88cd-f695-4e6c-a54e-3590d87df730}_blue-strip-bg.gif") no-repeat 0 9px; margin-bottom:20px; }
.related-story-block.green { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{e0b3de42-c470-4655-95a7-2ceb93a9747d}_green-strip-bg.gif"); }
.related-story-block.orange { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{260c1b8d-8636-4a1e-9bc0-2fbfb465f872}_orange-strip-bg.gif"); }
.related-story-block h3 { text-align:center; font-size:16px; color:#333333; }
.related-story-block p { color:#0069aa; margin:20px 0px; }

.block-content { padding:0px 17px; width:207px; float:left; padding-bottom:35px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{0009510e-5ccd-44f0-9761-6117d153d210}_right-content-block-seperator.png") no-repeat 0 bottom; }
.related-story-block ul { list-style:none; margin:15px 0px 20px 0px; }
.related-story-block ul li { margin-top:5px; }
.quote-block { width:100%; float:left; margin-top:35px; }
.quotation { background:#f4f4f4 url("http://img.en25.com/eloquaimages/clients/Informatica/{dfff4494-0f37-418b-b51d-0d36b87de62e}_top-coma.png") no-repeat 21px 25px; width:230px; padding:25px 30px 25px 61px; float:left;  }
.quotation .btm-coma { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{fec1927b-3810-406a-b3c2-f1009ceec838}_btm-coma.png") no-repeat right bottom; font-size:16px; line-height:20px; }
.author { width:100%; float:left; font-size:12px; color:#999999; margin-top:20px; margin-bottom:5px; line-height:1.4em;}
.read-more a { font-size:12px; }
.story-tools-main-container { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{434911e2-817b-4820-b3dd-ab3e6c7bf925}_section-seperator.png") no-repeat center top; padding-top:3px; margin-top:51px; }
.story-tools-main-container.nomrgn { margin-top:0px; }
.vertical-seperator { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{44143248-de10-43fb-b94e-5d4d0e86aa6f}_vertical-seperator.gif") repeat-y center top; padding-top:32px; padding-bottom:10px; }
.story-block { width:301px; float:left; padding-right:15px;}
.story-block ul { list-style:none; }
.story-block ul li { margin-top:20px; color:#999999; }
.tools-block { width:297px; float:right; }
.tools-block ul { list-style:none; }
.tools-block ul li { margin-bottom:22px; }
.tools-block ul li div { font-weight:bold; color:#0069aa; }






/* SOLUTIONS */


.three-columns-item-block-container{
	margin-top: 35px;}
.three-columns-item-block-container .item-block{
	width:220px;
	float:left;}
.three-columns-item-block-container .item-block1,
.three-columns-item-block-container .item-block2{
	margin-right:20px;}





/* PRODUCT DETAILS */


.feature-box {
width: 600px;
float: left;
min-height: 142px;
background: url("http://img.en25.com/eloquaimages/clients/Informatica/{bb47c03c-5d50-42f9-bf10-83fdfad8b689}_featurebox-bg.png") no-repeat 0 0;
margin-top: 48px;
padding: 30px 30px 0px 30px;
}
.feature-box-heading {
font-size: 22px;
color: #333;
}
.feature-box p {
margin: 10px 0px;
}
a.blue-btn {
background: url("http://img.en25.com/eloquaimages/clients/Informatica/{31a22fcc-b340-4030-952b-76190fa0535b}_blue-btn-bg.png") no-repeat 0 0;
padding-left: 17px;
float: left;
}
a.blue-btn span {
background: url("http://img.en25.com/eloquaimages/clients/Informatica/{31a22fcc-b340-4030-952b-76190fa0535b}_blue-btn-bg.png") no-repeat right bottom;
padding-right: 17px;
font-size: 12px;
font-weight: bold;
color: white;
line-height: 27px;
float: left;
}


/* PRODUCT CATEGORY */
.product-item-container {
width: 100%;
float: left;
padding-bottom: 20px;
border-bottom: 1px solid #E2E2E2;
margin-bottom: 35px;
}
.product-item-details {
width: 400px;
float: left;
}
.product-item-details p {
margin-bottom: 10px;
}
.product-item-features {
width: 230px;
float: right;
}
.product-item-container.last {
margin-bottom: 0px;
padding-bottom: 0px;
border-bottom: 0px;
}


/* NEWS & EVENTS */
.page-news-event-container	{ width:100%; background: url("http://img.en25.com/eloquaimages/clients/Informatica/{606135f4-a81d-45e4-85a4-860174cf61b7}_fullwidth-bottom-line-bg.png") no-repeat 50% 100%; padding-bottom:50px; margin-bottom:20px;}
.page-news-event-container-left { float:left; width: 490px; padding:0 20px; margin-right:20px; border-right:1px solid #e2e2e2;}
.page-news-event-container-right { float:left; width: 360px;}

.featured-event-box{ margin:20px 0 30px 0;}
.featured-event-item { width:230px; height:159px; position:relative; float:left;}
.featured-event-item:first-child	{margin-right:20px;}
.featured-event-item a { text-decoration:none;}
.featured-event-item a span{
	position: absolute;
	width: 210px;
	padding: 0px 10px;
	text-align: center;
	left: 0;
	bottom: 14px;
	font-size: 12px;
	font-weight: bold;
	color: white;
	line-height: 14px;}
.featured-event-item a:hover span{ color:#A8CEF4;}

.event-item{ margin-bottom:25px;}
.event-item .info	{ color:#999;}
.event-item h3{ margin-bottom:0;}

.news-press-item{ margin-bottom:25px;}
.news-press-item h3{ margin-bottom:0;}


.form-row label.radio	{ margin-left:0;}
.form-row label.radio input	{ margin-right:10px;}

/* FOOTER */

#footer{
	clear:both;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ad752f6a-dd4a-4a7e-9a9c-6a7a99f9ca91}_footer-bg.png") repeat-x 0 0;
	background-color:#f4f4f4;	
	position:relative;}

#footer .contents{
	width:980px;
	margin:auto;
	position:relative;}
	
.footer-content-container{
	width:100%;
	float:left;
	padding:33px 0;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ad752f6a-dd4a-4a7e-9a9c-6a7a99f9ca91}_footer-bg.png") repeat-x 0 0;
	background-color:#f4f4f4;}	

#footer .footer-tab-contents{
	position:relative;}

#footer ul.tabs{
	margin:0 0 0 20px;
	list-style:none;
	height:31px;
	position:relative;
	z-index:10;}
#footer ul.tabs li{
	float:left;
	margin-right:6px;}
#footer ul.tabs li a{
	width:104px;
	height:27px;
	text-align:center;
	display:block;
	padding-top:5px;
	font-size:14px;
	color:#666;
	text-decoration:none;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ab4ea43e-3e16-44c3-99c8-31f3f98dea6d}_fotter-tab.png") no-repeat 0 -32px;}
#footer ul.tabs li a.selected{
	font-weight:bold;
	color:#333;
	cursor:default;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ab4ea43e-3e16-44c3-99c8-31f3f98dea6d}_fotter-tab.png") no-repeat 0 0;}

#footer .footer-tab-contents .contents{
	clear:both;
	padding:25px 0px;
	border:1px solid #d9d9d9;
	top:-1px;
	position:relative;
	margin-bottom:30px;
	-moz-border-radius: 5px;
	border-radius: 5px;}
#footer .footer-tab-contents .contents ul{
	margin:0;
	float:left;
	list-style:none;
	width:200px;
	margin-left:40px;}
#footer .footer-tab-contents .contents ul a{
	color:#666;}





#footer .social-links{
	float:right;}
#footer .social-links a{
	display:block;
	width:24px;
	height:24px;
	float:left;
	margin-right:10px;
	text-indent:-9999px;
	outline:none;}


#footer .social-links a.share{
	width:35px;
	text-indent:0px;
	outline:none;
	padding-left:25px;
	text-decoration:none;
	font-weight:bold;}

#footer .social-links a.linkedin{	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{efe4a9d3-a39b-47c4-a0fb-09a7a2a6b8ff}_icon-linkedin.png") no-repeat 0 0;}
#footer .social-links a.facebook{	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{545b2f91-e8c9-49f6-a3d9-9af2c8e2239c}_icon-facebook.png") no-repeat 0 0;}
#footer .social-links a.twitter{	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{39daa99e-c71a-4d62-b1f9-ab81b8c6de06}_icon-twitter.png") no-repeat 0 0;}
#footer .social-links a.flickr{	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{f7fa5ef1-1019-47d0-a6c3-ceaabe5cde43}_icon-flickr.png") no-repeat 0 0;}
#footer .social-links a.youtube{	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{be1aeca3-b162-409a-a91e-e6083d73c701}_icon-youtube.png") no-repeat 0 0;}
#footer .social-links a.share{	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{649e8b81-9099-4ea4-b35c-15c9ee4ad8f4}_icon-share.png") no-repeat 0 0;}
#footer .social-links a.subscribe-rss{	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{6a50a241-cd5a-4414-931b-130e7e4af7e3}_icon-rss.png") no-repeat 0 0;}



#footer ul.footer-links{
	list-style:none;
	margin:0;}
#footer ul.footer-links li{
	float:left;
	padding-left:20px;
	margin-left:20px;
	border-left:1px solid #CCC;
	line-height:1em;}
#footer ul.footer-links li:first-child{
	padding-left:0px;
	margin-left:0px;
	border-left:none;	}
#footer ul.footer-links a{
	color:#666;
	font-size:12px;}

#footer .copyright{
	clear:both;
	float:left;
	font-size:11px;
	color:#999;
	padding-top:10px;}





/* CONTACT US */

.contact-us-box{
	padding:20px 20px 0 20px;}

.contact-us-box .section1{
	width:410px;
	min-height:500px;
	float:left;
	padding-right:20px;
	margin-right:10px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{8d81ce1f-72e5-4ac5-a7e3-bd74d20fc804}_contact-section-divider.png") no-repeat 100% 0;}

.contact-us-box h3{
	font-size:22px;
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}
.contact-us-box .description{
	line-height:1.2em;}

.contact-us-box .contact-us-forms{
	margin-top:25px;}
.contact-us-box .contact-us-forms label{
	width:170px;
	float:left;
	margin-right:15px;
	margin-bottom:18px}
.contact-us-box .contact-us-forms label span{
	color:#333;
	font-size:14px;
	font-family:ProximaNova-Semibold, Arial, Helvetica, sans-serif;}

.contact-us-box .contact-us-forms input{
	width:160px;}

.contact-us-box .contact-us-forms label.postal-code{width:90px; margin-right:10px;}
.contact-us-box .contact-us-forms input.postal-code{width:80px;}

.contact-us-box .contact-us-forms label.state{width:135px; margin-right:10px;}
.contact-us-box .contact-us-forms label.state div.selector span{width:100px;color:#666;}

.contact-us-box .contact-us-forms label.country{width:145px; margin-right:0px;}
.contact-us-box .contact-us-forms label.country div.selector span{width:110px;color:#666;}

.contact-us-box .contact-us-forms label.comments{width:395px; margin-right:0px;}
.contact-us-box .contact-us-forms textarea.comments{width:385px; height:100px;}

.contact-us-box .contact-us-forms #uniform-contact-us-submit{color:#0069aa;}

.contact-us-box .section2{
	width:170px;
	float:left;
	padding-top:30px;}
.contact-us-box .section2 h4{
	color:#669900;
	margin-bottom:10px;}

.contact-us-box .contact-info1,
.contact-us-box .contact-info2{
	padding-bottom:30px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{3df2d482-b4bd-440b-af2e-b5987cd0674b}_contact-info-divider.png") no-repeat 0 100%;
	margin-bottom:15px;}

.contact-us-box .contact-item .title{
	font-weight:bold;
	color:#666;}


/* CSS for Solution Overview page */
.left-content-section-container { padding:0px 0px 25px 10px; border-bottom:1px solid #e2e2e2; float:left; width:640px; }
.left-content-section-container.first{ padding-top:20px; }
.left-content-section-container.last { border-bottom:0px; padding-bottom:0px; }

.sections-main-container { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{fe1891e8-5f64-4a5b-8acb-03fdb54fa133}_vertical-seperator.gif") repeat-y center top; margin-top:30px; }
.sections-main-container.nomrgn { margin-top:0px;}
.sections-main-container .row { margin-top:0px; margin-bottom:25px; width:100%; float:left; }
.sections-main-container .row.last { margin-bottom:0px; }
.sections-main-container .row .left { width:46%; float:left; }
.sections-main-container .row .right { width:46%; float:right; }
.controlling-cloud-thumb { position:relative; }
.controlling-cloud-thumb a { position:absolute; left:5px; top:6px; }

.grey-box-data form	{ margin-top:10px;}
.grey-box-data form	div.selector				{ width:165px;}
.grey-box-data form	div.selector span		{ width:140px;}

.grey-box { margin-top:50px; float:left; }
.grey-box-data { background:#f4f4f4; float:left; width:600px; padding:20px 30px; }
.grey-box-data p { margin-bottom:0px; }
.application-container, .industry-container { width:160px; float:left; }
.business-container { width:160px; float:left; padding:0px 60px; }
.application-container h4, .industry-container h4, .business-container h4 { padding-left:35px; margin-bottom:5px; }
.application-container h4 { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{7db1cee3-23f0-4d66-8f87-dfffc1ca3fd0}_applications-icon.png") no-repeat 0 2px; }
.industry-container h4 { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{9c8f69e5-c3f8-4f59-838d-5d637e38c1ab}_industry-icon.png") no-repeat 0 3px; }
.business-container h4 { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{4850b59d-3d3b-4427-8324-987d0e51a3dd}_business-icon.png") no-repeat 0 5px; }

.solutions-promo { width:220px; float:left; padding:30px 0px 0px 20px; height:90px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{fd8c7776-ee35-48c8-85cd-866b1ef788b9}_promo-bg-solutions.png") no-repeat 0 0; font-size:18px; color:#ffffff; line-height:22px; font-family: 'ProximaNova-Semibold'; }
.solutions-promo a { color:#a8cef4; font-size:12px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; }

/* CSS for Solution Overview page Ends */

/* CSS for About INformatica page Starts */
.comp-hist-container h2 { margin-bottom:5px; }
.comp-hist-container p { margin-bottom:5px; }
.page-main p.mrtpbtm10 { margin:10px 0px; }
.mrtp26 { margin-top:26px; }
.about-promo { width:220px; float:left; padding:20px 0px 0px 20px; height:100px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{1e6d9800-aaf1-435e-a5bd-ffa46f086a69}_promo-bg-about.png") no-repeat 0 0; font-size:18px; color:#ffffff; line-height:22px; font-family: 'ProximaNova-Semibold'; }
.about-promo a { color:#a8cef4; font-size:12px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; }
/* CSS for About INformatica page Ends */

/* CSS for Big Data page starts */
.big-data-container { width:100%; float:left; margin-top:25px; }
.big-data-thumb { float:left; position:relative; }
.big-data-thumb a { position:absolute; left:10px; top:10px; }
.big-data-desc { float:right; width:47%; padding-top:10px; }
.big-data-desc h2 { margin-bottom:0px; }
.big-data-desc p, .big-data-desc ul.tick-listing { margin-bottom:10px; }
ul.links-listing { list-style:none; margin:0px 0px 15px 0px; }
.links-listing li { margin-top:5px; }
.mrtp10 { margin-top:10px; }
.blue-container { width:100%; float:left; margin-bottom:30px; }
.fleft { float:left; }
.blue-container-data { padding:20px; background:#dae8ed; }
.blue-container-data ul.links-listing { margin-top:15px; }
.blue-container-data ul.links-listing li { margin-top:0px; }
/* CSS for Big Data page ends */

/* CSS for services page starts */
.services-promo { width:220px; float:left; padding:30px 0px 0px 20px; height:90px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{169fb008-a8ca-4097-a08b-4ad26f87d5d5}_services-promo-bg.png") no-repeat 0 0; font-size:18px; color:#ffffff; line-height:22px; font-family: 'ProximaNova-Semibold'; }
.services-promo a { color:#a8cef4; font-size:12px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; }
/* CSS for services page ends */

/* CSS for company page starts */
.company-banner-txt { position:absolute; left:355px; top:50px; width:520px; }
.company-banner-txt h2 { font-size:24px; line-height:25px; font-family: 'ProximaNova-Light'; color:#669900; font-weight:bold;}
.green-container { width:100%; float:left; margin-bottom:30px; }
.green-container-data { width:210px; float:left; padding:10px 15px; background:#80b024 url("http://img.en25.com/eloquaimages/clients/Informatica/{869063ff-e5de-45ce-adb0-c633ce2fc2ee}_green-container-bg.gif") repeat-x 0 0; min-height:161px; color:#ffffff; }
.green-container-data h2 { color:#ffffff; }
.green-white-data { background:#ffffff; padding:0px 15px 5px 15px; width:180px; float:left; font-size:12px; line-height:16px; color:#666666; }
.green-white-data strong { width:85px; float:left; text-transform:uppercase; font-size:10px; }
.data-row { margin-top:5px; }
.change { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{eb3f2eca-433b-41a6-96a0-d7cf004d7aa1}_red-down-arrow.gif") no-repeat 0 6px; padding-left:10px; color:#cc0000; }
.white-txt { font-size:11px; color:#ffffff; display:block; line-height:28px; }
.green-container-data a { color:#a8cef4; font-size:12px; font-weight:bold; } 
.comp-info { width:100%; float:left; margin-top:25px; }
.comp-info .col { width:162px; float:left; text-align:center; }
.comp-info .col span { font-size:36px; line-height:37px; font-family: 'ProximaNova-Light'; color:#82b125; }
.careers-banner { width:625px; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{67ccc4e5-84c8-4998-a035-d6b7beebf99c}_careers-banner-bg.png") no-repeat 0 0; height:110px; padding:15px 0px 0px 35px; margin-top:30px; }
.careers-banner h4 { font-size:30px; line-height:31px; color:#666666; font-family: 'ProximaNova-Light'; }
.careers-banner a { text-transform:uppercase; font-size:10px; font-weight:bold; }
.informatica-prgrm-container { margin:25px 0px; float:left; }
.informatica-prgrm-desc { width:60%; float:left; }
.informatica-prgrm-thumb { width:230px; float:right; position:relative; }
.informatica-prgrm-thumb a { float:left; text-decoration:none; }
.informatica-prgrm-thumb span { position:absolute; width:210px; padding:0px 10px; text-align:center; left:0; bottom:14px; font-size:12px; font-weight:bold; color:#ffffff; line-height:14px; }
.informatica-prgrm-thumb a:hover span { color:#A8CEF4; }




.news-event-container { width:390px; float:left; }
.news-heading { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{cb2b85ef-9ba2-4488-bfc4-692f12275bc0}_calender-icon.png") no-repeat 0 0; padding-left:35px; font-size:16px; color:#333333; line-height:24px; font-family: 'ProximaNova-Semibold'; margin-top:25px; }
.events-listing { list-style:none; }
.events-listing li { margin-top:20px; }
.events-listing li a { font-weight:bold; }
.events-listing span { display:block; }
.events-listing span.name { font-size:11px; color:#999999; font-weight:bold; }
.press-user-container p { margin-bottom:0px; }
.press-user-container .heading { padding-left:35px; font-size:16px; color:#333333; line-height:24px; font-family: 'ProximaNova-Semibold'; margin-top:25px; }
.press-container,
.user-container	{ margin-top:25px;}
.press-container .heading { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{49d9bda9-6f30-4aac-95f1-b015c832741a}_press-icon.png") no-repeat 0 0; }
.user-container .heading { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ee0c373b-2a32-49bd-8c10-7fb6082c6472}_user-icon.png") no-repeat 0 0; }
/* CSS for company page ends */

/* Customer Page CSS starts */
#customer-page-hero { position:relative; margin-bottom:34px; }
.customer-video-thumb { position:absolute; left:28px; top:21px; }
.customer-banner-txt { position:absolute; left:385px; top:45px; width:260px; color:#ffffff; }
.customer-banner-txt ul { margin:0; margin-top:5px; }
.customer-banner-txt ul li { margin-bottom:0px; }
.customer-banner-txt h1 { font-size:24px; line-height:25px; font-family: 'ProximaNova-Light'; }
.customer-review-container { position:absolute; right:10px; top:21px; width:250px; }
.customer-review-container ul { width:100%; float:left; list-style:none; margin:0; }
.customer-review-container ul li { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{2c5bc3c9-78b6-4b7f-abdd-dcced4e5355c}_customer-thumbnail-bg.png") no-repeat 0 0; width:225px; float:left; height:80px; padding:15px 10px 0px 15px; margin-bottom:7px; }
.customer-review-container ul li img { float:right; }
.customer-review-container ul li .txt { float:left; width:135px; color:#ffffff; font-size:12px; font-weight:bold; line-height:16px; }
.customer-review-container ul li .txt span { color:#999999; font-style:italic; font-size:11px; line-height:13px; display:block; margin-top:5px; }


.mrlft15 { margin-left:15px; }
.ea-section { width:47%; float:left; }
.bny-section { width:48%; float:right; }
.page-heading { width:650px; float:left; }
.page-heading .heading { font-size:36px; line-height:37px; font-family: 'ProximaNova-Light'; color:#333333; float:left; }
.page-heading .more-link { float:right; margin-top:15px; }
.customer-logo-container { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{a4bd43a4-2c0c-4a71-82b7-cad39e784bdd}_vertical-seperator.gif") repeat-y center top; margin-top:25px; }
.customer-logo-container p { margin-bottom:10px; }
.customer-logo-container h2 { margin-bottom:0px; }
.related-stories .items ul { list-style:none; margin:0px; }
.related-stories .items ul li { margin-bottom:15px; }
.green-container-data ul { list-style:none; margin:0px; color:#333333; }
.green-container-data ul li { margin-bottom:15px; }
.green-container-data ul li span { display:block; font-size:24px; line-height:25px; font-family: 'ProximaNova-Light'; color:#ffffff; }
.customer-detail-container { width:100%; float:left; margin-top:40px; }
.customer-detail-container .customer-block { width:30.33%; float:left; padding-right:3%; }
.customer-detail-container .customer-block h2 { margin-bottom:5px; }
.customer-detail-container .customer-block p { line-height:16px; margin-bottom:10px; } 
.our-customers-container { width:100%; float:left; margin-top:45px; }
.our-customer-section { width:630px; float:left; background:#999999 url("http://img.en25.com/eloquaimages/clients/Informatica/{3519c92e-922b-4f79-a778-ab9c88270dd5}_grey-slider-repeater.gif") repeat-x 0 0; min-height:308px; padding:10px 15px; } 
.our-customer-section h2 { float:left; color:#ffffff; margin-left:5px; }
ul.customer-tabs { float:left; margin:0px; list-style:none; }
ul.customer-tabs li { float:left; margin-left:20px; }
ul.customer-tabs li a { color:#cccccc; font-weight:bold; float:left; padding:0px 2px 6px 2px; }
ul.customer-tabs li a.active { color:#ffffff; padding-bottom:2px; border-bottom:4px solid #f78f1e; }
ul.customer-tabs li a:hover { text-decoration:none; }

.customer-slider { width:100%; float:left; margin-top:15px; height:230px; }

#industry, #products, #solutions { width:100%; float:left; position:relative; }
#products, #solutions { color:#ffffff; }

.industry-customers { width:580px; float:left; margin-left:25px; }
.industry-customers ul { width:580px; float:left; list-style:none; margin:0px; }
.industry-customers ul li { width:580px; float:left; color:#ffffff; }
.industry-customers ul li div { width:140px; float:left; padding-left:5px; height:213px; }
.industry-customers ul li div span { width:100%; float:left; }
.industry-customers ul li div span.customer-name { font-size:16px; color:#c7e9ff; font-family: 'ProximaNova-Semibold'; line-height:17px; margin-top:8px; }
.industry-customers ul li div span.customer-business { font-size:11px; font-weight:bold; color:#cccccc; line-height:13px; }
.industry-customers ul li div span.customer-desc { color:#ffffff; margin-top:8px; }

.product-customers { width:580px; float:left; margin-left:25px; }
.product-customers ul { width:580px; float:left; list-style:none; margin:0px; }
.product-customers ul li { width:580px; float:left; color:#ffffff; }
.product-customers ul li div { width:140px; float:left; padding-left:5px; }
.product-customers ul li div span { display:block; }
.product-customers ul li div span.customer-name { font-size:16px; color:#c7e9ff; font-family: 'ProximaNova-Semibold'; line-height:17px; margin-top:8px; }
.product-customers ul li div span.customer-business { font-size:11px; font-weight:bold; color:#cccccc; line-height:13px; }
.product-customers ul li div span.customer-desc { color:#ffffff; margin-top:8px; }

.solution-customers { width:580px; float:left; margin-left:25px; }
.solution-customers ul { width:580px; float:left; list-style:none; margin:0px; }
.solution-customers ul li { width:580px; float:left; color:#ffffff; }
.solution-customers ul li div { width:140px; float:left; padding-left:5px; }
.solution-customers ul li div span { display:block; }
.solution-customers ul li div span.customer-name { font-size:16px; color:#c7e9ff; font-family: 'ProximaNova-Semibold'; line-height:17px; margin-top:8px; }
.solution-customers ul li div span.customer-business { font-size:11px; font-weight:bold; color:#cccccc; line-height:13px; }
.solution-customers ul li div span.customer-desc { color:#ffffff; margin-top:8px; }

#industry .prev, #industry .next, #products .prev, #products .next, #solutions .prev, #solutions .next { width:12px; height:19px;	display:block; text-indent:-9999px;	outline:none; position:absolute; top:110px; }
#industry .prev, #products .prev, #solutions .prev { left:0px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{54451e89-79df-497a-90be-9166690edd79}_slider-left-arrow.png") no-repeat 0 0; }
#industry .next, #products .next, #solutions .next { right:0px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{7046a0c8-b470-4278-8063-603faba66688}_slider-right-arrow.png") no-repeat 0 0; }

.see-full-customer { width:100%; float:left; text-align:right; }
.see-full-customer a { padding-right:20px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ba740d80-ef3d-4c6f-bd86-5191478eeee3}_light-blue-arrow.png") no-repeat right 5px; font-weight:bold; color:#c7e9ff; }

.customer-promo { width:220px; float:left; padding:20px 0px 0px 20px; height:100px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{0aabe3dc-0b3b-4cd5-936c-2ba56bd01d20}_page-sidebar-call-out-gray-bg-customer.png") no-repeat 0 0; font-size:18px; color:#ffffff; line-height:22px; font-family: 'ProximaNova-Semibold'; }
.customer-promo a { color:#a8cef4; font-size:12px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; }
/* Customer Page CSS ends */


/* Informatica Communities page css starts */
.grey-header { width:940px; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{da24387f-b2d0-469e-8e0b-b098044011c9}_grey-header-bg.png") repeat-x 0 bottom; min-height:131px; padding:20px 20px 0px 20px; }
.action-links { float:right; }
.action-links ul { list-style:none; }
.action-links ul li { display:inline; margin-left:20px; font-size:12px; }
.page-head-search-container { width:100%; float:left; margin-top:17px; }
.page-head-search-container h1 { float:left; font-size:36px; line-height:37px; font-family: 'ProximaNova-Light'; color:#333333; }
.search-section { float:right; margin-top:5px; }
.search-input { float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ef67a1c4-8f76-46d3-b581-1625422068c2}_search-input-bg.png") no-repeat 0 0; width:192px; height:24px; padding:3px 10px 0px 10px; margin-right:7px; }
.search-input input { background:none; width:192px; border:0px; height:20px; font-size:12px; }
.communities ul.tabs{
	margin:0;
	list-style:none;
	position:relative;
	z-index:10;
	float:left;
	margin-bottom:20px;
	margin-top:-41px;
	}
.communities ul.tabs li{
	float:left;
	margin-right:6px;}
.communities ul.tabs li a{
	display:inline-block;
	padding:0 0 0 20px;
	height:41px;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{924afdb5-5a88-4f94-bdc3-2bd8edcdb516}_sub-page-tab-bg.png") no-repeat 0 -41px;}
.communities ul.tabs li a span{
	display:inline-block;
	padding:10px 20px 0 0;
	height:31px;
	font-weight:bold;
	color:#5482ab;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{924afdb5-5a88-4f94-bdc3-2bd8edcdb516}_sub-page-tab-bg.png") no-repeat 100% -41px;}
.communities ul.tabs li a.selected{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{924afdb5-5a88-4f94-bdc3-2bd8edcdb516}_sub-page-tab-bg.png") no-repeat 0 0px;}
.communities ul.tabs li a.selected span{
	color:#333;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{924afdb5-5a88-4f94-bdc3-2bd8edcdb516}_sub-page-tab-bg.png") no-repeat 100% 0px;}
.communities .tab-contents{
	width:100%;
	float:left;}
	
.communities-section { width:450px; float:right; }
.communities-section h2 { padding-left:40px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{8d30e563-1a9f-4882-95b0-c08542c981b6}_user-icon-green.png") no-repeat 0 0; line-height:22px; }
.community-category-block { width:48%; }
.fright{ float:right; }
.head { font-size:14px; font-weight:bold; line-height:15px; color:#659900; }
.community-category-block .head { margin:10px 0px 10px 0px; }
.community-category-block ul { list-style:none; margin:0px; }
.community-category-block ul li { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{52059a15-3b67-40b1-aa81-a96218e917a5}_dropdown-arrow.png") no-repeat 0 6px; padding-left:12px; margin:3px 0px; position:relative; }
.community-category-block ul li div.submenu { display:none; width:210px; position:absolute; left:80px; top:0px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{117bbc7d-76b1-4053-bd29-b8fb094f5af1}_dropdown-top-crv.png") no-repeat 0 0; z-index:100; padding-top:60px; }
.community-category-block ul li:hover div.submenu { display:block; }
.community-category-block ul li:hover div.submenu .submenu-btm { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{c1e7791a-df24-4b25-a547-cbc97ebdd554}_dropdown-btm-crv.png") no-repeat 0 bottom; float:left; }
.community-category-block ul li:hover div.submenu .submenu-btm ul { margin:-40px 15px 0px 20px; padding-bottom:30px; }





#slideshow { width:460px; float:left; position:relative; }
#slideshow .slides_container div { position:relative; height:240px; } 
#slideshow .slides_container div h1, #slideshow .slides_container div p, #slideshow .slides_container div a { position:absolute; }
#slideshow .slides_container div h1 { font-size:24px; line-height:25px; font-family: 'ProximaNova-Light'; color:#669900; }
#slideshow .slides_container div p { line-height:18px; }

#slideshow .slides_container div.slide1 h1 { top:50px; left:180px; }
#slideshow .slides_container div.slide1 p { top:85px; left:180px; }
#slideshow .slides_container div.slide1 a { top:170px; left:180px; }


#slideshow ul.pagination{
	position:absolute;
	top:220px;
	right:10px;
	list-style:none;
	margin:0;
	z-index:10;}
#slideshow ul.pagination li{
	float:left;
	margin-right:6px;}
#slideshow ul.pagination li a{
	width:8px;
	height:8px;
	display:block;
	text-indent:-9999px;
	outline:none;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{71d76677-d401-4ea0-a477-67be32e28536}_hero-slide-button.png") no-repeat 0 0;}
#slideshow ul.pagination li.current a{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{71d76677-d401-4ea0-a477-67be32e28536}_hero-slide-button.png") no-repeat 0 -8px;}
	
	
.three-col-container { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{49a46d23-6f3c-410e-97c1-aeae9ce3aad9}_three-col-seperator.gif") repeat-y 0 0; margin-top:20px; padding:10px 0px; }
.three-col-container h3 { font-size:16px; padding-left:40px; line-height:30px; margin-bottom:15px; }
.discussion-container { width:292px; float:left; padding:0px 10px; }
.documents-container { width:295px; float:left; padding:0px 10px; }
.face-com-container { width:293px; float:left; padding:0px 10px; }
.discussion-container h3 { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{c1b0ae66-0a46-4a79-870a-f83bb0b3db66}_callout-icon.png") no-repeat 0 0 ;}
.documents-container h3 { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{e93613ff-fef6-48c0-bca1-610b7e7bb6c8}_book-icon.png ") no-repeat 0 0; }
.face-com-container h3 { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{9f58a2ad-42e6-4e5d-a887-c03c063a0ea1}_face-icon.png") no-repeat 0 0; }

ul.inner-tabs { float:left; margin:0; list-style:none; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{99ee832a-56b5-489c-8883-a91be0ff4891}_vertical-seperator.gif") repeat-x 0 bottom; width:100%; }
ul.inner-tabs li { float:left; }
ul.inner-tabs li a { float:left; padding-left:12px; }
ul.inner-tabs li a span { float:left; padding-right:12px; line-height:30px; font-size:11px; font-weight:bold; color:#999999; }
ul.inner-tabs li a.active { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{a8a8fccb-ee30-4ee7-8a75-8e46b3bbbfd4}_inner-tab-bg.png") no-repeat 0 0; }
ul.inner-tabs li a.active span { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{956afc5e-bb0c-4541-8b71-5949da054284}_inner-tab-bg.png") no-repeat right bottom; color:#333333; }


.inner-tabs-data { width:100%; float:left; padding-top:15px; }
.inner-tabs-data ul { list-style:none; margin:0px; }

ul.listing { margin:0px; list-style:none; }
ul.listing li { margin-bottom:20px; }
ul.listing li.last { margin-bottom:0px; }
ul.listing li a, ul.listing li span { display:block; }
ul.listing li a { font-weight:bold; }
ul.listing li span.name { font-size:11px; font-weight:bold; color:#999999; }


.inner-tabs-data ul.link-listing li { margin-bottom:15px; }

ul.participant-listing { width:100%; float:left; margin:0px; list-style:none; margin-bottom:7px; }
ul.participant-listing li { margin-bottom:8px; width:100%; float:left; }
ul.participant-listing li .participant-thumb { float:left; width:32px; margin-right:10px; }
ul.participant-listing li .participant-thumb img { border:1px solid #cccccc; }


ul.participant-listing li a { float:left; font-weight:bold; line-height:32px; }
ul.participant-listing li span { float:right; font-size:11px; font-weight:bold; color:#999999; line-height:32px; }

ul.participant-listing li .participant-details { float:left; }
ul.participant-listing li .participant-details a, ul.participant-listing li .participant-details span { float:none; line-height:16px; } 
ul.participant-listing li .participant-details span { display:block; }

.social-media-container { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{185aeb69-b157-4727-b5fb-2e5d9d750d0b}_social-media-container-bg.png") no-repeat 0 0; margin-top:20px; padding-top:22px; }
.social-media-container h3 { font-size:16px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{f28a661d-0672-4272-a5ed-0dfab77557a1}_social-media-icon.png") no-repeat 0 0; float:left; padding-left:40px; line-height:28px; margin-left:10px; }
.social-media-details-container { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{9816451e-1e67-486e-a7c5-9de623fdb348}_social-media-details-bg.png") no-repeat 0 0; min-height:163px; margin-top:13px; padding:2px 0px 0px 0px; }
.social-media-data { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{06e42179-aada-4bf7-ab53-f0804bae895f}_six-col-seperator.gif") repeat-y 0 0; min-height:148px; padding-top:11px; }
.social-media-col { width:136px; float:left; padding:0px 10px; line-height:18px; }
.social-media-col h4 { padding-left:30px; font-size:13px; font-weight:bold; color:#333333; line-height:24px; background-repeat:no-repeat; background-position:left top; margin-bottom:7px; }
.social-media-col a { font-weight:bold; }
.social-media-col span { font-size:11px; font-weight:bold; color:#999999; display:block; }
.social-media-col.first { width:140px; }
.social-media-col h4.blog { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{3824dea6-0944-4000-81bd-f5d5cd3f6e9d}_rss-icon.png"); }
.social-media-col h4.facebook { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{e11e3848-2de5-48e7-bd56-08887c3c8f4d}_facebook-icon.png"); }
.social-media-col h4.twitter { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{883f7ae5-dd19-43c9-9cbd-a3ed3a2790df}_twitter-icon.png"); }
.social-media-col h4.flickr { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{54d17014-e6c4-4192-9d79-e98fbd496b66}_icon-flickr.png"); }
.social-media-col h4.linkedin { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{76dc0803-ba1d-4d10-a9d4-0def333e2f7e}_icon-linkedin.png"); }
.social-media-col h4.youtube { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{bdc19e39-d660-421d-a55a-eb344801eaee}_icon-youtube.png"); }


h2.latest-blog { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{cefbb6ac-1f00-4207-b4e6-c9b9c21b0b06}_latest-blog-icon.png") no-repeat 0 0; padding-left:40px; line-height:28px; }
h2.globe { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{e7b08090-977c-4135-936e-a5c51ad820a5}_globe.png") no-repeat 0 0; padding-left:40px; line-height:29px; }
.mrtp20 { margin-top:20px; }
.social-site-block { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{b41761b8-739b-4de0-8e9a-a332a5381a62}_page-sidebar-box-bottom-shadow.png") no-repeat 0 bottom; padding-bottom:40px; margin-bottom:10px; }
.social-site-block.last { background:none; margin-bottom:0px; padding-bottom:0px; }
.social-site-block h3 { font-size:16px; line-height:24px; padding-left:34px; line-height:24px; background-repeat:no-repeat; background-position:left top; }
.social-site-block h3.youtube { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{ab82ea25-14f1-41f5-bec2-57e9535ada07}_icon-youtube.png"); }
.social-site-block h3.flickr { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{de38ac78-c765-48bb-84bb-e070e33f40a4}_icon-flickr.png"); }
.social-site-block h3.twitter { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{b0339adf-f4d8-47d9-922b-ee7efee86196}_twitter-icon.png"); }
.social-site-block h3.facebook { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{dfb25967-edd2-47ea-945c-5d7c8174bd4e}_facebook-icon.png"); }
.social-site-block h3.linkedin { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{3e856358-6947-4c83-8bf8-32a3e85f2f30}_icon-linkedin.png"); }
.social-site-block h3.slideshare { background-image:url("http://img.en25.com/eloquaimages/clients/Informatica/{a159a8d3-c828-4cc5-8986-d2e92f18238b}_icon-slideshare.png"); }
.social-site-block p { margin-top:15px; }
ul.more-link-listing { list-style:none; margin:0px; margin-top:15px; }
ul.more-link-listing li { margin-top:5px; }
ul.more-link-listing li a  { padding-right:10px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{32a2d8a9-1e79-4e65-af72-df5e48db04dd}_more-link-arrow.png") no-repeat 100% 6px; font-weight:bold; }

ul.img-listing { list-style:none; float:left; margin:0px; margin-top:16px; }
ul.img-listing li { float:left; margin-right:15px; }
ul.img-listing li:last-child { margin-right:0px; }
ul.img-listing li a { float:left; }
.clear { clear:both; }

.comp-info-container { width:100%; float:left; margin-top:15px; }
.shadow-repeater-660 { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{321c6bba-b43b-459a-9dba-27aca196b5ac}_repeater-with-shdw-660.png") repeat-y 0 0; float:left; width:654px; padding:0px 3px; }
.dark-grey-repeater { width:604px; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{5b5c7187-85fc-4a49-920d-755fa6b9f96c}_dark-grey-gradient-repeater.gif") repeat-x 0 bottom; padding:25px; }
.comp-details-container { width:100%; float:left; padding-bottom:15px; border-bottom:1px solid #e2e2e2; margin-bottom:15px; }
.comp-details { width:100%; float:left; }
.social-icons { float:right; }
.social-icons a { float:left; margin-left:15px; }
.comp-desc { color:#666666; font-size:18px; line-height:22px; font-family: 'ProximaNova-Light'; width:100%; float:left; margin-top:15px; }
ul.comp-info-listing { list-style:none; margin:0px; }
ul.comp-info-listing li { margin-bottom:15px; }
ul.comp-info-listing li.last { margin-bottom:0px; }
ul.comp-info-listing li span { color:#999999; font-size:11px; font-weight:bold; display:block;}


.featured-videos-container { width:100%; float:left; }
.featured-videos-container-data { width:630px; float:left; position:relative; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{cc893170-772f-47cb-96fa-0024eec7ade1}_featured-video-container-bg.gif") repeat-x 0 0; padding:0px 14px; border:1px solid #e7e7e7; border-width:0px 1px; }
.featured-video-listing { width:255px; float:right; } 
.featured-video-thumb { width:80px; float:right; }
.featured-video-desc { width:135px; float:left; font-size:11px; color:#999999; line-height:14px; font-style:italic; }
.featured-video-desc strong { font-size:12px; color:#333333; font-style:normal; display:block; padding-bottom:5px; }
a:hover .featured-video-desc{ color:#666;}
a:hover .featured-video-desc strong{ color:#111;}

.featured-video-slider { width:100%; height:265px; float:left; }
.featured-video-slider .slides_container { width:360px; float:left; }
.featured-video-slider .slides_control div { width:360px; height:265px; }



.featured-video-listing ul { width:255px; float:left; list-style:none; margin:0px; }
.featured-video-listing ul li { width:227px; float:left; padding:14px; height:57px; }
.featured-video-listing ul li.current { padding:13px; border:1px solid #e7e7e7; background:#eeeeee; border-radius:5px; }
.featured-video-listing ul li a{ text-decoration:none;}

.featured-videos-container .prev { width:36px; height:25px; display:block; text-indent:-9999px; outline:none; position:absolute; top:-14px; right:124px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{b5296737-1aa5-47c6-a7f0-a8026d3b932d}_featured-video-top-arrow.png") no-repeat 0 0; z-index:10; }
.featured-videos-container .next { width:36px; height:25px; display:block; text-indent:-9999px; outline:none; position:absolute; bottom:-14px; right:124px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{44ef590f-0d8c-4bb7-a4ad-6bc4afe7d491}_featured-video-btm-arrow.png") no-repeat 0 0; z-index:10; }
.featured-videos-container .disabled{ filter:alpha(opacity=20); opacity:0.2;}
/* Informatica Communities page css ends */

/* Communities subpage css starts */

.submit-question-container { width:100%; float:left; margin-bottom:20px; }
.submit-question-input-bg { width:470px; float:left; padding:4px 8px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{959544a3-fda8-4f4c-b739-0adc696922de}_submit-question-input-bg.gif") no-repeat 0 0; height:19px; margin-right:8px; } 
.submit-question-input-bg input { background:none; border:0px; width:470px; float:left; }
.block-heading { font-size:16px; padding-left:40px; line-height:30px; margin-bottom:15px; font-family: 'ProximaNova-Semibold'; color:#333333; margin-top:25px; }
.block-heading.nomrgn { margin-top:0px; }
.block-heading.clock { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{c9294808-7ad6-4987-90b7-494d7d9cf77a}_clock.png") no-repeat 0 0; }
.block-heading.callout { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{a9ef7265-1334-43a8-bc45-cf522de84322}_callout-icon.png") no-repeat 0 0; }
.block-heading.report { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{f43a24a2-e65a-43ec-8b71-eb4f37c82226}_cardboard.png") no-repeat 0 0; }
.block-heading.calculator { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{15b6014a-7d77-4a8f-a847-3aaaccc948d9}_calculator.png") no-repeat 0 0; }
.block-heading.brochure { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{0a4ced32-57f7-434a-8e6c-227a81b8e39f}_brochure.png") no-repeat 0 0; }
.block-heading.book { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{bcc50a76-33d7-4118-8f1d-a2b117606b53}_book.png") no-repeat 0 0; }

.grey-promos-container { width:100%; float:left; margin-top:25px; }
.grey-promo { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{07a81c9c-ee5c-4bee-906e-4fbdd73b98bf}_grey-promo-left.png"); width:300px; padding:30px 0px 0px 21px; height:96px; float:left; font-size:18px; color:#ffffff; line-height:22px; font-family: 'ProximaNova-Semibold'; }
.grey-promo.two { background:url("http://img.en25.com/eloquaimages/clients/Informatica/{724c4955-dee6-4ca0-99b7-448db2d68b71}_grey-promo1-left.png"); margin-left:18px; }
.grey-promo a { color:#a8cef4; font-size:12px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; }
ul.normal-link-listing li { margin-bottom:2px !important; }

.size20 { font-size:20px; }
.size10 { font-size:10px; }
.size14 { font-size:14px; }
.size16 { font-size:16px; }



/* Resource Library page css starts */

.search-select-container { width:100%; float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{dc31a5ab-be80-4e93-a597-02289d48d19d}_search-select-container-bg.png") no-repeat 0 0; height:304px; padding-top:20px; margin-bottom:30px; }
.scroll-pane{ width: 100%; height: 185px; overflow: auto;}
.type-radio .scroll-pane{ height: 206px;}

.size36 { color:#333333; font-size:36px; line-height:37px; margin-bottom:10px; font-family: 'ProximaNova-Light'; }

.select-col { width:212px; float:left; margin-left:18px; }
.three-filter-columns .select-col { margin-right:20px;}

.select-col h3 { 
	font-size:13px; color:#333; margin-bottom:0px;
	background: url("http://img.en25.com/eloquaimages/clients/Informatica/{7f08b0f0-5c37-42dc-9de6-7289f2403166}_select-col-header-bg.png) repeat-x scroll 0 0 transparent;
    border: 1px solid #E0E0E0;
    line-height: 36px;
    padding: 0 10px;}
.select-col-header { line-height:20px; padding:0px 5px; font-size:11px; 
border-left: 1px solid #DDD;
border-right: 1px solid #DDD;
border-bottom: 1px solid #DDD;
background:#EEE; }
.select-col-header span { display:inline-block; padding:0px 7px; }
.select-col-data { padding:2px; margin:0px 1px; background:#ffffff; }

.form-row { margin-bottom:3px; margin-top:7px; font-size:12px; padding-left:8px; }
.form-row input[type="checkbox"] { width:13px; height:13px; float:left; }
.form-row label { display:block; line-height:16px; margin-left:22px; }
.sub-form-rows { padding-left:20px; }
.form-row.radio-overlay { margin-bottom: 0; margin-top: 0; padding-left: 0; }
/*.form-row.radio-overlay input { display: none; }*/
.form-row.radio-overlay label { margin-left: 0; padding: 7px 0 3px 8px;  }
.form-row.radio-overlay label.selected { background-color: #E9EEF4; }

.find-resource-btn { float:right; margin:15px 20px 0px 0px; }
.three-filter-columns .find-resource-btn { margin-top:220px; }





span.jqTransformCheckboxWrapper{
	display:block;float:left;
}
a.jqTransformCheckbox {
	background: transparent url("http://img.en25.com/eloquaimages/clients/Informatica/{566017e7-5799-473c-b58c-e9ebdcf9a82d}_checkbox-bg.png") no-repeat center top;
	vertical-align: middle;
	height: 16px;
	width: 16px;
	display:block;/*display: -moz-inline-block;*/
}








.search-body-result-info					{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{6733e50b-78cc-4368-9d7a-c5023db548f8}_search-body-result-info-bg.png") no-repeat 0 0;			padding:0 0 0 15px; margin-bottom:20px;}
.search-body-result-info-contents	{ background:url("http://img.en25.com/eloquaimages/clients/Informatica/{6733e50b-78cc-4368-9d7a-c5023db548f8}_search-body-result-info-bg.png") no-repeat 100% 0;	padding:15px 15px 12px 0;}
.search-body-result-info h3				{ color:#333; margin-bottom:0;}
.search-body-result-info .search-selection .title	{ color:#666;}
.search-body-result-info .search-selection a			{ display:inline-block; margin-left:20px; padding-right:20px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{93bfe8c5-e8ff-45d5-b596-5d66dc1c0254}_search-selection-close.png") no-repeat 100% 3px;
																										font-size:11px; text-transform:uppercase; font-weight:bold; color:#0069AA; text-decoration:none;}
.search-body-result-info .search-selection a:hover	{background:url("http://img.en25.com/eloquaimages/clients/Informatica/{93bfe8c5-e8ff-45d5-b596-5d66dc1c0254}_search-selection-close.png") no-repeat 100% -27px;}


form#search-body { margin-bottom:20px;}
form#search-body #search-body				{	width:350px;}
form#search-body div.selector 			{ width:125px;}
form#search-body div.selector span	{ width:100px;}



.search-filter{
	width:210px;
	margin-right:20px;
	margin-top:30px;
	float:left;}

.search-filter .find-resource-btn { float:right; margin:15px 45px 15px 0px; }

.search-filter .select-col{
	margin-left:0;}
.search-filter .select-col h3 a{
	color:#333;
	padding-left:20px;
	text-decoration:none;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{a0486692-a937-4327-b2b5-577bd6cea6e6}_search-filter-box-arrow.png") no-repeat 3px 5px;}
.search-filter .select-col h3 a.closed{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{a0486692-a937-4327-b2b5-577bd6cea6e6}_search-filter-box-arrow.png") no-repeat 3px -48px;}

.search-result{ float:left; }
.search-result-item{ margin-bottom:25px;}
.search-result-item h3{ color:#0069aa; margin-bottom:0; font-family:Arial, Helvetica, sans-serif; font-size:13px; font-weight:bold;}
.search-result-item .author{ margin:0;}
.search-result-item .type{ color:#669900; text-transform:uppercase;}
.search-result-item .type .info{ color:#999999;}
.search-result-item .mark{ background:#fde9d2; padding:3px 4px; margin:0 -2px;}
.search-result-item h3 .info{ color:#999; font-size:11px; display:inline-block; margin-left:5px;}


.event-date{ float: left; height: 80px; width: 61px; margin-right: 15px; font-size: 18px; font-weight: bold; background-image: url("http://img.en25.com/eloquaimages/clients/Informatica/{0d63f73e-711c-4e7e-84c6-49d5df8eafea}_date-bg.png"); background-repeat: no-repeat; text-align: center; padding: 9px 0 0 0;}
.event-date h3{ font-size:22px; color:#333; font-weight:normal;}
.search-result-item.event h3 .info{ font-size: 13px;}

.search-pagenation{
	background: url("http://img.en25.com/eloquaimages/clients/Informatica/{1176fb56-a135-49e9-af24-8ffc5c60302b}_select-col-header-bg.png") repeat-x scroll 0 0 transparent;
	border: 1px solid #E0E0E0;
	line-height: 36px;
	margin-bottom: 20px;
	padding: 0 10px;}

.search-pagenation .sort-links	{ float:left;}
.search-pagenation .sort-links .title { color:#666; font-weight:bold;}
.search-pagenation .sort-links .current,
.search-pagenation .sort-links a			{ display:inline-block; margin:0 5px;}

.search-pagenation .numbers{
	float:right;
	margin-right:10px;}
.search-pagenation .current{
	color:#666;}
.search-pagenation a{
	padding:0 3px;}
.search-pagenation a.search-pagenation-prev,
.search-pagenation a.search-pagenation-next{
	padding:0;
	margin:5px 0 0 5px;
	display:inline-block;
	width:18px;
	height:26px;
	text-indent:-9999px;
	outline:none;
	float:right;
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{db3b4e07-5c59-4dd4-985b-89b034245f00}_search-pagenation-prevnext.png") no-repeat 0 0;}
.search-pagenation a.search-pagenation-next{
	background:url("http://img.en25.com/eloquaimages/clients/Informatica/{db3b4e07-5c59-4dd4-985b-89b034245f00}_search-pagenation-prevnext.png") no-repeat -18px 0;}



#main.search-result .page-main{ width:auto; padding-right:0;}
#main.search-result .search-result{width:700px;}


.related-marketplace-blocks-items				{margin:15px 0 0 15px;}
.related-marketplace-blocks-items .item	{margin:0 0 15px 0; clear:both;}
.related-marketplace-blocks-items .item img	{ float:left; margin-right:12px;}
.related-marketplace-blocks-items .item .info	{ float:left; width:165px;}
.related-marketplace-blocks-items .item .info .title a{ font-weight:bold;}
.related-marketplace-blocks-items .item .info .vendor{ font-weight:bold; color:#999; font-size:11px;}


.event-search-filter .scroll-pane-1{  height: 100px;}
.event-search-filter .scroll-pane-2{  height: 160px;}





/* -------------
 * Checked - Used for both Radio and Checkbox
 * ------------- */
a.jqTransformChecked { background-position: center bottom;}
.jqTransformHidden {
    display: none;
}
.jspContainer {
    overflow: hidden;
    position: relative;
}
.jspPane {
    position: absolute;
}
.jspVerticalBar {
    background: none;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 7px;
}
.jspTrack {
    background:url("http://img.en25.com/eloquaimages/clients/Informatica/{491c9d48-13e8-43d3-9206-16d3a63cdeb5}_scroll-bg.png") no-repeat 0 0;
    position: relative;
}
.jspDrag {
    background:#717171;
    cursor: pointer;
    left: 0;
    position: relative;
    top: 0;
}
.jspDragTop { position:absolute; width:7px; height:4px; left:0; top:0; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{793b9283-d9a2-4150-88d3-a5654bec7130}_scroll-top.gif") no-repeat 0 0; }
.jspDragBottom { position:absolute; width:7px; height:4px; left:0; bottom:0; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{4edc1099-746a-423e-8fd2-c25570212057}_scroll-btm.gif") no-repeat 0 0; }


ul.normal-listing { margin:0px; list-style:none; }
ul.normal-listing li { margin-bottom:15px; }
ul.normal-listing li:last-child { margin-bottom:0px; }
ul.normal-listing li span { display:block; }
.mrrit10 { margin-right:10px; }

ul.thumb-listing { margin:0px; list-style:none; margin-top:10px; float:left; }
ul.thumb-listing li { float:left; position:relative; margin-right:16px; }
ul.thumb-listing li:last-child { margin-right:0px; }
ul.thumb-listing li a { float:left; }
ul.thumb-listing li a span { position:absolute; width:160px; padding:0px 20px; text-align:center; left:0; top:95px; font-size:12px; font-weight:bold; color:#ffffff; line-height:14px; }

ul.video-listing { margin:0px; list-style:none; float:left; }
ul.video-listing li { padding-left:50px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{96cbc92f-a075-4b9b-be8b-cbbe4e665cde}_video-icon.png") no-repeat 0 0; float:left; width:275px; margin-top:15px; }


.page-sidebar ul.normal-listing li { margin-bottom:10px; }



.aside-box{
	width:240px;
	margin-bottom:20px;
	padding:0;
	float:left;}
.aside-box h3{
	color:#666;
	font-size:16px;
	line-height:1em;
	text-align:center;}
.aside-box h3 span{	background:#fff; padding:0 7px;}
.aside-box ul{ margin:0; padding:0; list-style:none;}
.aside-box ul li{ margin-bottom:10px;}
.aside-box .items{
	background: url("http://img.en25.com/eloquaimages/clients/Informatica/{e8d75806-3fe1-4b53-84db-9e81e5a42bad}_page-sidebar-box-bottom-shadow.png") no-repeat scroll 0 100% transparent;
	padding: 10px 15px 35px 15px;}

.aside-box-green{ background: url("http://img.en25.com/eloquaimages/clients/Informatica/{f5afa7eb-ef17-432e-94cd-d97bdea23f77}_aside-box-green-bg.png") no-repeat 0 0;}
.aside-box-blue{ background: url("http://img.en25.com/eloquaimages/clients/Informatica/{002a2ce5-f9e4-43ec-a58c-d44df4d59259}_aside-box-blue-bg.png") no-repeat 0 0;}
.aside-box-water{ background: url("http://img.en25.com/eloquaimages/clients/Informatica/{18838564-7721-4a09-81af-38d55e402212}_aside-box-water-bg.png") no-repeat 0 0;}
.aside-box-yellow{ background: url("http://img.en25.com/eloquaimages/clients/Informatica/{a7284de0-2462-40c2-ac88-ff4e86c1bf53}_aside-box-yellow-bg.png") no-repeat 0 0;}
.aside-box-orange{ background: url("http://img.en25.com/eloquaimages/clients/Informatica/{07617e0b-ff22-4149-8596-a0f54b61680f}_aside-box-orange-bg.png") no-repeat 0 0; }
.aside-box-orange .items .item{
	line-height:1.4em;
	margin-bottom:1.4em;}
.aside-box-orange .items .item .blog-title{
	font-weight:bold;}
.aside-box-orange .items .item .blog-info{
	color:#999;}

.aside-box .scroll-pane-aside-box{background: url("http://img.en25.com/eloquaimages/clients/Informatica/{ea17ca8e-0ecf-415e-9d3f-a22f5094cc2c}_page-sidebar-box-bottom-shadow.png") no-repeat scroll 0 100% transparent; padding-bottom:35px;}
.aside-box .scroll-pane{ width: 100%; height: 250px; overflow: auto;}
.aside-box .scroll-pane .items{ background:none;}


/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
/*  a:after { content: " (" attr(href) ")"; }  */
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { /* border: 1px solid #999;*/ page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
	#menu,
	#side-toolkit,
	#footer .contents{ display:none;}
}

/*************************************COMMUNITIES Style added by Yasir***********************************************/
.communities h3{ font-family:arial; font-weight:bold;}
ul.communities li .actions-thumb { float:left; width:26px; margin-right:10px;}
ul.comunities li .actions-details { float:left;}
ul.communities li .actions-details a { float:none; line-height:26px;} 
ul.communities li { margin-bottom:2px !important; }
.communities h3{ border-bottom-width:0px;}
.filter_content{background:url("http://img.en25.com/eloquaimages/clients/Informatica/{85a8633d-8ed5-4917-a0b2-d0a6b2adbc5e}_filter_bground.png"); padding-bottom:15px;}
.select-col.communities{ width:640px;}
.categories_main{ margin-left:25px; margin-right:25px;}
.select-data-communities { padding:0px; margin:0px;}
.categories-filter{ padding-bottom:5px; padding-top:15px; padding-top:15px;}
.category_links{ padding-top:15px; padding-bottom:30px;}
.category_links div{float:left; width:50%;}
.categories-filter strong{ color:#333;}
.create_video_main{ padding-top:20px; padding-left:20px;}
.create_video{ width:32px; float:left; margin-right:10px;}
.create_video_link{ font-size:16px;margin-top:2px;}
.create_video_text{ margin-left:42px; padding-top:5px;}

ul.polls-listing .title{ font-weight:bold;}
ul.polls-listing .authors{ width:125px; float:left; margin-right:15px; border:solid 1px #FFF;}
ul.polls-listing .subject{ width:225px; float:left; margin-right:10px; border:solid 1px #FFF;}
ul.polls-listing.general-listing .subject{ width:185px; float:left; margin-right:10px; border:solid 1px #FFF;}
ul.polls-listing .votes{ width:40px; float:left; margin-right:10px; border:solid 1px #FFF;}
ul.polls-listing .comments{ width:85px; float:left; margin-right:10px; border:solid 1px #FFF;}
ul.polls-listing .started{ width:65px; float:left; margin-right:10px; border:solid 1px #FFF;}
ul.polls-listing .end{ width:65px; float:left;}
ul.polls-listing .views{ width:50px; float:left; margin-right:10px; border:solid 1px #FFF;}
ul.polls-listing .replies{ width:50px; float:left; margin-right:10px; border:solid 1px #FFF;}
ul.polls-listing .rating{ width:100px; float:left; margin-right:10px; border:solid 1px #FFF;}
ul.polls-listing .activity{ width:100px; float:left; margin-right:10px; border:solid 1px #FFF;}

ul.polls-listing { width:100%; float:left; margin:0px; list-style:none; margin-bottom:7px;}
ul.polls-listing li { margin-bottom:6px; padding-top:6px; width:100%; float:left; border-top:solid 1px #E2E2E2;}
ul.polls-listing li:first-child{ border:none;}
ul.polls-listing li .polls-thumb { float:left; width:32px; margin-right:10px;}
ul.polls-listing li .polls-thumb img { border:1px solid #cccccc;}
ul.polls-listing li a { float:left;  line-height:32px;}
ul.polls-listing li span { float:right; font-size:11px; font-weight:bold; color:#999999; line-height:32px;}
ul.polls-listing li .polls-details { float:left;}
ul.polls-listing li .polls-details a, ul.polls-listing li .polls-details span { float:none; line-height:16px;} 
ul.polls-listing li .polls-details span { display:block;}
.rssfeed{width:16px; height:16px; float:left;}
.rssfeed img{margin-top:9px;width:16px; height:16px;}
.rssfeedtxt{ font-size:11px;}
.story-tools-main-container.documents{height:35px; margin-top:15px;}
.featured_documents a{ font-weight:bold;}
.featured_documents{margin-bottom:15px;}
.general_filter{ float:left; margin-left:50px;}
.general_filter.ideas{ float:left; margin-left:0px;}
.general_filter.ideas_footer{ float:right;margin-left:0px;}
.general_filter.ideas.rightideas{ float:right; margin-left:0px;}
.general_filter.ideas.middleideas{ float:left; margin-left:40px;}
.general_filter span{ font-weight:bold;}
.general_filter div.selector span{ width:125px !important;}
.general_filter.ideas div.selector span{ width:75px !important;}
.general_filter.ideas div.selector{ width:auto !important;}
.general_filter.allcontent{ float:left; margin-left:0px;}
.general_filter.allcontent div.selector{ width:auto !important;}
.general_filter.ideas_footer div.selector{ width:auto !important;}
.general_filter.allcontent div.selector span{ width:30px !important; min-width:30px !important;}
.general_filter.ideas_footer div.selector span{ width:30px !important; min-width:30px !important;}
.select-data-communities .scroll-pane{ height:auto !important;}
.content_filter_bottom{ margin-top:15px;}
.all_content_tags{ padding-top:15px; padding-bottom:10px;}

.all_content_header{ width:642px; height:100px; margin-bottom:20px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{3916b23e-89e5-4808-9cbf-9556116b31bd}_all_content_header.png") no-repeat;}
.announcement{float:left; margin-right:10px; width:30px; height:70px; margin-top:10px;}
.page_heading { line-height:30px; margin-left:20px;}
.page_heading img{vertical-align:top; margin-top:10px;}
.page_heading h2{ margin-bottom:0px; padding-top:15px;}
.announcement_text{ width:600px; margin-left:50px; border:solid 1px #333;}

.ideas_content{list-style:none;}
.ideas_content li{ border-bottom:solid 1px #E2E2E2;}
.ideas_content li.last-child{ border:solid 0px #FFF;}
.ideas_content .leftbox{ float:left; width:100px; }
.ideas_content .rightbox{ float:left; width:530px; }
.ideas_content .rightbox .heading{ font-weight:bold;}
.leftbox .vote{ float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{5e815b94-cf46-4166-af23-33c920babf38}_vote_bg.png") no-repeat; width:56px; height:42px; font-size:24px;}
.leftbox .vote span{ padding-top:12px; padding-left:15px;}
.rightbox .comments{ float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{ebad8b05-07d3-4c72-af4d-0650019fda96}_comments.png"); background-position: 0 0;  background-repeat: no-repeat; background-size: auto auto; padding-left: 20px; margin-top:15px; font-size:11px;}
.rightbox .comments a{ font-weight:normal !important;}
.rightbox .categories{ float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{19da3524-af24-45fc-b272-1baf70361bb5}_categories.png"); background-position: 0 0;  background-repeat: no-repeat; background-size: auto auto; padding-left: 20px; margin-top:15px; font-size:11px; margin-left:15px;}
.rightbox .tags{ float:left; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{c23f7e73-a360-4b9d-b98f-e95a906a2e21}_tags.png"); background-position: 0 0;  background-repeat: no-repeat; background-size: auto auto;  padding-left: 20px; margin-bottom:15px; font-size:11px; clear:both;}
.rightbox .tags a{ font-weight:normal !important;}
ul.listing li a{ display: inline;}
.leftbox .active{ font-weight:11px; margin-left:8px; clear:both;}
.vote_control{ width:26px; height:42px; float:left; margin-left:2px;}
.vote_up{ width:26px; height:19px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{1ec57252-8e2b-46f1-b0f1-6e978b8467b0}_vote_up.png");}
.vote_down{ width:26px; height:19px; background:url("http://img.en25.com/eloquaimages/clients/Informatica/{1a4d480b-98d5-461c-a513-3c9f4433562e}_vote_down.png"); margin-top:2px;}
.vote_up span{ padding-top:5px; padding-left:7px;}
.vote_down span {padding-top:6px; padding-left:7px;}
/*********Eloqua Forms**********/
#main .eloqua{
	background:none !important;	
    background-color:#FFF !important;
    }
#main .contents{
  border:solid 1px #ccc;
}    
    

