/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Defaults
 * A few styles taken from YUI base.css and other sources
 */
 
em, i {
	font-style: italic;
}

strong, b {
	font-weight: bold;
}

del, strike {
	text-decoration: line-through;
}

abbr, acronym {
	border-bottom: 1px dotted #000;
	cursor: help;
}

ol li {
	list-style: decimal outside;
}

ul li {
	list-style-position: outside; /* Helps with ul li alignment in IE */
}

sup {
	/* to preserve line-height and selector appearance */
	vertical-align: super;
}

sub {
	/* to preserve line-height and selector appearance */
	vertical-align: sub;
}

/* Opera requires 1px of padding to render with contemporary native chrome */
button,
input[type="checkbox"],
input[type="radio"],
input[type="reset"],
input[type="submit"] {
	padding:1px;
}

a:link,
a:active,
a:visited {
	color: #1766AA;
	text-decoration: none;
}

a:hover, 
a:visited:hover {
	color: #1766AA;
	text-decoration: underline;
}

/* Prevent system borders generated for anchor tags */
a {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Image Replacement - Gilder/Levin Method
 * Example markup:
 * <div class="bg-image">
 *  <span class="bg"></span>Image Text
 * </div>
 */
 
.bg-image { /* Containing element */
	position: relative;
	overflow: hidden;
}

.bg-image span.bg { /* Span element containing bg image */
	position: absolute;
	width: 100%;
	height: 100%;
}

/** 
 * Use Phark method for transparent images 
 * - http://www.mezzoblue.com/tests/revised-image-replacement/
 * Example markup:
 * <div class="bg">
 *  Image Text
 * </div>
 */
.bg {
	background-position: 0px 0px;
	background-repeat: no-repeat;
	text-indent: -5000px;
}

span.bg { /* Reset for G/L */
	text-indent: 0px;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Image Map
 */
 
a.image-map {
	display: block;
	position: absolute;
}

body a.image-map, 
body a.image-map:hover, 
body a.image-map:visited, 
body a.image-map:visited:hover {
	text-decoration: none;
}

a.image-map i {
	visibility: hidden;
}

a#home {
	top: 0px;
	left: 0px;
	width: 400px;
	height: 100px;
}

a#champion-link {
	bottom: 30px;
	left: 55px;
	width: 120px;
	height: 100px;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Float Clearing
 * http://positioniseverything.net/easyclearing.html
 */
 
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

/* IE-mac fix */
.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;} /* Floated element *must* have dimension for IE */
.clearfix {display: block;} /* remove inline-block for all other browsers (besides IE-mac) */
/* End hide from IE-mac */

/* fix so lists may display bullets, etc - a bit screwy in IE */
ul li.clearfix {
	display: list-item;
}

/**
 * http://www.quirksmode.org/css/clearing.html
 *  - Doesn't work as well... requires width:100% for IE6, which messes up layouts
 */

.clearfix-q {
	overflow: hidden;
	*width: 100%;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Drop Shadow
 */
 
.drop-shadow {
	display: inline; /* IE6- float margin bug */
	position: relative; /* So img border shows up in IE6 (p56) */
	float: left;
	clear: right;
	margin: 0px 0 0px 0px; /* Set to your needs for inline image */
	background: url('http://i.cmpnet.com/informationweekreports/analytics/images/cover_drop_shadow.gif') no-repeat right bottom;
}

.drop-shadow img {
	position: relative; /* So img border shows up in IE6 (p56)*/
	display: block; /* So img border shows up in IE6 (p56) */
	margin: -3px 10px 6px -3px; /* Set specific to size of background image */
	border: 1px solid #999999;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Custom Doc Width
 * All widths set in EMs. To calculate EMs:
 *  Pixel width / 13px = "EM width"
 *  "EM width" x 0.9759 = "IE's EM width"
 */
 
#custom-doc {
    /*width:75.38em;
    *width:73.57em;
    min-width:980px*/
    width: 980px;
    margin: auto;
    text-align: left; 
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Cross-section Styles
 */

h2, h3, h4 {
    margin-top: 35px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: 138.5%;
    font-weight: bold;
    color: #C13C27;
    border-bottom: 1px solid #B32917;
}

h3, h4 {
    font-size: 116%;
}

h4 {
    color: #303030;
}

blockquote {
    float: right;
    width: 210px;
    margin-bottom: 30px;
    margin-left: 24px;
    line-height: 153.9%;
    font-family: "Lucida Grande", helvetica, arial;
    font-size: 123.1%;
    color: #B32917;
}

p {
    line-height: 146.5%;
    font-size: 93%;
}

img {
    float: left;
    margin: 4px 14px 6px 0;
    border: 1px solid #BFBFBF;
}

object, 
embed, 
a.video-player {
    float: right;
    margin: 0 0 16px 30px;
}

a.video-player {
    position: relative;
    display: block; 
    width: 425px; 
    height: 303px;  
    text-align: center; 
    border: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

#bd a.video-player img {
    position: absolute;
    float: none;
    top: 50%;
    left: 50%;
    margin: 0;
    padding: 0;
    border: 0;
    margin-left: -42px;
    margin-top: -42px;
}
 
a:link,
a:active,
a:visited {
	color: #1766AA;
	text-decoration: none;
}

a:hover, 
a:visited:hover {
	color: #1766AA;
	text-decoration: underline;
}

abbr {
    border: 0;
}

#bd h2 a:link, 
#bd h2 a:active, 
#bd h2 a:visited, 
#bd h3 a:link, 
#bd h3 a:active, 
#bd h3 a:visited {
	color: #C13C27;
	text-decoration: none;
}

#bd h2 a:hover, 
#bd h2 a:visited:hover, 
#bd h3 a:hover, 
#bd h3 a:visited:hover {
	color: #C13C27;
	text-decoration: none;
}

a.continue {
    font-weight: bold;
    color: #BF2E1A;
}

a.continue:link,
a.continue:active,
a.continue:visited {
	color: #BF2E1A;
	text-decoration: none;
}

a.continue:hover, 
a.continue:visited:hover {
	color: #BF2E1A;
	text-decoration: underline;
}

a.comment {
	padding-left: 22px;
	background: url('../images/icon-comment.png') no-repeat left top;
}

a.email {
	padding-left: 22px;
	background: url('../images/icon-envelope.png') no-repeat left top;
}

a.tweet {
    padding: 2px 0;
    padding-right: 55px;
	background: url('../images/icon-tweet.png') no-repeat right top;
}

a.tweet:hover {
    text-decoration: none;
}

a.rss {
    padding-top: 3px;
	padding-left: 22px;
	background: url('../images/icon-rss.png') no-repeat left bottom;
}

#ft a.email {
    display: block;
    clear: both;
	padding-left: 21px;
	font-size: 85%;
	background: url('../images/icon-email.png') no-repeat left top;
}

.pub-date {
    font-size: 93%;
}

h2 .pub-date, 
h3 .pub-date {
    display: block;
    padding-top: 3px;
    font-size: 77%;
    font-weight: normal;
    color: #303030;
}

h2 .pub-date {
    font-size: 69%;
}

.perspectives-icon {
    padding-top: 5px;
    padding-right: 60px;
    background: url('../images/icon-binoculars.png') no-repeat right bottom;
}

.event-tech-icon {
    padding-top: 5px;
    padding-right: 60px;
    background: url('../images/icon-button.png') no-repeat right bottom;
}

.exhibitor-corner-icon {
    padding-top: 5px;
    padding-right: 60px;
    background: url('../images/icon-booth.png') no-repeat right bottom;
}

.event-art-icon {
    padding-top: 5px;
    padding-right: 60px;
    background: url('../images/icon-fan.png') no-repeat right bottom;
}

.champion-uncovered-icon {
    padding-top: 5px;
    padding-right: 60px;
    background: url('../images/icon-champion.png') no-repeat right bottom;
}

.tweets {
    font-weight: bold;
    color: #000;
}
 
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Main Document Sections
 */
 
html {
    background: #F7F7F7 url('../images/bg-body.png') repeat-x left top; 
    color: #303030;
}

body {
    padding-bottom: 10px;
    background: url('../images/bg-footer-shadow.png') no-repeat 50% bottom;
    _background: url('../images/bg-footer-shadow-ie.png') no-repeat 50% bottom;
}
 
.container {
    position: relative;
    padding: 0 10px;
    background: url('../images/bg-container-shadow.png') repeat-y 50% top;
}

#bd {
    padding: 0 25px 20px 50px;
    background: url('../images/content-shadow.png') no-repeat 50% top;
}

#bd .main-content {
    width: 650px;
}

#bd .secondary-content {
    width: 205px;
    margin-top: 35px;
}

#ft {
    min-height: 80px;
    _height: 80px;
    margin: 30px 50px;
    margin-bottom: 0px;
    padding: 30px 0;
    padding-left: 126px;
    background: url('../images/logo-champion.png') no-repeat left 50%;
    border-top: 1px solid #D6D6D6;
}
 
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Header
 */
 
#hd h1 {
	width: 980px;
	height: 100px;
}

#hd h1 span.bg {
	background: url('../images/masthead.png') no-repeat center top;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Navigation Menus
 */

/* -------- Main Menu -------- */

ul.main-menu {
	width: 980px;
	height: 98px;
	margin: 3px 0;
	background: url('../images/bg-main-menu.png') no-repeat 50% top;
}

ul.main-menu li {
	display: block;
	float: left;
	height: 98px;
	background: url('../images/') no-repeat 50% 50%;
}

ul.main-menu li.first {
    _display: inline;
    margin-left: 17px;
}

ul.main-menu li a {
	display: block;
	height: 98px;
	text-indent: -5000px;
	background-repeat: no-repeat;
	background-position: 50% 0px;
}

ul.main-menu li a:hover, 
ul.main-menu li a.current {
	background-position: 50% -98px;
}

ul.main-menu li.perspectives a {
	width: 188px;
	background-image: url('../images/menu-item-perspectives.png');
}

ul.main-menu li.event-tech a {
	width: 171px;
	background-image: url('../images/menu-item-event-tech.png');
}

ul.main-menu li.exhibitor-corner a {
	width: 201px;
	background-image: url('../images/menu-item-exhibitor-corner.png');
}

ul.main-menu li.event-art a {
	width: 153px;
	background-image: url('../images/menu-item-event-art.png');
}

ul.main-menu li.champion-uncovered a {
	width: 232px;
	background-image: url('../images/menu-item-champion-uncovered.png');
}
 
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Main Content
 */

.main-content .yui-u {
    width: 315px;
}

.main-content p {
    padding-bottom: 8px;
}

.main-content p.continue {
    padding-bottom: 0px;
    padding-top: 16px;
}

.article-tools {
    clear: both;
    margin-top: 16px;
    font-size: 93%;
}

.article-tools a {
    padding-right: 12px;
}

.article-tools a.tweet {
    padding: 2px 0;
    padding-right: 55px;
}

/* -------- Articles -------- */

.main-content .article {
    margin-bottom: 50px;
    padding-top: 20px;
    background: url('../images/dashed-line.png') repeat-x left top;
}

.main-content .article-summary {
    margin-bottom: 30px;
    padding-bottom: 30px;
    background: url('../images/dashed-line.png') repeat-x left bottom;
}

.main-content .article.first {
    padding-top: 0px;
    background: none;
}

.article img {
    float: right;
    margin: 0 0 16px 30px;
}

.article img {
    border: 1px solid #BFBFBF;
}

.article h3, 
.article-summary h3 {
    margin-top: 25px;
    padding: 0;
    font-size: 138.5%;
    border-bottom: 0;
}

.article h3 .pub-date {
    font-size: 69%;
}
 
 /* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Secondary Content
 */
 
.secondary-content h3, 
.secondary-content h4 {
    margin-top: 0;
    padding-bottom: 2px;
    border-bottom: 1px solid #DBDBDB;
}

.secondary-content h4 {
    padding-top: 5px;
    border-bottom: 0;
}

.secondary-content ul li {
    margin-bottom: 12px;
    font-size: 93%;
}

.secondary-content a:link,
.secondary-content a:active,
.secondary-content a:visited {
	color: #303030;
	text-decoration: none;
}

.secondary-content a:hover, 
.secondary-content a:visited:hover {
	color: #303030;
	text-decoration: underline;
}

.secondary-content .resources {
    display: block;
    margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #DBDBDB;
}

/* -------- Site Search Form -------- */

form#site_search {
	position: relative;
	margin-bottom: 5px;
}

form#site_search label {
    font-size: 85%;
    color: #787878;
}

.overlabel-container {
	position:relative;
	float:left;
}

label.overlabel-apply {
	position: absolute;
	top: 4px;
	*top: 5px;
	left: 5px;
	z-index: 1;
}

input.search-input {
	height: 15px;
	width: 131px;
	margin-right: 4px;
	padding: 4px 2px;
	background: url('../images/bg-input-search.gif') no-repeat right bottom;
	border: 0;
	font-size: 85%;
}

input.search-input:focus {
	outline: none;
}

button.search-button {
	height: 23px;
	width: 43px;
	*margin-top: 1px;
	background: url('../images/button-find.gif') no-repeat;
	border: 0;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Footer
 */

#ft p {
    font-size: 85%;
}

#ft div.about a:link,
#ft div.about a:active,
#ft div.about a:visited {
	color: #303030;
	text-decoration: none;
}

#ft div.about a:hover, 
#ft div.about a:visited:hover {
	color: #303030;
	text-decoration: underline;
}

#ft div.company {
    float: right;
    min-height: 85px;
    _height: 85px;
    width: 280px;
    padding-bottom: 10px;
    padding-left: 22px;
    border-left: 1px solid #EBEBEB;
}

#ft div.company.first {
    float: left;
    width: 420px;
}

#ft div.about {
    margin-top: 20px;
}

#ft .copyright {
    padding-top: 15px;
    color: #989898;
}

#ft .social-logo {
    display: block;
    _display: inline;
    float: left;
    height: 24px;
    width: 88px;
    margin: 10px 0;
    margin-right: 8px;
    text-indent: -5000px;
    background-repeat: no-repeat;
    background-position: 50% top;
}

#ft .social-logo.last {
    margin-right: 0px;
}

#ft .social-logo.facebook {
    background: url('../images/logo-facebook.png');
}

#ft .social-logo.twitter {
    background: url('../images/logo-twitter.png');
}

#ft .social-logo.linkedin {
    background: url('../images/logo-linkedin.png');
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: Section Pages
 */

h2.perspectives {
    width: 650px;
	height: 50px;
	padding-bottom: 2px;
	text-indent: -5000px;
    background: url('../images/hd-perspectives.png') no-repeat left top;
}

h2.event-tech {
    width: 650px;
	height: 50px;
	padding-bottom: 2px;
	text-indent: -5000px;
    background: url('../images/hd-tech.png') no-repeat left top;
}

h2.exhibitor-corner {
    width: 650px;
	height: 50px;
	padding-bottom: 2px;
	text-indent: -5000px;
    background: url('../images/hd-exhibitor.png') no-repeat left top;
}

h2.event-art {
    width: 650px;
	height: 50px;
	padding-bottom: 2px;
	text-indent: -5000px;
    background: url('../images/hd-art.png') no-repeat left top;
}

h2.champion-uncovered {
    width: 650px;
	height: 50px;
	padding-bottom: 2px;
	text-indent: -5000px;
    background: url('../images/hd-champion.png') no-repeat left top;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: General Form
 */
 
form.general-form legend {
    display: none;
}

form.general-form label, 
form.general-form input {
    font-size: 93%;
}

form.general-form label.text {
	display: block;
	float: left;
	width: 8.3077em;
	*width: 8.1075em;
	min-width: 108px;
	padding-top: 2px;
	clear: left;
}

form.general-form fieldset.wide label.text {
    width: 13.4615em;
    *width: 13.1371em;
	min-width: 175px;
	/*background: url('../images/dots.gif') no-repeat left bottom;*/
}

form.general-form fieldset.wide label.text span {
	/*background-color: #FFF;*/
}

form.general-form label.textarea {
	display: block;
	width: 23.8462em;
	*width: 23.2715em;
	min-width: 310px;
	margin-bottom: 6px;
}

form.general-form input.text {
	float: left;
	width: 16.7692em;
	*width: 16.3651em;
	min-width: 218px;
	margin-bottom: 6px;
	padding: 1px 2px;
	border: 1px solid #9B9B9B;
	color: #000;
}

form.general-form input.sm {
	width: 7.5385em;
	*width: 7.3568em;
	min-width: 98px;
}

form.general-form input.cal {
    width: 6.1538em;
	*width: 6.0055em;
	min-width: 80px;
    padding-left: 16px;
    background: url('../images/icon-calendar.png') no-repeat left 50%;
}

form.general-form input.disabled {
    background-color: #EEE;
    font-size: 85%;
    font-style: italic;
    color: #EEE;
}

form.general-form div.input-combo {
    float: left;
    width: 17.0000em;
	*width: 16.5903em;
	min-width: 221px;
}

form.general-form div.input-combo.cal {
    background: url('../images/cal-sep.png') no-repeat 50% 40%;
}

form.general-form div.input-combo input.last {
    float: right;
}

form.general-form textarea.text {
    height: 150px;
	width: 450px;
	margin-bottom: 6px;
	padding: 1px 2px;
	color: #000;
}

form.general-form span.error {
    display: block;
    float: left;
    margin-left: 2px;
    padding: 3px 0 3px 18px;
    background: url('../images/icon-error.png') no-repeat left 50%;
    font-size: 85%;
    color: #FF0000;
}

form button.submit-button {
	height: 23px;
	width: 63px;
	background: url('../images/button-submit.gif') no-repeat;
	border: 0;
}

/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/**
 * Section: MT Specific Styles
 */
 
.zemanta-pixie {
    display: none;
}

.comment-content {
    clear:left;
    margin-top:5px;
}

.comment {
    margin-bottom: 3px;
    padding: 3px;
    padding-bottom: 0;
}

.comments-content .even {
    background-color: #F2F2F2;
}

.comments img {
    border: 0;
    margin: 0;
    margin-right: 5px;
}