/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* =============================================================================
   HTML5 element display
   ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Force vertical scrollbar in non-IE
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
	font-size: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-size: 12px;
  line-height: 1.231;
}
body,
button,
input,
select,
textarea {
  font-family: sans-serif;
  color: #222;
}
/* 
 * These selection declarations have to be separate
 * No text-shadow: twitter.com/miketaylr/status/12228805301
 * Also: hot pink!
 */
::-moz-selection {
  background: #a11b1e;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #a11b1e;
  color: #fff;
  text-shadow: none;
}
/* =============================================================================
   Links
   ========================================================================== */
a {
  /*color: #00e;*/
  color: #747474;
}
a:visited {
  color: #747474;
}
a:focus {
  outline: thin dotted;
}
/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
  outline: 0;
}
/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}
small {
  font-size: 85%;
}
/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -1em;
  font-size: 45%;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
   Lists
   ========================================================================== */
ul, ol {
  margin: 1em 0;
  padding: 0 0 0 0;
}
dd {
  margin: 0 0 0 40px;
}
nav ul, nav ol {
  list-style: circle;
  margin: 0;
  padding: 0;
}
/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
/*
 * Correct overflow displayed oddly in IE9 
 */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}
/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
}
/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}
/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */
button, input {
  line-height: normal;
  *overflow: visible;
}
/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
}
input[type="search"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
/* 
 * Remove inner padding and border in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ 
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* Remove default vertical scrollbar in IE6/7/8/9 */
textarea {
  overflow: auto;
  vertical-align: top;
}

/* Colors for form validity */
input:invalid, textarea:invalid {
  background-color: #f0dddd;
}
.disclaimer {
font-style: italic;
font-size: 95%;
margin-left: 10px;
}
/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
tr.even {
	background-color: #bebebe;
}
	
/* =============================================================================
   Primary styles
   Author: 
   ========================================================================== */
/*
*
* SITE VARS
*
*
*/
/*
*
* SITE FUNCTIONS
*
*/
/*
*
* SITE GRADIENTS
* CSS GRADIENT GENERATER
* http://www.colorzilla.com/gradient-editor/
*
*/
#site-wrapper {
  margin-bottom: 50px;
  background: #000000;
  background: -moz-radial-gradient(35% -20%, ellipse cover, #4a4a4a 0, #000000 100%);
  background: -webkit-gradient(radial, 35% -20%, 0, center center, 100%, color-stop(0, #4a4a4a), color-stop(100%, #000000));
  background: -webkit-radial-gradient(35% -20%, ellipse cover, #4a4a4a 0, #000000 100%);
  background: -o-radial-gradient(35% -20%, ellipse cover, #4a4a4a 0, #000000 100%);
  background: -ms-radial-gradient(35% -20%, ellipse cover, #4a4a4a 0, #000000 100%);
  background: radial-gradient(35% -20%, ellipse cover, #4a4a4a 0, #000000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a4a4a', endColorstr='#000000',GradientType=0 );
}
.product-selector ul li,
#clubs-navigation ul ul a,
#thumbnail-navigation ul ul a {
  background: #313131;
  background: -moz-linear-gradient(top, #313131 0, #4b4b4b 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #313131), color-stop(100%, #4b4b4b));
  background: -webkit-linear-gradient(top, #313131 0, #4b4b4b 100%);
  background: -o-linear-gradient(top, #313131 0, #4b4b4b 100%);
  background: -ms-linear-gradient(top, #313131 0, #4b4b4b 100%);
  background: linear-gradient(top, #313131 0, #4b4b4b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#313131', endColorstr='#4b4b4b',GradientType=0 );
}
#thumbnail-navigation ul ul a:hover,
#clubs-navigation ul ul a:hover,
.product-selector ul li:hover {
  background: #545454;
  background: -moz-linear-gradient(top, #545454 0, #363636 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #545454), color-stop(100%, #363636));
  background: -webkit-linear-gradient(top, #545454 0, #363636 100%);
  background: -o-linear-gradient(top, #545454 0, #363636 100%);
  background: -ms-linear-gradient(top, #545454 0, #363636 100%);
  background: linear-gradient(top, #545454 0, #363636 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#545454', endColorstr='#363636',GradientType=0 );
}
.product-selector .product-selector-title,
#clubs-navigation .title,
#thumbnail-navigation .title {
  background: #363636;
  background: -moz-linear-gradient(left, #363636 0, #5e5e5e 50%, #363636 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #363636), color-stop(50%, #5e5e5e), color-stop(100%, #363636));
  background: -webkit-linear-gradient(left, #363636 0, #5e5e5e 50%, #363636 100%);
  background: -o-linear-gradient(left, #363636 0, #5e5e5e 50%, #363636 100%);
  background: -ms-linear-gradient(left, #363636 0, #5e5e5e 50%, #363636 100%);
  background: linear-gradient(left, #363636 0, #5e5e5e 50%, #363636 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#363636', endColorstr='#363636',GradientType=1 );
}
/*
*
* HELPER STYLES
*
*/
.centered {
    display: table;
    margin: 0 auto;
}
.upper {
    text-transform: uppercase;
}
.headline {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #929292;
}
.divider {
  border-bottom: 1px solid #747474;
}
.site-content-secondary .divider {
  border-bottom: 1px solid #ababab;
  padding-bottom: 5px;
}
.cta-small span.arrow {
  display: inline-block;
  content: "";
  width: 5px;
  height: 12px;
  margin-left: 5px;
  background-image: url('../images/cta-small.png');
  background-repeat: no-repeat;
  /*background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAASCAYAAACXScT7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEQ0N0NGOUIxMzA5MTFFMUE2MDJFREY4MEI0QTlDOUMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEQ0N0NGOUMxMzA5MTFFMUE2MDJFREY4MEI0QTlDOUMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0RDQ3Q0Y5OTEzMDkxMUUxQTYwMkVERjgwQjRBOUM5QyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0RDQ3Q0Y5QTEzMDkxMUUxQTYwMkVERjgwQjRBOUM5QyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsJozegAAADDSURBVHjaXFHbDcIwDHQjBugIsAFIDBA2SBZgBUaoOgFiAh4TdAPyD1LZgI7QDcI5mMg40uksXc5nJ0TXRwZ8zpksHBEl4Nzcni2Zw2IPLPmCFRu2wzWiXgMx77eDdvI5Cf+1LyJuX0AT0Or2TkX0wgHuUDNL8W33FvcMrKoTrWeVXdo7M/2g6mDFg55BZ/KeowgJMTvtPApzdqyrwOVBXsQow9U9u18OhFTflr8LfAdeEDb2Vzqdo89CsjhnsuJHgAEA7rtQDlgJMiYAAAAASUVORK5CYII=);*/
  vertical-align: middle;
}
.cta-small-left span.arrow {
  display: inline-block;
  content: "";
  width: 5px;
  height: 12px;
  margin-right: 5px;
  background: url('../images/cta-small-left.png') no-repeat;
  vertical-align: middle;
}
.cta-small-white a {
  margin-right: 5px;
}
.cta-small-white span.arrow {
  display: inline-block;
  content: "";
  width: 5px;
  height: 12px;
  background: url('../images/cta-small-white.png') no-repeat;
  vertical-align: middle;
}
.cta-small-dropdown span.arrow {
  display: inline-block;
  content: "";
  width: 5px;
  height: 12px;
  margin-left: 5px;
  background: url('../images/cta-small-white.png') no-repeat;
  vertical-align: middle;
}
.cta-large span.arrow {
  display: inline-block;
  content: "";
  width: 7px;
  height: 18px;
  margin-left: 5px;
  background: url('../images/cta-large.png') no-repeat;
  vertical-align: middle;
}
.cta-large-left span.arrow {
  display: inline-block;
  content: "";
  width: 7px;
  height: 18px;
  margin-right: 5px;
  background: url('../images/cta-large-left.png') no-repeat;
  vertical-align: middle;
}
.cta-alt span.arrow {
  display: inline-block;
  content: "";
  width: 8px;
  height: 18px;
  margin-left: 5px;
  background: url('../images/compare-black-arrow.png') no-repeat;
  vertical-align: middle;
}
.magnifier span.arrow {
  display: inline-block;
  content: "";
  width: 20px;
  height: 18px;
  margin-left: 5px;
  background: url('../images/ladies-magnifier.png') no-repeat;
  vertical-align: middle;
}
.cta-down span.arrow {
  display: inline-block;
  content: "";
  width: 15px;
  height: 8px;
  margin-left: 5px;
  background-position: -10px 0;
  background: url('../images/club-detail-arrow-down.png') no-repeat;
  vertical-align: middle;
}
.classics .cta-down span.arrow {
  background: url('../images/classics-club-detail-arrow-down.png') no-repeat;
}
.juniors .cta-down span.arrow {
  background: url('../images/juniors-club-detail-arrow-down.png') no-repeat;
}
.ladies .cta-down span.arrow {
  background: url('../images/ladies-club-detail-arrow-down.png') no-repeat;
}
.cta-spacer {
	height: 10px;
}
.error p {
	margin-top: 10px;
}
/*
    KendoUI - used for showing magnified view of shafts and grips.
    also used for displaying EU Cookie information
*/
a.magnify {
    cursor: pointer;
}
.magnified.k-window-content {
    padding: 0;
}
.magnified.k-content {
    background-color: #343434;
    cursor: pointer;
    overflow: hidden;
}
.magnified.k-window-content.k-content::after {
    content: "";
    cursor: pointer;
    position: absolute;
    top: -3px;
    right: -7px;
    background-image: url('/images/options-collapse-icons.png');
    background-repeat: no-repeat;
    background-position: 0 -18px;
    width: 25px;
    height: 20px;
}
.k-window-title {
    font-family: 'Droid Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #c8c8c8;
}
.video-js.k-window-content {
    overflow: hidden;
}
.k-window {
    background-color: #868686;
}
.k-notification.k-notification-info {
    background: none;
    border: none;
    border-radius: 0;
}
.product-slider-notification,
.putter-comparison-notification {
    width: 200px;
    color: #000;
    padding: 10px;
    background: rgb(0, 161, 203);
    background: rgba(0, 161, 203, 0.95);
}
.eu-cookie-error-notification {
    color: #000;
    padding: 10px;
}
.k-notification .k-icon.k-i-note {
    display: none;
}
.k-notification-wrap {
    font-size: 13px;
    padding: 10px;
}
/*
*
* THIS TOOLTIP IS FOR THE GRIP COLOR CODE
*
*/
#tooltip {
  border: 1px solid #868686;
  color: #868686;
  float: left;
  font-size: 11px;
  max-width: 160px;
  padding: 2px 10px 2px 10px;
  position: absolute;
  background-color: #e2e2e2;
}
.navigation-divider {
  color: #747474;
  margin: 0 5px;
}
/*
*
* THIS CLASS IS USED ON MANY GENERAL NAV ITEMS
*
*/
/* This class is used on many general nav items
--------------------------------------------------*/
.secondaryNav {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
}
.secondaryNav a:link, .secondaryNav a:visited, .secondaryNav a:active {
  color: #747474;
}
.secondaryNav a:hover {
  color: #00a1cb;
}
html {
  min-height: 100%;
}
body {
  font: 12px/18px Arial, Tahoma, Verdana, sans-serif;
  width: 100%;
  height: 100%;
  min-width: 940px;
  background: #272727;
}
a {
  text-decoration: none;
}
div,
img,
ol,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
#site-wrapper {
  min-width: 940px;
  margin: 0 auto;
  z-index: 1000;
}
/*
    ANALYTICS
*/
#mediaplex-tracking {
	visibility: hidden;
	display: none;
}
#bursting-pipe {
    height: 0;
    position: fixed;
    margin-top: -1000px;
}

/*
*
* HEADER AREA OF THE SITE
*
*
*/
header {
  width: 940px;
  height: 75px;
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid #747474;
  z-index: 1000;
}
#logo {
  width: 116px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 37px;
}
/* THE STYLES FOR THE PRIMARY NAVIGATION BAR
---------------------------------------------*/
#primary-navigation {
  position: absolute;
  left: 135px;
  top: 46px;
  z-index: 50;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}
#primary-navigation a:link, #primary-navigation a:visited, #primary-navigation a:active {
  color: #ffffff;
}
#nav {
  line-height: 29px;
  cursor: pointer;
}
#nav li {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
}
#nav ul {
  position: absolute;
  top: 29px;
  display: none;
}
#nav a:link, #nav a:active, #nav a:visited {
  display: block;
}
/* Added for product detail nav fix 1/10
----------------------------------------*/
#nav .toplevel-navigation {
  float: left;
}
/* adds padding to top level nav items
----------------------------------------*/
#nav li a {
  display: block;
  color: #fff;
  padding-right: 18px;
}
#nav li a span.toplevel {
  display: block;
  padding-left: 18px;
}
#nav .toplevel-navigation ul li:first-child > a {
  padding-top: 7px;
}
#nav .toplevel-navigation:hover {
  background: url("../images/main-nav-ends.png") no-repeat transparent;
  background-position: right top;
}
#nav .toplevel-navigation:hover span.toplevel {
  background: url("../images/main-nav-hovers.png") no-repeat transparent;
  background-position: left top;
}
#nav .toplevel-navigation.active {
  background: url("../images/main-nav-ends.png") no-repeat transparent;
  background-position: right bottom;
}
#nav .toplevel-navigation.active span.toplevel {
  background: url("../images/main-nav-hovers.png") no-repeat transparent;
  background-position: left bottom;
}
/* all secondary level ul element
----------------------------------------*/
#nav li ul {
  width: 220px;
  padding-bottom: 20px;
  background: #e4e4e4 url(../images/nav-background-1.jpg) no-repeat 0 bottom;
}
/* all li items in secondary ul element
----------------------------------------*/
#nav li ul li a,
#nav li ul li a:link, 
#nav li ul li a:visited {
  padding: 0 0 0 20px;
  width: 200px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #545454;
}
#nav li ul li > a:hover {
  color: #00a1cb;
  background-color: #e8e8e8;
}
#nav #clubs-toplevel li .activeDropdownItem {
  background-color: #e8e8e8;
  color: #00a1cb;
}
#nav #clubs-toplevel li.ladies .activeDropdownItem {
  background-color: #e8e8e8;
  color: #009B99;
}
#nav #clubs-toplevel li.juniors .activeDropdownItem {
  background-color: #e8e8e8;
  color: #ABB715;
}
/* link header */
#nav li ul li div.link-header {
  background-color: #00a1bc;
  padding: 0 0 0 20px;
  cursor: default;
}
/* styles for European apparel dropdown
----------------------------------------*/
ul#nav ul#external-apparel li.intro {
  width: 220px;
  margin-bottom: 10px;
}
ul#nav ul#external-apparel li.intro p {
  line-height: 17px;
  width: 190px;
  padding: 15px 0 7px 20px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #545454;
}
ul#nav ul#external-apparel li.intro.activeDropdownItem {
  background-color: transparent;
  color: #00a1cb;
}
ul#nav ul#external-apparel li.cta-container.activeDropdownItem {
  background-color: transparent;
  color: #00a1cb;
}
ul#nav ul#external-apparel li.cta-container a {
  background-color: #00a1cb;
  width: 150px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  color: #ffffff;
  height: 22px;
  line-height: 20px;
}
ul#nav ul#external-apparel .cta-small-white span.arrow {
    margin-left: 5px;
}
/* styles for clubs dropdown
----------------------------------------*/
#nav #clubs-toplevel {
  left: -135px;
  height: 357px;
  padding-bottom: 0;
}
#nav #clubs-toplevel li {
  margin-right: 1px;
  margin-left: 1px;
}
#nav #clubs-toplevel li a {
  padding-left: 10px;
  width: 210px;
}
#nav #clubs-toplevel ul {
  top: 0;
  width: 182px;
  height: 357px;
  padding-bottom: 0;
  left: 220px;
  background: #e4e4e4 url(../images/nav-background-2.jpg) no-repeat;
}
#nav #clubs-toplevel ol {
  width: 110px;
  height: 210px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  padding-left: 60px;
  color: #868686;
}
#nav #clubs-toplevel ol li {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #868686;
  padding: 0;
  list-style-type: decimal;
  margin-bottom: 10px;
  line-height: 15px;
}
#nav #clubs-toplevel ol li p {
  display: block;
  padding: 0;
  margin: 0;
  font: 12px Arial, Tahoma, Verdana, sans-serif;
}
#nav #clubs-toplevel ul li a {
  width: 170px;
}
#nav #clubs-toplevel ul .nav-product-detail {
  width: 539px;
  height: 357px;
  position: absolute;
  top: 0;
  left: 182px;
  background: #e4e4e4 url(../images/nav-background-3.jpg) no-repeat;
  display: none;
}
#nav #clubs-toplevel ul .nav-product-image {
  width: 338px;
  height: 357px;
  position: absolute;
  left: 199px;
  top: 0;
}
#nav #clubs-toplevel ul .nav-product-name {
  width: 160px;
  margin-top: 55px;
  margin-bottom: 10px;
}
#nav #clubs-toplevel ul .nav-product-name a {
  padding: 0;
  padding-left: 15px;
  width: auto;
  font-family: 'Droid Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #545454;
  text-align: right;
}
#nav #clubs-toplevel ul .nav-product-cta {
  padding: 0;
  margin: 0;
  padding-right: 15px;
  width: 147px;
}
#nav #clubs-toplevel ul .nav-product-cta a {
  line-height: 20px;
  padding: 0;
  text-align: right;
  width: 147px;
  color: #ffffff;
}
#nav #clubs-toplevel ul .nav-product-cta .arrow {
  margin-left: 5px;
}
#nav .nav-product-cta {
  background: #00a1cb;
}
#nav .juniors .nav-product-cta {
  background: #ABB715;
}
#nav .ladies .nav-product-cta {
  background: #009B99;
}
#nav .classics .nav-product-cta {
  background: #dd4400;
}
#nav #clubs-toplevel .navIcon {
  margin-top: 2px;
  float: left;
  width: 29px;
  height: 24px;
  background: url(../images/nav-icons.png) no-repeat;
  margin-right: 10px;
}
#nav #clubs-toplevel .noIcon {
  margin-top: 4px;
  float: left;
  width: 29px;
  height: 24px;
  margin-right: 10px;
}
#nav #clubs-toplevel li a #driversIcon {
  background-position: -2px -2px;
}
#nav #clubs-toplevel li a #fairwaysIcon {
  background-position: -2px -33px;
}
#nav #clubs-toplevel li a #hybridsIcon {
  background-position: -2px -61px;
}
#nav #clubs-toplevel li a #crossoversIcon {
  background-position: -2px -232px;
}
#nav #clubs-toplevel li a #ironsIcon {
  background-position: -2px -90px;
}
#nav #clubs-toplevel li a #wedgesIcon {
  background-position: -2px -119px;
}
#nav #clubs-toplevel li a #puttersIcon {
  background-position: -2px -147px;
}
#nav #clubs-toplevel li a #womensIcon {
  background-position: -2px -175px;
}
#nav #clubs-toplevel li a #juniorsIcon {
  background-position: -2px -204px;
}
#nav #clubs-toplevel li a:hover #driversIcon {
  background-position: -32px -2px;
}
#nav #clubs-toplevel li a:hover #fairwaysIcon {
  background-position: -32px -33px;
}
#nav #clubs-toplevel li a:hover #hybridsIcon {
  background-position: -32px -61px;
}
#nav #clubs-toplevel li a:hover #crossoversIcon {
  background-position: -32px -232px;
}
#nav #clubs-toplevel li a:hover #ironsIcon {
  background-position: -32px -90px;
}
#nav #clubs-toplevel li a:hover #wedgesIcon {
  background-position: -32px -119px;
}
#nav #clubs-toplevel li a:hover #puttersIcon {
  background-position: -32px -147px;
}
#nav #clubs-toplevel li a:hover #womensIcon {
  background-position: -32px -175px;
}
#nav #clubs-toplevel li a:hover #juniorsIcon {
  background-position: -32px -204px;
}
#nav #clubs-toplevel li.activeDropdownItem #driversIcon {
  background-position: -32px -2px;
}
#nav #clubs-toplevel li.activeDropdownItem #fairwaysIcon {
  background-position: -32px -33px;
}
#nav #clubs-toplevel li.activeDropdownItem #hybridsIcon {
  background-position: -32px -61px;
}
#nav #clubs-toplevel li.activeDropdownItem a #crossoversIcon {
  background-position: -32px -232px;
}
#nav #clubs-toplevel li.activeDropdownItem #ironsIcon {
  background-position: -32px -90px;
}
#nav #clubs-toplevel li.activeDropdownItem #wedgesIcon {
  background-position: -32px -119px;
}
#nav #clubs-toplevel li.activeDropdownItem #puttersIcon {
  background-position: -32px -147px;
}
#nav #clubs-toplevel li.activeDropdownItem #womensIcon {
  background-position: -32px -175px;
}
#nav #clubs-toplevel li.activeDropdownItem #juniorsIcon {
  background-position: -32px -204px;
}
#nav li:hover ul ul,
#nav li:hover ul ul ul,
#nav li:hover ul ul ul ul,
#nav li:hover .nav-product-detail {
  display: none;
}
#nav li:hover ul,
#nav li li:hover ul,
#nav li li li:hover ul,
#nav li li li li:hover ul,
#nav ul ul li:hover .nav-product-detail {
  display: block;
}
/* The Sites  header utility navigation
--------------------------------------------*/
#header-utility-nav {
  position: absolute;
  top: 10px;
  right: 0;
  color:#969696;
}
#header-utility-nav ul {
  float: left;
  margin-right: 15px;
}
#header-utility-nav li {
  float: left;
  font-size: 12.3px;
}
#header-utility-nav li:after {
  content: "|";
  color: #747474;
  margin: 0 5px;
}
#header-utility-nav li:last-child:after {
  content: "";
}
#header-utility-nav li .highlight {
    color:#A6A271;
}
/* STYLES FOR SITES SEARCH
----------------------------------------*/
#header-primary-search {
  float: left;
}
#header-primary-search input[type="text"] {
  background: transparent url(../images/input-field.png) no-repeat;
  width: 103px;
  border: none;
  margin-right: 15px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #747474;
  padding-left: 10px;
  height: 23px;
}
#header-primary-search .searchArrow {
  background: transparent url(../images/searchArrow.png) no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
.locaterArrow {
  padding-top: 2px;
}
/*
*
* SUB HEADER STYLES
*
*
*/
/* SECONDARY NAVIGATION
----------------------------------------*/
#measure-secondary-nav 
{
  /* container that is dynamically added and used to measure the secondary navigation so that each button has
	 the same amount of padding. !important: make sure that font-family|size|weight matches the secondary nav!
  */
  position: absolute;
  visibility: hidden;
  height: auto;
  width: auto;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
}
#sub-header {
  width: 940px;
  margin: 0 auto;
  position: relative;
  height: 60px;
  z-index: 700;
}
#site-wrapper.googlemap #sub-header {
  height: 30px;
}
#sub-header-secondary {
  width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 700;
}
#breadcrumbs {
  margin: 10px 0;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #878787;
}
#breadcrumbs a {
  color: #878787;
}
#breadcrumbs .activeBreadcrumb {
  color: #00a1cb;
}
.ladies #breadcrumbs .activeBreadcrumb {
  color: #00B9B5;
}
.juniors #breadcrumbs .activeBreadcrumb {
  color: #ABB715;
}
/* STYLES FOR THE CLUB NAV
----------------------------------------*/
#sub-header #clubs-navigation {
  position: absolute;
  left: 0;
  top: 28px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #898888;
  z-index: 40;
  width: 940px;
}
#sub-header #clubs-navigation ul li {
  display: block;
  float: left;
  width: 117.3px;
  line-height: 25px;
}
#sub-header #clubs-navigation ul li .sub-navigation {
  display: block;
  text-align: center;
  border: 1px solid #d7d6d6;
  width: 100%;
  height: 25px;
  color: #898888;
}
#sub-header #clubs-navigation ul ul {
  position: absolute;
  top: 27px;
  left: 0;
  display: none;
  width: 940px;
  background-color: #333333;
}
#sub-header #clubs-navigation ul ul li {
  height: 157px;
  width: 154.6px;
  border: 1px solid #414141;
  overflow: hidden;
  cursor: pointer;
}
#sub-header #clubs-navigation ul ul li a {
  display: block;
}
#sub-header #clubs-navigation ul ul li .title {
  width: 140px;
  height: 25px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #929292;
  padding-left: 15px;
}
#sub-header #clubs-navigation .sub-navigation:hover {
  color: #00a1cb;
}
#sub-header #clubs-navigation .ladies .sub-navigation:hover {
  color: #00B9B5;
}
#sub-header #clubs-navigation .classics .sub-navigation:hover {
  color: #dd4400;
}
#sub-header #clubs-navigation .juniors .sub-navigation:hover {
  color: #ABB715;
}
#sub-header #clubs-navigation ul ul li:hover .title {
  color: #00a1cb;
}
#sub-header #clubs-navigation ul .ladies ul li:hover .title {
  color: #00B9B5;
}
#sub-header #clubs-navigation ul .classics ul li:hover .title {
  color: #dd4400;
}
#sub-header #clubs-navigation ul .juniors ul li:hover .title {
  color: #ABB715;
}
#sub-header li:hover ul ul, 
#sub-header li:hover ul ul ul {
  display: none;
}
#sub-header li:hover ul, 
#sub-header li li:hover ul, 
#sub-header li li li:hover ul {
  display: block;
}
/* STYLES FOR THE BAG NAV
----------------------------------------*/
#sub-header #bags-navigation {
  position: absolute;
  left: 0;
  top: 28px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #898888;
  z-index: 40;
  width: 940px;
}
#sub-header #bags-navigation ul li {
  display: block;
  float: left;
  width: 469px;
}
#sub-header #bags-navigation ul li a {
  display: block;
  text-align: center;
  border: 1px solid #d7d6d6;
  width: 100%;
  height: 25px;
  color: #898888;
  line-height: 25px;
}
#sub-header #bags-navigation .sub-navigation:hover, #sub-header #gear-navigation .sub-navigation:hover {
  color: #00a1cb;
}
/* STYLES FOR THE GEAR NAV
----------------------------------------*/
#sub-header #gear-navigation {
  position: absolute;
  left: 0;
  top: 28px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #898888;
  z-index: 40;
  width: 940px;
}
#sub-header #gear-navigation ul li {
  display: block;
  float: left;
  width: 156.4px;
}
#sub-header #gear-navigation ul li a {
  display: block;
  text-align: center;
  border: 1px solid #d7d6d6;
  width: 100%;
  height: 25px;
  color: #898888;
  line-height: 25px;
}
/* STYLES FOR THE LADIES NAV
----------------------------------------*/
#sub-header #ladies-navigation, 
#sub-header #about-navigation {
  position: absolute;
  left: 0;
  top: 28px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #898888;
  z-index: 40;
  width: 940px;
}
#sub-header #ladies-navigation ul li, 
#sub-header #about-navigation ul li {
  display: block;
  float: left;
  width: 188px;
}
#sub-header #ladies-navigation ul li a, 
#sub-header #about-navigation ul li a {
  display: block;
  text-align: center;
  outline: 1px solid #d7d6d6;
  width: 100%;
  height: 25px;
  color: #898888;
  line-height: 25px;
}
#sub-header #ladies-navigation .sub-navigation:hover {
  color: #00B9B5;
}
#sub-header #about-navigation .sub-navigation:hover {
  color: #00a1cb;
}
/* STYLES FOR THE CUSTOM FITTING HOME NAV
----------------------------------------*/
#sub-header #custom-fitting-navigation {
  position: absolute;
  left: 0;
  top: 28px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #898888;
  z-index: 40;
  width: 940px;
}
#sub-header #custom-fitting-navigation ul li {
  display: block;
  float: left;
  width: 134px;
  line-height: 25px;
}
#sub-header #custom-fitting-navigation ul li .sub-navigation {
  display: block;
  text-align: center;
  border: 1px solid #d7d6d6;
  width: 100%;
  height: 25px;
  color: #898888;
}
#sub-header #custom-fitting-navigation .sub-navigation:hover {
  color: #00a1cb;
}
/* STYLES FOR THE TOUR PROS HOME NAV 
----------------------------------------*/
#sub-header #tour-pros-navigation {
  position: absolute;
  left: 0;
  top: 28px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #898888;
  z-index: 40;
  width: 940px;
}
#sub-header #tour-pros-navigation ul li {
  display: block;
  float: left;
  width: 235px;
  line-height: 25px;
}
#sub-header #tour-pros-navigation ul li .sub-navigation {
  display: block;
  text-align: center;
  border: 1px solid #d7d6d6;
  width: 100%;
  height: 25px;
  color: #898888;
}
#sub-header #tour-pros-navigation .sub-navigation:hover {
  color: #00a1cb;
}




/* BUTTON navigation */
#sub-header #button-navigation {
  position: absolute;
  left: 0;
  top: 28px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #898888;
  z-index: 40;
  width: 940px;
}
#sub-header #button-navigation ul li {
  display: block;
  float: left;
  width: 469px;
}
#sub-header #button-navigation ul li a {
  display: block;
  text-align: center;
  border: 1px solid #d7d6d6;
  width: 100%;
  height: 25px;
  color: #898888;
  line-height: 25px;
}
#sub-header #button-navigation .sub-navigation:hover {
  color: #00a1cb;
}

/* THUMBNAIL navigation */
#sub-header #thumbnail-navigation {
  position: absolute;
  left: 0;
  top: 28px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #898888;
  z-index: 40;
  width: 940px;
}
#sub-header #thumbnail-navigation ul li {
  display: block;
  float: left;
  width: 117.3px;
  line-height: 25px;
}
#sub-header #thumbnail-navigation ul li .sub-navigation {
  display: block;
  text-align: center;
  border: 1px solid #d7d6d6;
  width: 100%;
  height: 25px;
  color: #898888;
}
#sub-header #thumbnail-navigation ul ul {
  position: absolute;
  top: 27px;
  left: 0;
  display: none;
  width: 940px;
  background-color: #333333;
}
#sub-header #thumbnail-navigation ul ul li {
  height: 157px;
  width: 154.6px;
  border: 1px solid #414141;
  overflow: hidden;
  cursor: pointer;
}
#sub-header #thumbnail-navigation ul ul li a {
  display: block;
}
#sub-header #thumbnail-navigation ul ul li .title {
  width: 140px;
  height: 25px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #929292;
  padding-left: 15px;
}
#sub-header #thumbnail-navigation .sub-navigation:hover,
#sub-header #thumbnail-navigation ul ul li:hover .title {
  color: #00a1cb;
}
#sub-header #thumbnail-navigation .ladies .sub-navigation:hover,
#sub-header #thumbnail-navigation ul .ladies ul li:hover .title {
  color: #00B9B5;
}
#sub-header #thumbnail-navigation .classics .sub-navigation:hover,
#sub-header #thumbnail-navigation ul .classics ul li:hover .title {
  color: #dd4400;
}
#sub-header #thumbnail-navigation .juniors .sub-navigation:hover,
#sub-header #thumbnail-navigation ul .juniors ul li:hover .title {
  color: #ABB715;
}

/* The sub nav gradient
----------------------------------------*/
.sub-navigation {
  background: #f8f7f7;
  background: -moz-linear-gradient(top, #f8f7f7 0, #c6c6c6 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f8f7f7), color-stop(100%, #c6c6c6));
  background: -webkit-linear-gradient(top, #f8f7f7 0, #c6c6c6 100%);
  background: -o-linear-gradient(top, #f8f7f7 0, #c6c6c6 100%);
  background: -ms-linear-gradient(top, #f8f7f7 0, #c6c6c6 100%);
  background: linear-gradient(top, #f8f7f7 0, #c6c6c6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f7f7', endColorstr='#c6c6c6',GradientType=0 );
}
.sub-navigation:hover {
  background: #d8d8d8;
  background: -moz-linear-gradient(top, #d8d8d8 0, #f6f5f5 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d8d8d8), color-stop(100%, #f6f5f5));
  background: -webkit-linear-gradient(top, #d8d8d8 0, #f6f5f5 100%);
  background: -o-linear-gradient(top, #d8d8d8 0, #f6f5f5 100%);
  background: -ms-linear-gradient(top, #d8d8d8 0, #f6f5f5 100%);
  background: linear-gradient(top, #d8d8d8 0, #f6f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8d8d8', endColorstr='#f6f5f5',GradientType=0 );
}
/*
*
*
*
* GLOBAL WIDGETS 
*
*
*
*
*/
/*
*
* GENERAL STYLES FOR THE PRODUCT SELECTOR
*
*/
.product-selector-content {
  float: left;
  padding-left: 7px;
  padding-right: 15px;
  width: 137px;
  height: 153px;
  border-right: 1px solid #414141;
  background-color: #333333;
  z-index: 50;
}
.product-selector-content h2 {
  margin-top: 21px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  color: #acacac;
  height: 100px;
  overflow: hidden;
}
.product-selector-content p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #acacac;
  height: 50px;
  overflow: hidden;
}
.product-selector-content .cta {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #acacac;
  text-align: right;
  cursor: pointer;
}
.product-selector-content-secondary {
  float: left;
  width: 144px;
  padding-right: 15px;
  height: 153px;
  display: table;
  border-right: 1px solid #414141;
}
.product-selector-content-secondary h2 {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding-left: 10px; /*edo*/
  font-family: 'Droid Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #acacac;
}
.product-selector ul li .product-selector-button {
  background: url('../images/club-selector-buttons.png') no-repeat;
}
.juniors .product-selector ul li .product-selector-button {
  background: url('../images/juniors-club-selector-buttons.png') no-repeat;
}
.ladies .product-selector ul li .product-selector-button {
  background: url('../images/ladies-club-selector-buttons.png') no-repeat;
}
.classics .product-selector ul li .product-selector-button {
  background: url('../images/classics-club-selector-buttons.png') no-repeat;
}
.product-selector a.product-selector-button:hover, .product-selector .active a.product-selector-button {
  background-position: 0 -40px;
}
.juniors .product-selector a.product-selector-button:hover, .juniors .product-selector .active a.product-selector-button {
  background-position: 0 -40px;
}
.ladies .product-selector a.product-selector-button:hover, .ladies .product-selector .active a.product-selector-button {
  background-position: 0 -40px;
}
.classics .product-selector a.product-selector-button:hover, .classics .product-selector .active a.product-selector-button {
  background-position: 0 -40px;
}
.product-selector-headline span {
  margin-left: 2px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #868686;
}
.product-selector ul li:hover div {
  color: #00a1cb;
}
.ladies .product-selector ul li:hover div {
  color: #00B9B5;
}
.juniors .product-selector ul li:hover div {
  color: #ABB715;
}
.classics .product-selector ul li:hover div {
  color: #dd4400;
}
.product-selector {
  z-index: 100;
}
.product-selector .product-selector-items {
  background-color: #333333;
  overflow: hidden;
}
.product-selector .product-selector-title {
  position: relative;
  height: 21px;
  padding: 2px 0 0 7px;
  font-size: 12px;
  line-height: 21px;
  font-family: 'Droid Sans', sans-serif;
  font-weight: 700;
  color: #929292;
  overflow: hidden;
}
.apparel.product-selector .product-selector-title,
.gear.product-selector .product-selector-title {
  position: relative;
  height: 27px; /* made taller to accomodate two lines of text in title */
  padding: 4px 7px;
  font-size: 12px;
  line-height: 14px;
  font-family: 'Droid Sans', sans-serif;
  font-weight: 700;
  color: #929292;
  overflow: hidden;
}
.tour-pros-detail-col1-row1.product-selector .product-selector-title {
  height: 21px;
  padding: 2px 0 0 7px;
  line-height: 21px;
}
.product-selector ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.product-selector li {
  display: block;
  float: left;
  width: 156px;
  height: 153px;
  border-right: 1px solid #414141;
  position: relative;
}
.apparel.product-selector li,
.gear.product-selector li {
  display: block;
  float: left;
  width: 156px;
  height: 164px; /* made taller to accomodate two lines of text in title */
  border-right: 1px solid #414141;
  position: relative;
}
.tour-pros-detail-col1-row1.product-selector  li {
  height: 153px;
}
.product-selector .product-selector-button {
  position: absolute;
  top: 115px;
  left: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: block;
}
.product-selector .product-selector-button.putter,
.product-selector .product-selector-button.bag {
  top: 25px;
}
#product-selector-primary .product-selector-items, 
#product-selector-primary.product-selector {
  width: 940px;
  overflow: hidden;
  margin-bottom: 10px;
}
#product-selector-primary #product-slider-container {
  background: url("../images/productScrollerBG-full.jpg") no-repeat scroll 0 0 transparent;
  width: 940px;
}
#product-selector-secondary .product-selector-items, 
#product-selector-secondary .product-selector {
  width: 780px;
  float: left;
  overflow: hidden;
}
#product-selector-secondary #product-slider-container {
  background: url("../images/productScrollerBG.jpg") no-repeat scroll 0 0 transparent;
  width: 780px;
}
#secondary-media .product-selector-items, 
#secondary-media .product-selector {
  width: 700px;
  overflow: hidden;
}
#secondary-media #product-slider-container {
  background: url("../images/productScrollerBG.jpg") no-repeat scroll 0 0 transparent;
  width: 700px;
}
#primary-media .product-selector-items, 
#primary-media.product-selector {
  width: 940px;
  overflow: hidden;
}
#primary-media #product-slider-container {
  background: url("../images/productScrollerBG-full.jpg") no-repeat scroll 0 0 transparent;
  width: 940px;
}
#product-slider-container {
  height: 10px;
}
#product-slider {
  height: 10px;
  margin-left: 100px;
  position: relative;
  width: 500px;
}
#product-slider .ui-slider-handle {
  display: block;
  float: left;
  height: 10px;
  position: absolute;
  width: 10px;
  text-decoration: none;
  outline: none;
}
#product-slider a.ui-slider-handle span {
  background: none repeat scroll 0 0 #FF0000;
  border-radius: 5px;
  display: block;
  height: 10px;
  margin-left: -100px;
  width: 200px;
}
.product-selector #product-slider a.ui-slider-handle span {
  background: none repeat scroll 0 0 #00a1cb;
}
.ladies .product-selector #product-slider a.ui-slider-handle span {
  background: none repeat scroll 0 0 #009B99;
}
.juniors .product-selector #product-slider a.ui-slider-handle span {
  background: none repeat scroll 0 0 #ABB715;
}
.classics .product-selector #product-slider a.ui-slider-handle span {
  background: none repeat scroll 0 0 #dd4400;
}
#media .product-selector #product-slider a.ui-slider-handle span,
.ladies #media .product-selector #product-slider a.ui-slider-handle span,
.juniors #media .product-selector #product-slider a.ui-slider-handle span,
.classics #media .product-selector #product-slider a.ui-slider-handle span {
  background: none repeat scroll 0 0 #00a1cb;
}
/*
*
* GERERAL STYLES FOR THE SLIDESHOWS
*
*/
.primary-slideshow .slide {
  position: relative;
  width: 940px;
  height: 356px;
}
.secondary-slideshow .slide {
  position: relative;
  width: 655px;
  height: 345px;
}
.tertiary-slideshow .slide {
  position: relative;
  width: 400px;
  height: 240px;
}
/*
*
* GENERAL STYLES FOR THE TERTIARY WIDGETS
*
*/
.tertiary-slideshow .controls_container {
  background: url("../images/secondary-slider-end.png") no-repeat right transparent;
  right: 5px;
  bottom: 50px;
}
.tertiary-slideshow .slider-control {
  background: url("../images/secondary-slider-bg.png") no-repeat transparent;
}
.tertiary-slideshow-content {
  height: 240px;
  overflow: hidden;
}
.tertiary-slideshow-footer {
  width: 100%;
  height: 50px;
}
.tertiary-slideshow-footer .cta {
  padding: 10px 20px 0 15px;
  height: 35px;
  overflow: hidden;
  line-height: 14px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
}
/*
*
* Styles for the secondary slideshow
*
*/
.secondary-slideshow .controls_container {
  background: url("../images/slider-end.png") no-repeat right transparent;
  bottom: 0;
  right: 30px;
}
.secondary-slideshow .slider-control {
  background: url("../images/slider-bg.png") no-repeat transparent;
}
.secondary-slideshow .slideshow {
  overflow: hidden;
}
/*
*
* GERERAL STYLES FOR THE SLIDESHOW CONTROLS
*
*/
.controls_container {
  height: 21px;
  position: absolute;
  cursor: pointer;
  z-index: 10;
  padding-right: 16px;
}
.slider-control {
  display: block;
  height: 21px;
  padding-left: 14px;
}
.slider-control a, .slider-control a:visited {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 6px 3px 0 3px;
  background: url(../images/slideshow-icons.png) no-repeat;
  background-position: 0 0;
  text-decoration: none;
  outline: none;
}
.slider-control a:hover, .slider-control a.active {
  background-position: 0 -9px;
}
/*
*
* STYLES FOR LOCATOR WIDGETS
*
*/
.locater-widget #locater-widget-map {
  float: left;
  overflow: hidden;
}
.locater-widget #locater-widget-content {
  float: left;
  width: 185px;
  padding-left: 20px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ababab;
}
.locater-widget #locater-widget-content #locater-widget-copy {
  width: 160px;
  height: 65px;
  overflow: hidden;
  border-bottom: 1px solid #454545;
  padding-bottom: 5px;
  margin: 15px 0 10px 0;
}
.locater-widget #locater-widget-content input[type="text"] {
  background: transparent url(../images/input-field.png) no-repeat;
  width: 140px;
  border: none;
  margin-right: 5px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #747474;
  padding-left: 10px;
  height: 23px;
  float: left;
}
/*--- FORMS ---*/
label {
  position: absolute;
  left: -9999px;
}
input, textarea {
  font: inherit;
  resize: none;
}
[placeholder] {
  cursor: pointer;
}
[placeholder]:active, [placeholder]:focus {
  cursor: text;
}
/*
*
* GENERAL STYLES FOR THE FRAME SWITCH
*
*/
.frame-switch .frame1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  height: 215px;
  overflow: hidden;
}
.frame-switch .frame1 .frame1-content {
  height: 165px;
  overflow: hidden;
}
.frame-switch .frame1 .footer {
  background-color: #333333;
  position: absolute;
  top: 165px;
  height: 50px;
}
.frame-switch .frame1 .footer .cta {
  padding: 7px 5px 0 10px;
  line-height: 14px;
  height: 30px;
  overflow: hidden;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ababab;
  width: 225px;
}
.frame-switch.tertiary-promo-wide .frame1 .footer .cta,
.frame-switch.tertiary-promo-wide .frame2 .footer .cta {
	width: 385px;
}
.frame-switch .frame2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 215px;
  overflow: hidden;
}
.frame-switch .frame2 .frame2-content {
  height: 165px;
  padding: 25px;
  overflow: hidden;
  color: #747474;
}
.frame-switch .frame2 .frame2-content h3 {
  padding-bottom: 10px;
  float: none; /* edo: override nflight-main.css */
  text-transform: uppercase;
}
.frame-switch .frame2 .frame2-content p {
  height: 100px;
  overflow: hidden;
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
}
.frame-switch .frame2 .footer {
  position: absolute;
  top: 165px;
  height: 50px;
}
.frame-switch .frame2 .footer .cta {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  line-height: 50px;
  padding-right: 15px;
  text-align: right;
  width: 225px;
  text-transform: uppercase;
}
.frame-switch.secondary-promo .frame2-content {
  width: 375px;
}
.tertiary-promo .frame2-content img {
    margin-bottom: 10px;
}
.frame-switch.secondary-promo .footer .cta {
  width: 385px;
}
.frame-switch .frame2, .frame-switch .frame2 .footer, .tertiary-slideshow-footer {
  background: #f5f5f5;
  background: -moz-linear-gradient(top, #f5f5f5 0, #b3b5b6 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), color-stop(100%, #b3b5b6));
  background: -webkit-linear-gradient(top, #f5f5f5 0, #b3b5b6 100%);
  background: -o-linear-gradient(top, #f5f5f5 0, #b3b5b6 100%);
  background: -ms-linear-gradient(top, #f5f5f5 0, #b3b5b6 100%);
  background: linear-gradient(top, #f5f5f5 0, #b3b5b6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#b3b5b6',GradientType=0 );
}
.frame-switch.tertiary-promo-wide .frame1,
.frame-switch.tertiary-promo-wide .frame2 {
    width: 400px;
}
.frame-switch.tertiary-promo .frame1,
.frame-switch.tertiary-promo .frame2 {
    width: 240px;
}
.equal-thirds .frame-switch.tertiary-promo .frame1,
.equal-thirds .frame-switch.tertiary-promo .frame2 {
    width: 300px;
}
.equal-thirds .frame-switch .frame1 .footer .cta,
.equal-thirds .frame-switch .frame2 .footer .cta {
    width: 285px;
}
/*
*
* GENERAL STYLES FOR "< PREV | NEXT >" PAGINATION
*
*/
.pagination {
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #747474;
  padding: 23px 0;
  display: inline-block;
  text-align: right;
  text-transform: uppercase;
}
.pagination #page-prev{
  margin-right: 5px;
}
.pagination #page-next{
  margin-left: 5px;
}
.pagination a, .pagination a:link, .pagination a:visited {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  text-decoration: none;
  outline: none;
}
.pagination .disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
  opacity: 0.2;
  cursor: default;
  zoom: 1;
  display: inline-block;
}
/***************************************************************************
*                                                                          *
*                          Product Module Layout                           *
*                                                                          *
***************************************************************************/
.featureModule {
  background: transparent url("../images/featureModule-background.jpg") no-repeat;
  overflow: hidden;
  width: 940px;
  margin: 0 auto;
}
.featureModule .product-description {
  float: left;
  height: 420px;
  width: 286px;
  overflow: hidden;
  position: relative;
}
.featureModule .product-description > div {
  padding: 20px 20px 30px 0;
}
.featureModule .product-visual {
  position: relative;
  float: left;
  height: 420px;
  width: 654px;
}
.featureModule .product-visual .viewable, .featureModule .product-visual .viewable > div {
  width: 100%;
  height: 380px;
  position: absolute;
  top: 0;
  overflow: hidden;
  z-index: 0;
}
.featureModule .models {
  display: none;
}
.featureModule .product-visual .viewable #feature-slider-container {
  z-index: 5;
  width: 654px;
  height: 10px;
  background: transparent url(../images/featureModule-scroller-bg.jpg) no-repeat 0 0;
  position: absolute;
  bottom: 0;
}
.featureModule .product-visual .viewable #feature-slider {
  height: 10px;
  margin-left: 50px;
  position: relative;
  width: 555px;
}
.featureModule .product-visual .viewable .ui-slider-handle {
  display: block;
  float: left;
  height: 10px;
  position: absolute;
  width: 10px;
  text-decoration: none;
  outline: none;
}
.featureModule .product-visual .viewable a.ui-slider-handle span {
  border-radius: 5px;
  display: block;
  height: 10px;
  margin-left: -50px;
  width: 100px;
}
.featureModule .product-visual .viewable a.ui-slider-handle span {
  background: none repeat scroll 0 0 #00a1cb;
}
.ladies .featureModule .product-visual .viewable a.ui-slider-handle span {
  background: none repeat scroll 0 0 #009B99;
}
.juniors .featureModule .product-visual .viewable a.ui-slider-handle span {
  background: none repeat scroll 0 0 #ABB715;
}
.classics .featureModule .product-visual .viewable a.ui-slider-handle span {
  background: none repeat scroll 0 0 #dd4400;
}
/***************************************************************************
*                                                                          *
*                         Product Module Description                       *
*                                                                          *
***************************************************************************/
.featureModule .product-description .description-icon {
  margin-bottom: 15px;
  padding-left: 30px;
}
.featureModule .product-description h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 30px;
}
.featureModule .product-description h2 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 24px;
}
.featureModule .product-description h3 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #595858;
  padding-left: 30px;
}
.featureModule .product-description h2.secondary-header {
  margin-top: 10px;
}
.featureModule .product-description p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
  padding-left: 30px;
  margin-bottom: 30px;
}
.featureModule .product-description .description-cta {
  clear: both;
  background-color: #00a1cb;
  padding: 4px 15px 4px 15px;
  float: right;
  margin-right: -20px;
}
.featureModule .product-description .description-cta a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 20px;
}
.featureModule .product-description ul, .featureModule .product-description li {
  list-style-position: inside;
  list-style-type: disc;
  padding-bottom: 5px;
}
.featureModule .product-description ul {
  overflow: auto;
  padding: 0 0 20px 30px;
}
.featureModule .product-description li {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
  text-indent: -2em;
  padding-left: 2em;
}
.featureModule .product-description .technology-cta {
  cursor: pointer;
  clear: both;
  height: 22px;
  text-align: right;
  padding: 3px 15px 3px 30px;
}
.featureModule .product-description .technology-cta a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #595858;
  line-height: 20px;
}
.featureModule .product-description .technology-cta a:hover {
  color: #00a1cb;
}
.featureModule .product-description table {
  margin-left: 30px;
  margin-bottom: 25px;
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
  table-layout: fixed;
}
.featureModule .product-description table td {
  width: 110px;
  padding: 0;
  vertical-align: top;
}
.featureModule .product-description table td a {
  color: #00a1cb;
}
.featureModule .product-description table td a:hover {
  color: #000000;
}
.featureModule .product-description .description-cta {
  background-color: #00a1cb;
}
.juniors .featureModule .product-description .description-cta {
  background-color: #ABB715;
}
.ladies .featureModule .product-description .description-cta {
  background-color: #009B99;
}
.classics .featureModule .product-description .description-cta {
  background-color: #dd4400;
}
#classics-feature-note {
  width: 260px;
  border: 1px solid #d0d0d0;
  background: #f9f8f8;
  background: -moz-linear-gradient(top, #f9f8f8 0, #f1ccac 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f9f8f8), color-stop(100%, #f1ccac));
  background: -webkit-linear-gradient(top, #f9f8f8 0, #f1ccac 100%);
  background: -o-linear-gradient(top, #f9f8f8 0, #f1ccac 100%);
  background: -ms-linear-gradient(top, #f9f8f8 0, #f1ccac 100%);
  background: linear-gradient(top, #f9f8f8 0, #f1ccac 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f8f8', endColorstr='#f1ccac',GradientType=0 );
}
#classics-feature-note p {
  padding: 15px 15px 15px 30px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 0;
}
/***************************************************************************
*                                                                          *
*                         Product Module Controls                          *
*                                                                          *
***************************************************************************/
.featureModule .product-visual .controls {
  height: 40px;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 15;
}
.featureModule .visual {
  overflow: hidden;
  height: 40px;
}
.tech .button .visual-rollover {
  position: absolute;
  bottom: -5px;
  left: 0;
  display: none;
}
.view .button .visual-rollover {
  position: absolute;
  bottom: -5px;
  right: 0;
  display: none;
}
.tooltip {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #868686;
  border: 1px solid #ababab;
  padding: 5px;
  line-height: 12px;
  background-color: #f4f4f4;
}
.featureModule .product-visual .controls .view {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
}
.featureModule .product-visual .controls .tech {
  height: 40px;
}
.featureModule .product-visual .controls .button {
  position: relative;
  cursor: pointer;
  background: transparent url("../images/featureModule-controls.png") no-repeat -212px -2px;
  float: left;
  width: 40px;
}
.featureModule .product-visual .controls .button {
  background: transparent url("../images/featureModule-controls.png") no-repeat -212px -2px;
}
.juniors .featureModule .product-visual .controls .button {
  background: transparent url("../images/juniors-featureModule-controls.png") no-repeat -212px -2px;
}
.classics .featureModule .product-visual .controls .button {
  background: transparent url("../images/classics-featureModule-controls.png") no-repeat -212px -2px;
}
.ladies .featureModule .product-visual .controls .button {
  background: transparent url("../images/ladies-featureModule-controls.png") no-repeat -212px -2px;
}
.featureModule .product-visual .controls .button.selected {
  background-position: -212px -44px;
}
.featureModule .product-visual .controls .button.disabled, .featureModule .product-visual .controls .button.disabled:hover {
  background-position: -212px -86px;
}
.featureModule .product-visual .controls .button.disabled .visual {
  opacity: 0.2;
}
.featureModule .product-visual .controls .button:hover {
  background-position: -212px -44px;
}
/***************************************************************************
*                                                                          *
*                           Product Sprite Sheet                           *
*                                                                          *
***************************************************************************/
/* 360 button */
.featureModule .product-visual .controls .button.rotate360 {
  height: 40px;
  background-position: -2px -2px;
}
.featureModule .product-visual .controls .button.rotate360.selected, .featureModule .product-visual .controls .button.rotate360.selected:hover {
  background-position: -2px -86px;
}
.featureModule .product-visual .controls .button.rotate360.disabled, .featureModule .product-visual .controls .button.rotate360.disabled:hover {
  background-position: -2px -128px;
}
.featureModule .product-visual .controls .button.rotate360:hover {
  background-position: -2px -44px;
}
/* Zoom Out */
.featureModule .product-visual .controls .button.zoom-out {
  height: 40px;
  background-position: -128px -2px;
}
.featureModule .product-visual .controls .button.zoom-out.selected {
  background-position: -128px -44px;
}
.featureModule .product-visual .controls .button.zoom-out.disabled, .featureModule .product-visual .controls .button.zoom-out.disabled:hover {
  background-position: -128px -86px;
}
.featureModule .product-visual .controls .button.zoom-out:hover {
  background-position: -128px -44px;
}
/* Zoom In */
.featureModule .product-visual .controls .button.zoom-in {
  height: 40px;
  background-position: -170px -2px;
}
.featureModule .product-visual .controls .button.zoom-in.selected {
  background-position: -170px -44px;
}
.featureModule .product-visual .controls .button.zoom-in.disabled, .featureModule .product-visual .controls .button.zoom-in.disabled:hover {
  background-position: -170px -86px;
}
.featureModule .product-visual .controls .button.zoom-in:hover {
  background-position: -170px -44px;
}

.featureModule .product-visual #cta-container {
	position: absolute;
}
.driver.featureModule .product-visual #cta-container,
.fairway.featureModule .product-visual #cta-container,
.hybrid.featureModule .product-visual #cta-container,
.crossover.featureModule .product-visual #cta-container,
.iron.featureModule .product-visual #cta-container,
.wedge.featureModule .product-visual #cta-container {
	bottom: 50px;
}
.featureModule .product-visual #cta-container div {
    margin-top: 10px;
    padding: 3px 15px 1px 15px;
    height: 20px;
    float: left;
    clear: both;
}
.featureModule .product-visual #cta-container img {
	padding: 0;
    float: left;
}
.featureModule .product-visual #cta-container .get-fit-button {
    text-transform: none;
	background-color: #00A1CB;
}
.featureModule .product-visual #cta-container .buy-now-button {
    text-transform: uppercase;
	background-color: #CC0000;
}
.featureModule .product-visual #cta-container .availability-date {
    text-transform: uppercase;
	background-color: #f76900;
}
.featureModule .product-visual #cta-container .availability-date p,
.featureModule .product-visual #cta-container .get-fit-button a,
.featureModule .product-visual #cta-container .buy-now-button a {
    font-family: 'Droid Sans', sans-serif;
    font-size: 12px;
    color: #FFF;
    font-weight: 700;
}

/*
*
*
*
* HOMEPAGE
*
*
*
*
*/
.homepage-primary-promo,
.homepage-col1-row1,
.homepage-col2-row1,
.homepage-col3-row1,
.homepage-col1-row2,
.homepage-col2-row2 {
  background-color: #333333;
}
/*  
*
* Styles for the homepage primary slideshow
*
*/
#homepage-primary-slideshow .controls_container {
  background: url("../images/slider-end.png") no-repeat right transparent;
  bottom: 0;
  right: 30px;
}
#homepage-primary-slideshow .slider-control {
  background: url("../images/slider-bg.png") no-repeat transparent;
}
#homepage-primary-slideshow .slide .primary-slideshow-content {
  position: absolute;
  top: 150px;
  left: 500px;
  width: 330px;
  height: 356px;
  /*overflow: hidden;*/
}
#homepage-primary-slideshow .slide .primary-slideshow-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 40px;
  line-height: 45px;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
}
#homepage-primary-slideshow .slide .primary-slideshow-content h1.large {
  font-size: 40px;
  line-height:45px;
}
#homepage-primary-slideshow .slide .primary-slideshow-content h1.medium {
  font-size: 36px;
  line-height:40px;
}
#homepage-primary-slideshow .slide .primary-slideshow-content h1.small {
  font-size: 32px;
  line-height:36px;
}
#homepage-primary-slideshow .slide .primary-slideshow-content p {
  margin: 10px 0 0 0;
  font-family: 'Droid Sans', sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #7a7676;
}
#homepage-primary-slideshow .slide .primary-slideshow-content p.large {
  font-size: 24px;
  line-height:32px;
}
#homepage-primary-slideshow .slide .primary-slideshow-content p.medium {
  font-size: 20px;
  line-height:30px;
}
#homepage-primary-slideshow .slide .primary-slideshow-content p.small {
  font-size: 18px;
  line-height:24px;
}
#live-promo-container .promo .content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 28px;
  line-height: 30px;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
}
#live-promo-container .promo .content h1.large {
  font-size: 32px;
  line-height: 34px;
}
#live-promo-container .promo .content h1.medium {
  font-size: 28px;
  line-height: 30px;
}
#live-promo-container .promo .content h1.small {
  font-size: 24px;
  line-height: 26px;
}
#live-promo-container .promo .content h2 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
}
#live-promo-container .promo .content h2.large {
  font-size: 24px;
  line-height: 26px;
}
#live-promo-container .promo .content h2.medium {
  font-size: 20px;
  line-height: 22px;
}
#live-promo-container .promo .content h2.small {
  font-size: 16px;
  line-height: 18px;
}
#live-promo-container .promo .content p {
  margin: 10px 0 0 0;
  font-family: 'Droid Sans', sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #7a7676;
}
#live-promo-container .promo .content p.large {
  font-size: 18px;
  line-height: 20px;
}
#live-promo-container .promo .content p.medium {
  font-size: 16px;
  line-height: 18px;
}
#live-promo-container .promo .content p.small {
  font-size: 14px;
  line-height: 16px;
}
#homepage-primary-slideshow .slide .primary-slideshow-content div {
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  height: 21px;
  padding: 15px;
  z-index: 3;
  text-align: right;
}
#live-promo-container > .promo {
    float:left; 
    position:relative;
}
#live-promo-container .promo .content {
    position:absolute;
}
/*
*
* Styles for the twitter widget
*
*/
#twitter-feed-widget #twitter-feed-widget-content {
  padding: 5px 15px 0 15px;
}
#twitter-feed-widget #twitter-feed-widget-content #header{
  border-bottom: 1px solid #454545;
}
#twitter-feed-widget #twitter-feed-widget-content #header span {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ababab;
  padding-bottom: 5px;
  margin-right: 30px;
}
#twitter-feed-widget #twitter-feed-widget-content h4 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #ababab;
}
#twitter-feed-widget #twitter-feed-widget-content a {
  color: #00a1cb;
}
#twitter-feed-widget #twitter-feed-widget-content ul {
  margin-bottom: 10px;
}
#twitter-feed-widget #twitter-feed-widget-content p {
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #a8a7a7;
}
#twitter-feed-widget #twitter-feed-widget-content ul li {
  border-bottom: 1px solid #454545;
  padding: 5px 0 5px 0;
}
#twitter-feed-widget #twitter-feed-widget-content span.twitter-stamp {
  font-size: 11px;
  color: #5d5d5d;
}
#twitter-feed-widget-content #header img {
  margin-right: 3px;
}
/*
*
*
*
* SECTION HOME
*
*
*
*
*/
.section-home-primary-promo,
.section-home-col1-row1,
.section-home-col2-row1,
.section-home-col3-row1 {
  background-color: #333333;
}
.section-home-primary-promo p,
.section-home-col1-row1 p,
.section-home-col2-row1 p,
.section-home-col3-row1 p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ababab;
}
/*
*
* STYLES FOR THE ACCORDION WIDGET
*
*/
.ping-accordion {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.ping-accordion dt, .ping-accordion dd {
  margin: 0;
  padding: 0;
}
.ping-accordion dt, .ping-accordion dd {
  position: absolute;
}
.ping-accordion dt {
  margin-bottom: 0;
  margin-left: 0;
  z-index: 5;
  cursor: pointer;
}
.ping-accordion dd {
  z-index: 1;
  opacity: 0;
  overflow: hidden;
}
.ping-accordion dd.active {
  opacity: 1;
}
.ping-accordion dd.no-more-active {
  z-index: 2;
  opacity: 1;
}
.ping-accordion dd.active {
  z-index: 3;
}
.ping-accordion dd.plus {
  z-index: 4;
}
.ping-accordion .slide-number {
  display: none;
  position: absolute;
  bottom: 0;
  left: 10px;
  font-weight: normal;
  font-size: 1.1em;
}
#accordion-widget {
  width: 940px;
  height: 345px;
}
#accordion-widget dl {
  width: 940px;
  height: 345px;
  display: none;
}
#accordion-widget div {
  position: absolute;
}
#accordion-widget p {
  margin: 0;
  padding: 0;
}
#accordion-widget dt {
  height: 345px;
  background: #ffffff url(../images/accordion_handle.jpg) 0 0 no-repeat;
}
#accordion-widget dt.active {
  cursor: pointer;
  background: #ffffff url(../images/accordion_handle.jpg) 0 0 no-repeat;
}
#accordion-widget dd {
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #747474;
}
#accordion-widget a {
  color: #68889b;
}
#accordion-widget h2 {
  margin: 0;
  padding: 0;
  font-size: 23px;
  padding-bottom: 5px;
  line-height: 23px;
}
#accordion-widget p {
  font: 15px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
}
#accordion-widget a {
  display: block;
  width: 100%;
  text-align: right;
  color: #747474;
  font-size: 13px;
  font-weight: 700;
  margin-top: 5px;
  text-decoration: none;
}
#accordion-widget dd {
  background-position: 0 0;
  background-repeat: no-repeat;
}
.handle {
  position: absolute;
  background-image: url('../images/accordion_handle_sprites.png');
  background-repeat: no-repeat;
  width: 40px;
  height: 35px;
  top: 150px;
  left: 11px;
}
.accordion-click-overlay {
  display: block;
  width: 534px;
  height: 345px;
  position: relative;
  top: 0;
  left: 0;
}
/*
*
* STYLES FOR CONTENT IN THE SECTION HOME PRIMARY PROMO
*
*/
#section-home-content {
  position: absolute;
  top: 130px;
  left: 60px;
  z-index: 4;
  width: 200px;
  height: 180px;
  overflow: hidden;
}
#section-home-content h2 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #7a7676;
  line-height: 24px;
}
#section-home-content p {
  margin: 10px 0;
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #7a7676;
}
#section-home-content .cta {
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #7a7676;
  text-align: right;
}
/*
*
* GEAR SECTION HOME
*
*/
#gear-section-locater-widget .locater-widget-content {
  margin-top: 30px;
}
/*
*
* BAG SECTION HOME
*
*/
#bag-slideshow .tertiary-slideshow-content {
  height: 165px;
  overflow: hidden;
}
#bag-primary-slideshow .controls_container {
  background: url("../images/slider-end.png") no-repeat right transparent;
  bottom: 0;
  right: 30px;
}
#bag-primary-slideshow .slider-control {
  background: url("../images/slider-bg.png") no-repeat transparent;
}
#bag-primary-slideshow .slide .primary-slideshow-content {
  position: absolute;
  top: 100px;
  left: 570px;
  width: 300px;
  height: 180px;
  overflow: hidden;
}
#bag-primary-slideshow .slide .primary-slideshow-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #7a7676;
  z-index: 2;
  line-height: 36px;
}
#bag-primary-slideshow .slide .primary-slideshow-content p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #7a7676;
}
/*
*
* CUSTOM FITTING HOME
*
*/
.custom-fitting-primary-promo, .custom-fitting-col1-row1, .custom-fitting-col2-row1 {
  background-color: #333333;
}
/*
*
* Styles for the custom fitting primary slideshow
*
*/
#custom-fitting-slideshow .controls_container {
  background: url("../images/secondary-slider-end.png") no-repeat right transparent;
  bottom: 0;
  right: 30px;
}
#custom-fitting-slideshow .slider-control {
  background: url("../images/secondary-slider-bg.png") no-repeat transparent;
}
#custom-fitting-slideshow .slide .primary-slideshow-content {
  position: absolute;
  top: 150px;
  left: 630px;
  width: 240px;
  height: 120px;
  overflow: hidden;
}
#custom-fitting-slideshow .slide .primary-slideshow-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #747474;
  z-index: 2;
  line-height: 36px;
}
#custom-fitting-slideshow .slide .primary-slideshow-content p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #747474;
  z-index: 2;
}
#custom-fitting-slideshow .slide .primary-slideshow-content .cta {
  margin-top: 10px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #747474;
  text-align: right;
}
/*
*
* TOUR PROS SECTION HOME
*
*/
#tour-pros-primary-promo #section-home-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
  line-height: 36px;
}
#tour-pros-primary-promo #section-home-content .cta {
  color: #ffffff;
  margin-top: 10px;
}
#section-home-headlines-widget ul {
  margin: 10px 15px 0 15px;
}
#section-home-headlines-widget ul li {
  padding: 6px; /* edo [2/5/2012] changed from: "6px 10px 6px 6px" to fit more chars */
}
#section-home-headlines-widget h4 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #868686;
}
#section-home-headlines-widget li a {
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #a8a7a7;
}
#section-home-headlines-widget span {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #00a1cb;
}
#section-home-headlines-widget .cta {
  padding-top: 5px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #868686;
}
#section-home-headlines-widget .cta:hover {
  color: #00a1cb;
}
/*
*
* ABOUT SECTION HOME
*
*/
#about-primary-promo {
  height: 345px;
}
#about-primary-promo p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6c6c6c;
}
#about-primary-promo .about-primary-content {
  padding: 40px 40px 40px 0;
  width: 245px;
  height: 265px;
  float: left;
  overflow: hidden;
}
#about-primary-promo .about-primary-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 20px;
  line-height: 30px;
  margin-left: 30px;
}
#about-primary-promo .about-primary-content p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
  margin-bottom: 30px;
  margin-left: 30px;
}
#about-primary-promo .about-primary-content .description-cta {
  background-color: #00A1CB;
  clear: both;
  display: inline;
  padding: 6px 15px 6px 30px;
  text-align: right;
}
#about-primary-promo .about-primary-content .description-cta a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  font-weight: 700;
  line-height: 20px;
}
.about-primary-content {
  background: #cdcdcd;
  background: -moz-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #cdcdcd), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -o-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -ms-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdcdcd', endColorstr='#ffffff',GradientType=1 );
}

/* ABOUT page templates */
#about thead th {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  margin-bottom: 10px;
}
#about tbody td, #about li{  
  font-size: 12px;
  font-weight: 500;
  color: #747474;
  margin-bottom: 10px;
}
/*
*
*
*
* CLUB TYPE PRIMARY
*
*
*
*
*/
.product-type-primary-promo, .product-type-primary-col1-row1 {
  background-color: #333333;
}
/*
*
* STYLES FOR THE PRODUCT TYPE PROMO CONTENT
*
*/
#product-type-primary-product {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}
#product-type-primary-tab {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
#product-type-primary-content {
  position: absolute;
  top: 130px;
  left: 90px;
  z-index: 6;
  width: 160px;
  height: 200px;
}
#product-type-primary-content h2 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #747474;
  line-height: 24px;
}
#product-type-primary-content p {
  margin: 10px 0;
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #747474;
}
#product-type-primary-content .cta {
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #747474;
  text-align: right;
}
/*
*
* STYLES FOR THE BAG TYPE PROMO CONTENT
*
*/
#bag-type-primary-promo #product-type-primary-content {
  position: absolute;
  top: 100px;
  left: 50px;
  width: 180px;
}
#bag-type-primary-promo #product-type-primary-content h2, #bag-type-primary-promo #product-type-primary-content p, #bag-type-primary-promo #product-type-primary-content .cta {
  color: #000;
}
#bag-type-comparison-table table {
  width: 0;
}
/*
*
* STYLES FOR THE PRODUCT TYPE TABLE
*
*/
#product-type-category-table {
  float: left;
  width: 160px;
}
#product-type-category-table td {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #777373;
  padding: 8px 0 8px 0;
  vertical-align: top;
}
#product-type-category-table td.first-row {
  padding-bottom: 10px;
}
.product-type-comparison-table {
  float: left;
  width: 780px;
  overflow: hidden;
}
.product-type-comparison-table table {
  color: white;
  table-layout: fixed;
  width: 100%;
}
.product-type-comparison-table table th {
  text-align: left;
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #929292;
  padding: 8px 0 8px 0;
  width: 157px;
  border-bottom: 1px solid #5c5c5c;
  padding-bottom: 10px;
}
.product-type-comparison-table table td {
  font-size: 13px;
  padding: 8px 0 8px 0;
  vertical-align: top;
}
/*
*
*
*
* CLUB-DETAIL-PRIMARY
*
*
*
*
*/
.club-detail-primary-promo {
  background-color: #333333;
}
.club-detail-primary-promo p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ababab;
}
.club-detail-options {
  margin-bottom: 5px;
  display: none;
  clear: both;
}
#club-detail-tabs table.club-detail-options-table {
  margin: 5px 0 10px 0;
}
.custom-club-detail-options h3 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #929292;
  margin-bottom: 15px;
  cursor: pointer;
  display: inline-block;
  padding-right: 7px;
  float: left;
  line-height: 21px;
}
.custom-club-detail-options h3 span.arrow {
  display: inline-block;
  content: "";
  width: 8px;
  height: 18px;
  margin-left: 5px;
  vertical-align: middle;
}
.custom-club-detail-options h3.active span.arrow {
  display: inline-block;
  content: "";
  width: 15px;
  height: 8px;
  margin-left: 5px;
  background-position: -10px 0;
  vertical-align: middle;
}
.custom-club-detail-options .options-cta {
  float: left;
}
.custom-club-detail-options a.download {
  float: right;
}
.custom-club-detail-options .active {
  background-position: 0 -21px;
}
.custom-club-detail-options h3 span.arrow {
  background: url('../images/cta-large.png') no-repeat;
}
.custom-club-detail-options h3.active span.arrow {
  background: url('../images/club-detail-arrow-down.png') no-repeat;
}
.custom-club-detail-options a.download {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #00a1cb;
}
.juniors .custom-club-detail-options h3 span.arrow {
  background: url('../images/juniors-cta-large.png') no-repeat;
}
.juniors .custom-club-detail-options h3.active span.arrow {
  background: url('../images/juniors-club-detail-arrow-down.png') no-repeat;
}
.juniors .custom-club-detail-options a.download {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ABB715;
}
.ladies .custom-club-detail-options h3 span.arrow {
  background: url('../images/ladies-cta-large.png') no-repeat;
}
.ladies .custom-club-detail-options h3.active span.arrow {
  background: url('../images/ladies-club-detail-arrow-down.png') no-repeat;
}
.ladies .custom-club-detail-options a.download {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #009B99;
}
.classics .custom-club-detail-options h3 span.arrow {
  background: url('../images/classics-cta-large.png') no-repeat;
}
.classics .custom-club-detail-options h3.active span.arrow {
  background: url('../images/classics-club-detail-arrow-down.png') no-repeat;
}
.classics .custom-club-detail-options a.download {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #dd4400;
}
.club-detail-options-headline {
  clear: both;
  height: 18px;
  cursor: pointer;
}
.club-detail-options-headline span {
  font: 13px/20px Arial, Tahoma, Verdana, sans-serif;
  margin-left: 30px;
  float: left;
}
.club-detail-options-headline a {
  float: right;
  margin-right: 10px;
}
.club-detail-options-headline {
  background: #333333 url('../images/options-collapse-icons.png') no-repeat;
}
.club-detail-options-headline a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #00a1cb;
}
.juniors .club-detail-options-headline {
  background: #333333 url('../images/juniors-options-collapse-icons.png') no-repeat;
}
.juniors .club-detail-options-headline a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ABB715;
}
.ladies .club-detail-options-headline {
  background: #333333 url('../images/ladies-options-collapse-icons.png') no-repeat;
}
.ladies .club-detail-options-headline a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #009B99;
}
.classics .club-detail-options-headline {
  background: #333333 url('../images/classics-options-collapse-icons.png') no-repeat;
}
.classics .club-detail-options-headline a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #dd4400;
}
/*
*
*
*
* CLUB DETIAL ASIDE
*
*
*
*
*/
/*
*
* styles for the social button area
*
*/
.club-detail-primary-col2 #social-control, .putter-detail-col2 #social-control {
  margin-top: 40px;
}
#social-control ul {
  padding: 5px 10px 5px 5px;
  margin-bottom: 1px;
  background-color: #333333;
  /*height: 20px;*/
  overflow: hidden;
}
#social-control ul li {
  float: left;
  margin-right: 5px;
}
#social-control iframe {
  border: medium none;
  overflow: hidden;
  height: 20px;
  width: 100px;
  display: inline;
}
#links-control-primary {
  margin-bottom: 25px;
}
#links-control-primary li {
  padding: 5px 10px 5px 5px;
  margin-bottom: 1px;
  background-color: #333333;
}
#links-control-primary li.divider {
    border: none;
}
#links-control-primary a, #links-control-primary a:link, #links-control-primary a:active {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #797878;
  display: block;
}
#links-control-primary .utility-promo li {
  background: none;
}
#suggestion-widget, #featured-pro-widget {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6c6c6c;
}
#featured-pro-widget {
  margin-bottom: 25px;
}
#featured-pro-widget div {
  background-color: #333333;
  padding-bottom: 10px;
}
#featured-pro-widget a, #featured-pro-widget a:link, #featured-pro-widget a:active {
  margin: 5px 0 0 10px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ababab;
  display: block;
  padding-right: 15px;
}
#suggestion-widget .suggestion-item {
  width: 218px;
  height: 100px;
  overflow: hidden;
  background: url(../images/suggestion-widget-bg.jpg) no-repeat 0 0;
  border: 1px solid #a3a3a3;
  position: relative;
}
#suggestion-widget .suggestion-item img {
  position: absolute;
  top: 0;
  left: 0;
}
#suggestion-widget .suggestion-item div {
  position: absolute;
  top: 30px;
  left: 130px;
  width: 70px;
}
#suggestion-widget .suggestion-item div h5 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #3e3d3d;
  line-height: 13px;
}
#suggestion-widget .suggestion-item div a, #suggestion-widget .suggestion-item div a:link, #suggestion-widget .suggestion-item div a:active {
  margin-top: 5px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #3e3d3d;
  display: block;
}
/*
*
*
*
* PRODUCT DETAIL TABS
*
*
*
*
*/
.product-detail-tabs {
  margin-top: 10px;
}
/*
*
*
* TAB HEADINGS
*
*
*/
#tabHeadings {
  display: block;
  overflow: hidden;
}
#tabHeadings li {
  float: left;
  text-align: center;
  cursor: pointer;
  height: 30px;
  line-height: 30px;
}
#tabHeadings a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #969696;
  outline: medium none;
  text-decoration: none;
  display: block;
  padding-right: 35px;
}
#tabHeadings span {
  display: block;
  padding-left: 40px;
  text-transform: uppercase;
}
#tabHeadings li.selected span:after {
  background: url("../images/club-detail-tab-arrows.png") no-repeat scroll 0 -8px transparent;
  content: "";
  display: inline-block;
  height: 7px;
  margin-left: 8px;
  vertical-align: middle;
  width: 13px;
}
#tabHeadings span:after {
  background: url("../images/club-detail-tab-arrows.png") no-repeat scroll 0 0 transparent;
  content: "";
  display: inline-block;
  height: 7px;
  margin-left: 8px;
  vertical-align: middle;
  width: 15px;
}
#tabHeadings li.selected span:after {
  background: url("../images/club-detail-tab-arrows.png") no-repeat scroll 0 -14px transparent;
}
#tabHeadings li.selected:hover span:after {
  background: url("../images/club-detail-tab-arrows.png") no-repeat scroll 0 -14px transparent;
}
#tabHeadings li:hover span:after {
  background: url("../images/club-detail-tab-arrows.png") no-repeat scroll 0 -7px transparent;
}
#tabHeadings span:after {
  background: url("../images/club-detail-tab-arrows.png") no-repeat scroll 0 0 transparent;
}
.ladies #tabHeadings li.selected span:after {
  background: url("../images/ladies-club-detail-tab-arrows.png") no-repeat scroll 0 -14px transparent;
}
.ladies #tabHeadings li.selected:hover span:after {
  background: url("../images/ladies-club-detail-tab-arrows.png") no-repeat scroll 0 -14px transparent;
}
.ladies #tabHeadings li:hover span:after {
  background: url("../images/ladies-club-detail-tab-arrows.png") no-repeat scroll 0 -7px transparent;
}
.ladies #tabHeadings span:after {
  background: url("../images/ladies-club-detail-tab-arrows.png") no-repeat scroll 0 0 transparent;
}
.juniors #tabHeadings li.selected span:after {
  background: url("../images/junior-club-detail-tab-arrows.png") no-repeat scroll 0 -14px transparent;
}
.juniors #tabHeadings li.selected:hover span:after {
  background: url("../images/junior-club-detail-tab-arrows.png") no-repeat scroll 0 -14px transparent;
}
.juniors #tabHeadings li:hover span:after {
  background: url("../images/junior-club-detail-tab-arrows.png") no-repeat scroll 0 -7px transparent;
}
.juniors #tabHeadings span:after {
  background: url("../images/junior-club-detail-tab-arrows.png") no-repeat scroll 0 0 transparent;
}
.classics #tabHeadings li.selected span:after {
  background: url("../images/classics-club-detail-tab-arrows.png") no-repeat scroll 0 -14px transparent;
}
.classics #tabHeadings li.selected:hover span:after {
  background: url("../images/classics-club-detail-tab-arrows.png") no-repeat scroll 0 -14px transparent;
}
.classics #tabHeadings li:hover span:after {
  background: url("../images/classics-club-detail-tab-arrows.png") no-repeat scroll 0 -7px transparent;
}
.classics #tabHeadings span:after {
  background: url("../images/classics-club-detail-tab-arrows.png") no-repeat scroll 0 0 transparent;
}
#tabHeadings li.selected a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  background: url("../images/club-detail-end.png") no-repeat transparent;
  background-position: right top;
}
#tabHeadings li.selected span {
  background: url("../images/club-detail-tab.png") no-repeat transparent;
  background-position: left top;
}
.juniors #tabHeadings li.selected a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  background: url("../images/juniors-club-detail-tab-end.png") no-repeat transparent;
  background-position: right top;
}
.juniors #tabHeadings li.selected span {
  background: url("../images/juniors-club-detail-tab.png") no-repeat transparent;
  background-position: left top;
}
.ladies #tabHeadings li.selected a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  background: url("../images/ladies-club-detail-tab-end.png") no-repeat transparent;
  background-position: right top;
}
.ladies #tabHeadings li.selected span {
  background: url("../images/ladies-club-detail-tab.png") no-repeat transparent;
  background-position: left top;
}
.classics #tabHeadings li.selected a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  background: url("../images/classics-club-detail-tab-end.png") no-repeat transparent;
  background-position: right top;
}
.classics #tabHeadings li.selected span {
  background: url("../images/classics-club-detail-tab.png") no-repeat transparent;
  background-position: left top;
}
#tabs .specifications-headline {
  overflow: auto;
  background: #272727;
  background: -moz-linear-gradient(left, #272727 0, #353434 50%, #272727 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #272727), color-stop(50%, #353434), color-stop(100%, #272727));
  background: -webkit-linear-gradient(left, #272727 0, #353434 50%, #272727 100%);
  background: -o-linear-gradient(left, #272727 0, #353434 50%, #272727 100%);
  background: -ms-linear-gradient(left, #272727 0, #353434 50%, #272727 100%);
  background: linear-gradient(left, #272727 0, #353434 50%, #272727 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#272727', endColorstr='#272727',GradientType=1 );
}
/*
*
*
* OVERVIEW TAB
*
*
*/
#overview p {
  font-size: 13px;
  padding-right: 10px;
}
#overview p + p {
  margin-top: 12px;
}
/*
*
*
* SPECIFICATIONS TAB
*
*
*/
#specifications .specifications-headline p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ababab;
  padding: 3px 0 3px 10px;
  float: left;
}
#specifications .specifications-headline #product-cta {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 2;
  padding: 3px 50px 2px 8px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  float: right;
  overflow: auto;
  cursor: pointer;
}
#specifications table {
  table-layout: fixed;
  margin: 20px 0;
}
#specifications table th {
  text-align: center;
  vertical-align: bottom;
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #929292;
  width: 70px;
  padding: 5px 10px 5px 5px;
  text-transform: uppercase;
}
.juniors #specifications table th {
    width: 100px; /* fewer columns, so we can spread them out a bit */
}

#specifications table td {
  font-size: 13px;
  padding: 5px;
  vertical-align: top;
  text-align: center;
  white-space: nowrap;
}
/*
*
*
* PUTTER SPECIFICATIONS TAB
*
*
*/
#specifications .cta-alt {
  background-color: #00a1cb;
}
.juniors #specifications .cta-alt {
  background-color: #ABB715;
}
.ladies #specifications .cta-alt {
  background-color: #009B99;
}
.classics #specifications .cta-alt {
  background-color: #dd4400;
}
#putter-detail #specifications .col1 {
  width: 20px; /* compare button */
}
#putter-detail #specifications .col2 {
  width: 150px; /* putter model name */
  text-align: left;
}
#putter-detail #specifications #putter-cta {
  padding: 2px 50px 2px 8px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  float: left;
  cursor: pointer;
}
#putter-detail #specifications .product-selector-button {
  background: url("../images/club-selector-buttons.png") no-repeat scroll transparent;
  background-position: -12px -14px;
  display: block;
  height: 15px;
  width: 15px;
  margin-top: 3px;
  cursor: pointer;
}
#putter-detail #specifications .product-selector-button:hover, 
#putter-detail #specifications td.active .product-selector-button {
  background-position: -12px -54px;
}
#specifications .putter-cta {
  background-color: #00a1cb;
}
.juniors #specifications .putter-cta {
  background-color: #ABB715;
}
.ladies #specifications .putter-cta {
  background-color: #009B99;
}
.classics #specifications .putter-cta {
  background-color: #dd4400;
}
/*
*
*
* GLOBAL TAB STYLES
*
*
*/
#tabs {
  overflow: hidden;
  padding-bottom: 10px;
  color: #ffffff;
}
#tabs h4 {
  display: none;
}
/* Initially hide all the divs, except for the first one */
#tabs > div:not(:first-child) {
  display: none;
}
#tabs .tabs-copy {
  float: left;
  width: 430px;
  margin-top: 30px;
}
ul.disclaimers {
	margin-left: 20px;
	font-style: italic;
	font-size: 11px;
}
.disclaimers li {
	list-style-type: square;
}
#tabs .tabs-copy p + p {
  margin-top: 12px;
}
#tabs .tab-charts {
  float: right;
  margin-top: 30px;
}
#tabs #shafts .tab-charts h4,
#tabs #grips .tab-charts h4 {
    display: block;
    font-family: 'Droid Sans', sans-serif;
    font-size: 13px;
    margin-bottom: 5px;
}
#tabs .tab-charts .chart-magnifier {
  display: block;
  position: absolute;
  right: 0;
  margin-top: -10px;
}
#overview,
#specifications,
#shafts,
#grips,
#features {
  border-top: 1px solid #747474;
  padding-top: 20px;
  position: relative;
}
#overview table,
#specifications table,
#shafts table,
#grips table,
#features table {
  clear: both;
}
#shafts table, #grips table {
  width: 100%;
  table-layout: fixed;
  margin: 10px 0;
  /* sets the width of the first column*/

}
#shafts table th, #grips table th {
  text-align: left;
  vertical-align: top;
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #929292;
  padding: 5px 10px 5px 5px;
  border-bottom: 1px solid #747474;
}
#shafts table th.col1, #grips table th.col1 {
  width: 245px;
}
#shafts table td, #grips table td {
  font-size: 13px;
  padding: 5px 10px 5px 5px;
  vertical-align: top;
}
#shafts table td.tabs-divider,
#grips table td.tabs-divider,
#shafts table td.tabs-product-image,
#grips table td.tabs-product-image {
  padding-bottom: 30px;
  border-bottom: 1px solid #747474;
}
#shafts table td.tabs-product-name span, #grips table td.tabs-product-name span {
  float: left;
}
#shafts table td.tabs-product-name a, #grips table td.tabs-product-name a {
  margin-left: 10px;
  width: 20px;
  height: 17px;
}
#shafts table img.tabs-product-image, #grips table img.tabs-product-image {
  margin-top: 7px;
}
#shafts table .putter-cap, #grips table .putter-cap {
  width: 130px;
  text-align: center;
}
/*
*
*
* GRIPS TAB
*
*
*/
#grips table th.col1 {
  width: 285px;
}
#grips .profile-image {
	text-align: center;
}
#grips .club-detail-color-code li {
  margin: 0 10px 5px 0;
  width: 14px;
  height: 14px;
  display: block;
  float: left;
}
#grips .circle {
  height: 14px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  width: 14px;
  cursor: pointer;
}
#grips .circle.blue {
  background-color: #0e64d3;
}
#grips .circle.red {
  background-color: #c51100;
}
#grips .circle.aqua {
  background-color: #24859c;
}
#grips .circle.white {
  background-color: #ffffff;
}
#grips .circle.gold {
  background-color: #fdce00;
}
#grips .circle.orange {
  background-color: #f76900;
}
/*
*
*
* FEATURES TAB
*
*
*/
#features ul,
#features li {
  list-style-type: disc;
}
#features li {
  list-style-position: outside;
  margin-left: 15px;
  line-height: 20px;
}
#features ul {
  overflow: auto;
}
#features li {
  width: 380px;
  float: left;
  padding-right: 20px;
}

/*
*   ----------- LEGAL PAGE TEMPLATE ---- lots of text...
*/
.legal-template-col1 {
  width : 600px;
  margin : 40px;
  margin-right: 30px;
  font-family: 'Droid Sans', sans-serif;
  color : #747474;
 font-size : 13px;
}
.legal-template-col1 h3,
.legal-template-col1 h2 {
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.legal-template-col1 h2 {
  font-size: 15px;
}
.legal-template-col1 p,
.legal-template-col1  {
  margin-bottom: 10px;
  font: 12px Arial, Tahoma, Verdana, sans-serif;
}
.legal-template-col1 a {
  font-weight: 700;
  color: #00a1cb;
}
.legal-template-col1 a:hover {
  color: #747474;
}
.legal-template-col1 thead th {
  font-weight: 700;
  color: #b2b2b2;
  margin-bottom: 10px;
  background-color: gray;
}
.legal-template-col1 tbody td,
.legal-template li {  
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
.legal-template-col1 tbody td.zebra {  
  background-color: #b2b2b2;
}
.legal-template-col1 span.date-long {
  margin-left: 3px;
}
.legal-template-col1 .effective-date {
  margin: 20px 0;
  font-style: italic;
}
.legal-template-col2 {
  width: 220px;
  margin-top: 40px;
  margin-left: 10px;
}

/*--- COOKIE INFO page ---*/
.cookie-info #last_modified {
  margin-top: -13px;
  font-style: italic;
  font-size: 10px;
  color: #747474;
  margin-bottom: 20px;
}
.cookie-info table#cookie-listing tbody tr th,
.cookie-info table#cookie-listing tbody tr td {
  vertical-align: top;
  padding: 3px;
}
.cookie-info table#cookie-listing tbody tr th {
  text-align: right;
  color: #00A1CB;
}
/*
*
*
*
* CONTACT PAGE
*
*
*
*
*/
#apparel h3,
#company-overview h3,
#contact-us h3 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  margin-bottom: 5px;
}
#apparel p,
#company-overview p,
#contact-us p {
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  margin: 10px;
}
#apparel a,
#company-overview a,
#contact-us a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00a1cb;
}
#apparel a:hover,
#company-overview a:hover,
#contact-us a:hover {
  color: #747474;
}
#contact-us address {
  border-top: 1px solid #ababab;
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  padding: 10px 0;
}
#contact-us thead th {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  margin-bottom: 10px;
}
#contact-us tbody td,
#contact-us li,
#company-overview tbody td,
#company-overview li {
  font-size: 12px;
  font-weight: 500;
  color: #747474;
  margin-bottom: 10px;
}
/*
*
*
*
* CONTACT US FORM
*
*
*
*
*/
#contact-us-form {
	margin: 10px; 
}
#contact-us-form.disabled {
	filter: alpha(opacity=50);
	opacity: 0.5;
}
#contact-us-form input,
#contact-us-form textarea,
#contact-us-form select {
    border: 1px solid #aaa; 
    background-color: #fff;
}
#contact-us-form table {
	width:100%; 
	margin-top:20px; 
}
#contact-us-form input,
#contact-us-form select,
#contact-us-form ul { 
	width: 200px;
    padding: 3px 0 3px 5px;
}
#contact-us-form textarea { 
	width: 450px; 
	height: 150px; 
	margin-bottom: 10px;
    padding: 3px 0 3px 5px;
}
#contact-us-form th, 
#contact-us-form td { 
	vertical-align:baseline;
}
#contact-us-form select a {
	color: white;
}
#contact-us-form .submit-button.description-cta {
	clear: both;
	display: inline;
	background-color: #00A1CB;
	padding: 2px 15px;
}
#contact-us-form .submit-button.description-cta a {
	color: white;
}
#contact-us .alert-message {
	color: white;
    padding: 5px 10px;
    background-color: #B25600;
}
#contact-us-submit {
	float: right;
	margin-right: 183px;
}
#contact-us #topics,
#contact-us #distributors {
	margin-top: 20px;
	border-top: 1px solid #ccc;
	padding-top: 20px;
}
#company-overview li,
#contact-us li {
	list-style-type: square;
	margin: 0 0 0 30px;
}
#contact-us .distributor {
	width: 200px;
	float: left;
	margin: 10px 20px 0 0;
}
#contact-us .distributor .regions {
	background-color: #fff;
	font-family: 'Droid Sans', sans-serif;
	color: #00A1CB;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	border-bottom: 1px solid #ccc;
	padding: 2px 5px;
	margin-bottom: 10px;
}
#contact-us #distributors .address,
#contact-us #distributors .telephone,
#contact-us #distributors .comments {
	margin: 0 10px 0 5px;
}
#contact-us #distributors .name {
	font-family: 'Droid Sans', sans-serif;
	font-weight: 700;
	font-size: 13px;
	margin-left: 5px;
}
#contact-us #distributors .comments {
	font-style: italic;
}

/*
*
*
* COMPANY INFO PAGE
*
*
*/
#company-overview .string-pair-list table {
	margin: 20px;
}
#company-overview .string-pair-list th {
	text-align: right;
	margin-right: 10px;
	color: #747474;
	white-space: nowrap;
	vertical-align: top;
}
#company-overview .string-pair-list tbody td {  
  font-size: 12px;
  font-weight: 500;
  color: #747474;
  margin-bottom: 10px;
}
/*
.utility-promo {
  background-color: #ffffff;
  margin-bottom: 25px;
  padding: 10px;
}
.utility-promo li {
  padding: 10px 0;
  clear: both;
  overflow: auto;
}
.utility-promo li.divider {
  padding-bottom: 10px;
}
.utility-promo h4 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00A1CB;
}
.utility-promo h4, 
.utility-promo span {
  color: #00a1cb;
  display: table-cell;
  vertical-align: middle;
  line-height: 15px;
}
.utility-promo p {
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  line-height: 13px;
  overflow: hidden;
  height: 40px;
}
.utility-promo img {
  float: left;
  margin-right: 10px;
}
.utility-promo a {
  display: table;
}
*/
#links-control-secondary {
  margin-bottom: 25px;
  background-color: #ffffff;
}
#links-control-secondary li, 
#links-control-secondary p, 
#links-control-secondary h4{
  padding: 5px 0 5px 5px;
  margin: 0 10px;
}
#links-control-secondary div {
    display: inline-block;
}
#links-control-secondary img {
    float: left;
	margin-left: -10px;
    margin-right: 5px;
}
#links-control-secondary li.divider:last-child {
    border-bottom: none;
}
#links-control-secondary a, 
#links-control-secondary p, 
#links-control-secondary h4, 
.links-control-secondary a:link, 
.links-control-secondary a:active {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #868686;
  text-transform: uppercase;
}
#links-control-secondary .headline {
    color: #343434;
}
#links-control-secondary p.bodycopy {
  font-weight: 400;
  text-transform: none;
}
#links-control-secondary li:hover a,
#links-control-secondary li.link-collection li:hover a {
  color: #00a1cb;
}
#links-control-secondary li.link-collection {
    margin: 0;
}
#links-control-secondary li.link-collection:hover a {
  color: #868686;
}
#links-control-secondary .headline a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
}

#list-content li {
  padding: 5px 10px 5px 5px;
  margin: 0 10px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  color: #747474;
  display: block;  
}

/*
*
*
*
* PRODUCT GRID
*
*
*
*
*/
.product-grid {
  position: relative;
  background-color: #f6f6f6;
}
.product-grid ul {
  padding: 10px;
  overflow: auto;
}
.product-grid li {
  width: 210px;
  float: left;
  margin: 10px;
  height: 210px;
}
.product-grid .product {
  height: 175px;
  overflow: hidden;
}
.product-grid .footer {
  height: 35px;
  padding: 0 10px;
}
.product-grid .footer .label {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  line-height: 13px;
  height: 35px;
  display: table-cell;
  vertical-align: middle;
}
.product-grid .product {
  background: #dcdcdc;
  background: -moz-linear-gradient(top, #dcdcdc 0, #f0f0f0 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #dcdcdc), color-stop(100%, #f0f0f0));
  background: -webkit-linear-gradient(top, #dcdcdc 0, #f0f0f0 100%);
  background: -o-linear-gradient(top, #dcdcdc 0, #f0f0f0 100%);
  background: -ms-linear-gradient(top, #dcdcdc 0, #f0f0f0 100%);
  background: linear-gradient(top, #dcdcdc 0, #f0f0f0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dcdcdc', endColorstr='#f0f0f0',GradientType=0 );
}
.product-grid .footer {
  background: #ecebec;
  background: -moz-linear-gradient(top, #ecebec 0, #949696 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ecebec), color-stop(100%, #949696));
  background: -webkit-linear-gradient(top, #ecebec 0, #949696 100%);
  background: -o-linear-gradient(top, #ecebec 0, #949696 100%);
  background: -ms-linear-gradient(top, #ecebec 0, #949696 100%);
  background: linear-gradient(top, #ecebec 0, #949696 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ecebec', endColorstr='#949696',GradientType=0 );
}
#classics-product-grid a:hover .footer {
  color: #dd4400;
}
#classics-product-grid a:hover .product {
  background: #dcdcdc;
  background: -moz-linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f0f0f0), color-stop(100%, #dcdcdc));
  background: -webkit-linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  background: -o-linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  background: -ms-linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  background: linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#dcdcdc',GradientType=0 );
}
#apparel-product-grid a:hover .footer,
#headwear-product-grid a:hover .footer {
  color: #00a1cb;
}
#apparel-product-grid a:hover .product,
#headwear-product-grid a:hover .product {
  background: #dcdcdc;
  background: -moz-linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f0f0f0), color-stop(100%, #dcdcdc));
  background: -webkit-linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  background: -o-linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  background: -ms-linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  background: linear-gradient(top, #f0f0f0 0, #dcdcdc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#dcdcdc',GradientType=0 );
}
/*
*
*
*
* CLUB TYPE SECONDARY
*
*
*
*
*/
.product-type-secondary-primary-promo, .product-type-secondary-col1-row1 {
  background-color: #333333;
}
#product-type-secondary-juniors-content h4, #product-type-secondary-ladies-content h4 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ababab;
  margin-bottom: 15px;
}
#product-type-secondary-juniors-content p, #product-type-secondary-ladies-content p {
  font: 13px/20px Arial, Tahoma, Verdana, sans-serif;
  color: #ababab;
  margin-bottom: 30px;
  line-height: 20px
}
#product-type-secondary-juniors-content table {
  table-layout: fixed;
  margin: 40px 0 40px 0;
}
#product-type-secondary-juniors-content table .headline {
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #929292;
}
#product-type-secondary-juniors-content table .divider {
  border-bottom: 1px solid #747474;
}
#product-type-secondary-juniors-content table td {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #d7d9db;
  width: 160px;
  padding: 10px;
  vertical-align: top;
}
/*
*
*
*
* COMPARE
*
*
*
*
*/
#compare-primary {
  margin: 40px 0;
  overflow: hidden;
  position: relative;
}
#compare-primary li {
  padding: 5px 0;
  line-height: 16px;
}
#compare-primary ul {
  padding: 10px 0 20px 0;
}
#compare-primary .compare-selector-holder {
  padding-bottom: 5px;
}
#compare-primary .compare-column-title {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #929292;
}
#compare-primary .compare-column-title a, #compare-primary .compare-column-title a:visited, #compare-primary .compare-column-title a:hover {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #929292;
}
#compare-primary #compare-images ul {
  padding: 0;
  margin: 0;
  margin-right: 8px;
}
#compare-primary #compare-images li {
  background-repeat: no-repeat;
  width: 180px;
  height: 170px;
}
#compare-primary #compare-names ul {
  padding: 0;
  margin: 0;
  margin-right: 8px;
}
#compare-primary #compare-clubface ul {
  padding: 0;
  margin: 0;
  margin-right: 8px;
}
#compare-primary .compare-categories {
  width: 160px !important;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #929292;
  text-transform: uppercase;
}
#compare-primary .compare-image {
  display: block;
  width: 180px;
  height: 180px;
  margin-top: -24px;
}
.compare-row {
  width: 940px;
  float: left;
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #ffffff;
  border-bottom: 1px solid #747474;
}
.compare-row ul {
  width: 180px;
  margin-right: 8px;
  display: inline;
  float: left;
}
.compare-row li {
  width: 180px;
}
.selector-row {
  width: 940px;
  float: left;
}
.close-button {
  position: relative;
  top: 2px;
  left: 150px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.close-button {
  background: url('../images/compare-close-button.png') 0 0 no-repeat;
}
.juniors .close-button {
  background: url('../images/compare-close-button.png') no-repeat;
}
.ladies .close-button {
  background: url('../images/compare-close-button.png') no-repeat;
}
.classics .close-button {
  background: url('../images/compare-close-button.png') no-repeat;
}
/*
*
* Styles for the  selecter  menu
*
*
*/
.menu-selector {
  width: 155px;
  margin: 0;
  padding: 0;
  position: relative;
}
.menu-selector li {
  padding: 0;
}
.menu-selector p, .menu-selector ul {
  padding: 0;
  z-index: 99;
}
.menu-selector a, .menu-selector a:visited {
  color: #868686;
  text-decoration: none;
  outline: none;
}
.menu-selector p a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #868686;
  background: #343434;
  display: block;
  cursor: pointer;
  padding: 4px;
}
.menu-selector ul {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #868686;
  background: #e9e9e9 none repeat scroll 0 0;
  display: none;
  width: 100%;
  list-style: none;
}
.menu-selector ul li a {
  padding: 4px 0 4px 5px;
  display: block;
}
.menu-selector ul li a:hover {
  background-color: #d2d2d2;
}
.compare-selector-cta span.arrow {
  display: inline-block;
  content: "";
  width: 5px;
  height: 12px;
  margin-left: 5px;
  background: url('../images/compare-selector-cta.png') no-repeat;
  vertical-align: middle;
}
.compare-selector-cta.active span.arrow {
  display: inline-block;
  content: "";
  width: 5px;
  height: 12px;
  margin-left: 5px;
  background-position: -7px 0;
  vertical-align: middle;
}
#detail-compare-selector {
  position: absolute;
  top: 20px;
  left: 465px;
  width: 235px;
  background-color: #00A1CB;
}
#detail-compare-selector a.cta-alt {
  padding-left: 10px;
  width: 225px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  line-height: 24px;
  display: block;
  cursor: pointer;
}
#detail-compare-selector ul ul {
  padding: 0;
  background: #E9E9E9;
}
#detail-compare-selector ul.dropdown li {
  margin: 0;
  padding: 0;
  height: 24px;
  cursor: pointer;
}
#detail-compare-selector ul.dropdown .sub_menu li {
  height: 24px;
  padding-top: 3px;
  background: #E9E9E9;
  cursor: pointer;
}
#detail-compare-selector ul.dropdown .sub_menu li:hover {
  background: #d2d2d2;
}
#detail-compare-selector ul.dropdown .sub_menu a {
  padding-left: 10px;
  height: 24px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #868686;
  display: block;
}
#detail-compare-selector {
  background-color: #00a1cb;
}
.ladies #detail-compare-selector {
  background-color: #009B99;
}
.classics #detail-compare-selector {
  background-color: #dd4400;
}
.juniors #detail-compare-selector {
  background-color: #ABB715;
}
#compare-selector, #compare-selector-secondary {
  position: absolute;
  top: 156px;
  left: 181px;
  width: 180px;
  background-color: #00A1CB;
}
#compare-selector a.cta-alt, #compare-selector-secondary a.cta-alt {
  padding-left: 10px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #000000;
  line-height: 24px;
  cursor: pointer;
  display: block;
}
#compare-selector ul, #compare-selector-secondary ul {
  padding: 0;
}
#compare-selector ul ul, #compare-selector-secondary ul ul {
  background: #E9E9E9;
}
#compare-selector ul.dropdown li, #compare-selector-secondary ul.dropdown li {
  margin: 0;
  padding: 0;
  height: 24px;
  cursor: pointer;
}
#compare-selector ul.dropdown .sub_menu li, #compare-selector-secondary ul.dropdown .sub_menu li {
  height: 24px;
  padding-top: 3px;
  background: #E9E9E9;
  cursor: pointer;
}
#compare-selector ul.dropdown .sub_menu li:hover, #compare-selector-secondary ul.dropdown .sub_menu li:hover {
  background: #d2d2d2;
}
#compare-selector ul.dropdown .sub_menu a, #compare-selector-secondary ul.dropdown .sub_menu a {
  padding-left: 10px;
  height: 24px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #868686;
  display: block;
}
.no-border {
  border: none;
}
#compare-selector p a.active {
  color: #ffffff;
  background-color: #00a1cb;
  background-position: 0 -21px;
}
.juniors #compare-selector p a.active {
  color: #ffffff;
  background-color: #ABB715;
}
.ladies #compare-selector p a.active {
  color: #ffffff;
  background-color: #009B99;
}
.classics #compare-selector p a.active {
  color: #ffffff;
  background-color: #dd4400;
}
/*
*
*
*
* BAG DETAIL
*
*
*
*
*/
.bag-detail-primary-promo {
  background-color: #333333;
  overflow: hidden;
}
#bag-detail-tabs #tabHeadings a {
  cursor: pointer;
}
#bag-detail-table table {
  margin-top: 30px;
}
#bag-detail-table table td {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #d7d9db;
  width: 180px;
  font-size: 13px;
  padding: 10px 0 10px 15px;
  vertical-align: top;
}
#bag-detail-table table td.col1 {
  width: 180px;
  padding-left: 0;
}
#bag-detail-table table td.headline {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #929292;
}
/*
*
*
*
* GEAR DETAIL
*
*
*
*
*/
.apparel-detail-primary-promo,
.gear-detail-primary-promo {
  background-color: #333333;
  overflow: hidden;
}
/*
*
*
*
* GLOVE DETAIL 
*
*
*
*
*/
.glove-detail-primary-promo {
  background-color: #333333;
  overflow: hidden;
}
#glove-detail-size-chart table {
  table-layout: fixed;
}
#glove-detail-size-chart table th {
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #929292;
  vertical-align: top;
  text-align: left;
  background-color: #333333;
}
#glove-detail-size-chart table td {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #00a1cb;
  width: 25px;
  font-size: 13px;
  text-align: center;
  vertical-align: top;
  padding: 3px 0;
}
#glove-detail-size-chart table .headline {
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #929292;
  vertical-align: top;
  text-align: left;
}
#glove-detail-size-chart table .glove-sizes td {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #929292;
}
#glove-detail-size-chart table .col3 {
  padding-left: 50px;
}
#glove-detail-size-chart table .col1 {
  width: 155px;
}
/*
*
*
*
* PUTTER DETAIL
*
*
*
*
*/
#putterfeature-module .product-selector-headline {
  clear: both;
  background-color: #ffffff;
}
#putterfeature-module .product-selector-items {
  clear: both;
  cursor: pointer;
  background-color: #c8c8c8;
  /*
  background: #c0c3c3;
  background: -moz-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #c0c3c3), color-stop(100%, #f2f4f4));
  background: -webkit-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: -o-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: -ms-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0c3c3', endColorstr='#f2f4f4',GradientType=0 );
  */
  
  /*background-color: #ffffff;*/
}
#putterfeature-module .product-selector li {
  border-right: 1px solid #e5e5e5;
}
#putterfeature-module #product-slider-container {
  background: url("../images/putter-detail-scroller-bg.jpg") no-repeat scroll 0 0 transparent;
  width: 940px;
}
.product-selector-arc-type {
  position: absolute;
  right: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  filter: alpha(opacity=0);
  opacity: 0;
}
.description-arc-type {
  float: right;
  margin-bottom: 10px;
}
#putterfeature-module .product-selector ul li {
  background: #c0c3c3;
  background: -moz-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #c0c3c3), color-stop(100%, #f2f4f4));
  background: -webkit-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: -o-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: -ms-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0c3c3', endColorstr='#f2f4f4',GradientType=0 );
}
#putterfeature-module .product-selector ul li:hover {
  background: #ececed;
  background: -moz-linear-gradient(top, #ececed 0, #a1d9ee 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ececed), color-stop(100%, #a1d9ee));
  background: -webkit-linear-gradient(top, #ececed 0, #a1d9ee 100%);
  background: -o-linear-gradient(top, #ececed 0, #a1d9ee 100%);
  background: -ms-linear-gradient(top, #ececed 0, #a1d9ee 100%);
  background: linear-gradient(top, #ececed 0, #a1d9ee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ececed', endColorstr='#a1d9ee',GradientType=0 );
}
#putterfeature-module .product-selector ul li:hover .product-selector-arc-type {
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  opacity: 1;
}
#putterfeature-module .product-selector .product-selector-title {
  background: #c0c3c3;
  background: -moz-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #c0c3c3), color-stop(100%, #f2f4f4));
  background: -webkit-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: -o-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: -ms-linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  background: linear-gradient(top, #c0c3c3 0, #f2f4f4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0c3c3', endColorstr='#f2f4f4',GradientType=0 );
}


/* product slider rollover features (i.e. sensor cool) for gear items*/
.product-selector ul li .rollover-product-feature {
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	filter: alpha(opacity=0);
	opacity: 0;
	position: absolute;
	right: 0;
}
.product-selector ul li:hover .rollover-product-feature {
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	filter: alpha(opacity=100);
	opacity: 1;
}
#apparel-detail-promo .product-visual .viewable img#feature-icon,
#gear-detail-promo .product-visual .viewable img#feature-icon {
	margin-top: 20px;
}




/*
*
*
*
* MEDIA STYLES
*
*
*
*
*/
#primary-media p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6c6c6c;
}
#primary-media .video-content {
  padding: 40px 40px 40px 0;
  width: 245px;
  height: 288px;
  float: left;
  overflow: hidden;
}
#primary-media .video-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 30px;
}
#primary-media .video-content h3 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #595858;
  padding-left: 30px;
}
#primary-media .video-content p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
  padding-left: 30px;
  margin-bottom: 30px;
}
#primary-media .video-content .description-cta {
  clear: both;
  background-color: #00a1cb;
  display: inline;
  padding: 6px 15px 6px 30px;
}
#primary-media .video-content .description-cta a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 20px;
}
#primary-media .interactive .video_wrap {
  float: right;
  width: 655px;
  height: 368px;
  display: none;
}
#primary-media .interactive .video_wrap.active {
  display: block;
}
#primary-media #additional-videos {
  width: 940px;
}
#primary-media #additional-videos ul li {
  width: 153px;
  height: 129px;
}
#primary-media #additional-videos ul li .media-title {
  width: 142px;
}
#secondary-media {
  margin-top: 50px;
  position: relative;
}
#secondary-media p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
}
#secondary-media .video-content {
  padding: 20px 30px 40px 0;
  width: 203px;
  height: 202px;
  float: left;
  overflow: hidden;
}
#secondary-media .video-content h3 {
  font-weight: 700;
  color: #595858;
  padding-left: 15px;
}
#secondary-media .video-content p {
  padding-left: 15px;
  margin-bottom: 20px;
  margin-top: 15px;
  font: 12px Arial, Tahoma, Verdana, sans-serif;
}
#secondary-media .video-content .description-cta {
  clear: both;
  background-color: #00a1cb;
  display: inline;
  padding: 6px 15px 6px 30px;
}
#secondary-media .video-content .description-cta a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  color: #ffffff;
  line-height: 20px;
}
#secondary-media .interactive .video_wrap {
  float: right;
  width: 465px;
  height: 260px;
  display: block;
}
#secondary-media .play-button {
    background: url(../images/play_button.png) no-repeat center center;
    width: 467px;
    height: 262px;
    position: absolute;
    top: 0;
    left: 230px;
}
#secondary-media #additional-videos {
  width: 700px;
}
#secondary-media #additional-videos ul li {
  height: 115px;
  width: 136px;
}
#secondary-media #additional-videos ul li .media-title {
  width: 122px;
}
#additional-videos {
  float: left;
  overflow: hidden;
}
#additional-videos p {
  background-color: #333333;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #868686;
  padding: 2px 0 2px 10px;
  margin: 0;
  text-transform: uppercase;
}
#additional-videos ul {
  display: block;
}
#additional-videos ul li {
  display: block;
  float: left;
  border: 2px solid #414141;
  position: relative;
  cursor: pointer;
}
#additional-videos ul li .media-title {
  height: 33px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #929292;
  padding: 5px 5px 0 10px;
  line-height: 14px;
}
#additional-videos ul li a, #additional-videos ul li a:visited {
  text-decoration: none;
  outline: none;
}
#additional-videos .media-title {
  background: #545454;
  background: -moz-linear-gradient(top, #545454 0, #393939 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #545454), color-stop(100%, #393939));
  background: -webkit-linear-gradient(top, #545454 0, #393939 100%);
  background: -o-linear-gradient(top, #545454 0, #393939 100%);
  background: -ms-linear-gradient(top, #545454 0, #393939 100%);
  background: linear-gradient(top, #545454 0, #393939 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#545454', endColorstr='#393939',GradientType=0 );
}
#additional-videos a:hover .media-title {
  color: #00a1cb;
}
.juniors #additional-videos a:hover .media-title {
  color: #ABB715;
}
.ladies #additional-videos a:hover .media-title {
  color: #009B99;
}
.classics #additional-videos a:hover .media-title {
  color: #dd4400;
}
.video-content {
  background: #cdcdcd;
  background: -moz-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #cdcdcd), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -o-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -ms-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdcdcd', endColorstr='#ffffff',GradientType=1 );
}

/* Video.js styles */
.vjs-default-skin { 
    color: #ffffff; 
}
.vjs-default-skin .vjs-play-progress,
.vjs-default-skin .vjs-volume-level { 
    background-color: #8a8a8a 
}
.vjs-default-skin .vjs-control-bar,
.vjs-default-skin .vjs-big-play-button { 
    background: rgba(13,13,13,0.7) 
}
.vjs-default-skin .vjs-slider { 
    background: rgba(13,13,13,0.2333333333333333) 
}

/* This will create a simple hover effect */
.interactive li img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: .6;
}
.interactive li a:hover img, .interactive li.active img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}
.interactive {
  background-color: #333333;
}
.sublime.zoom {
  display: none;
}
/* styles for sublime player play button overlay */
a.zoomable {
  display: block;
  width: 465px;
  height: 260px;
  position: relative;
}
a.zoomable span.zoom_icon {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/play_button.png) no-repeat center center;
  opacity: 1;
}
a.zoomable:hover span.zoom_icon {
  opacity: .6;
}
/*
*
*
*
* CUSTOM FITTING LANDING
*
*
*
*
*/
#fitting-process-primary p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6c6c6c;
}
#fitting-process-primary .fitting-process-primary-content {
  padding: 40px 40px 0 0;
  width: 245px;
  height: 380px;
  float: left;
  overflow: hidden;
}
#fitting-process-primary .fitting-process-primary-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 29px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 30px;
}
#fitting-process-primary .fitting-process-primary-content p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
  padding-left: 30px;
  margin-bottom: 30px;
}
#fitting-process-primary .fitting-process-primary-content .description-cta {
  clear: both;
  background-color: #00a1cb;
  height: 22px;
  text-align: right;
  padding: 3px 15px 3px 30px;
}
#fitting-process-primary .fitting-process-primary-content .description-cta a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  color: #ffffff;
  line-height: 20px;
}
#fitting-process-primary img {
  float: right;
  width: 655px;
  height: 420px;
}
.fitting-process-primary-content {
  background: #cdcdcd;
  background: -moz-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #cdcdcd), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -o-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -ms-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdcdcd', endColorstr='#ffffff',GradientType=1 );
}
#fitting-process-secondary {
  padding-left: 30px;
}
#fitting-process-secondary div, #fitting-process-secondary div + div {
  margin-bottom: 20px;
}
#fitting-process-secondary h4 a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #343434;
}
#fitting-process-secondary h4 a:hover {
  color: #00a1cb;
}
#fitting-process-secondary p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #343434;
}
#fitting-process-secondary span a {
  color: #00a1cb;
  padding-left: 7px;
}
/*
*
*
*
* CUSTOM FITTING DETAIL
*
*
*
*
*/
#custom-fitting-detail-primary p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6c6c6c;
}
#custom-fitting-detail-primary .custom-fitting-detail-content {
  padding: 40px 40px 0 0;
  width: 245px;
  height: 352px;
  float: left;
  overflow: hidden;
}
#custom-fitting-detail-primary .custom-fitting-detail-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 30px;
}
#custom-fitting-detail-primary .custom-fitting-detail-content h4 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #595858;
  padding-left: 30px;
}
#custom-fitting-detail-primary .custom-fitting-detail-content p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #595858;
  padding-left: 30px;
  margin-bottom: 30px;
}
#custom-fitting-detail-primary .custom-fitting-detail-content .description-cta {
  clear: both;
  background-color: #00a1cb;
  display: inline;
  padding: 6px 15px 6px 30px;
}
#custom-fitting-detail-primary .custom-fitting-detail-content .description-cta a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  color: #ffffff;
  line-height: 20px;
}
#custom-fitting-detail-primary img {
  float: right;
  width: 655px;
  height: 420px;
}
.custom-fitting-detail-content {
  background: #cdcdcd;
  background: -moz-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #cdcdcd), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -o-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -ms-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdcdcd', endColorstr='#ffffff',GradientType=1 );
}
#custom-fitting-detail-secondary {
  padding-left: 30px;
}
#custom-fitting-detail-secondary h4 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #343434;
  margin-bottom: 5px;
}
#custom-fitting-detail-secondary p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #343434;
  margin-bottom: 20px;
}
#custom-fitting-detail-secondary p + p {
  margin-bottom: 20px;
}
#custom-fitting-detail-secondary img {
  float: right;
  padding-left: 20px;
}
#custom-fitting-detail-secondary .pagination {
  text-align: left;
}
#custom-fitting-detail-aside {
  padding: 25px 0;
  background-color: #ffffff;
}
#custom-fitting-detail-aside #social-control ul {
  background-color: #ffffff;
  margin-bottom: 0;
  border-bottom: 1px solid #ABABAB;
  margin: 0 10px;
}
#custom-fitting-detail-aside .links-control-secondary {
  margin-bottom: 10px;
}
#custom-fitting-detail-aside #pdfs div {
  clear: both;
  margin: 0 10px;
  padding-bottom: 15px;
}
#custom-fitting-detail-aside #pdfs img {
  float: left;
  padding-right: 10px;
}
#custom-fitting-detail-aside #pdfs p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00a1cb;
}
#custom-fitting-detail-aside #pdfs a:hover p {
  color: #868686;
}
/*
*
*
*
* NEWS LANDING
*
*
*
*
*/
#news-landing-primary-widget img {
  display: block;
}
#news-landing-primary-widget div {
  height: 51px;
  background-color: #343434;
}
#news-landing-primary-widget a, #news-landing-primary-widget a:link, #news-landing-primary-widget a.visited {
  font-family: 'Droid Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #868686;
  padding: 13px 0 0 20px;
  display: block;
  line-height: 25px;
}
#news-landing-primary-widget a:hover {
  color: #00a1cb;
}
.news-secondary-promo {
  background-color: #ffffff;
  margin-bottom: 25px;
}
.news-secondary-promo p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  padding: 5px 15px;
  text-transform: uppercase;
}
.news-list {
  background-color: #ffffff;
  margin-bottom: 25px;
  padding: 10px 20px 0;
}
.news-list h3 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  padding: 15px 10px 12px 0;
}
.news-list .news-list-wrapper {
  /* edo 9/26/2012 : can't predetermine a specific height
  height: 474px;
  overflow: hidden;
  */
}
.news-list .news-list-wrapper a {
  outline: none;
}
.news-list .news-list-wrapper .timestamp {
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #5d5d5d;
}
.news-list li {
  padding: 10px 0;
  overflow: hidden;
}
.news-list h4 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00a1cb;
}
.news-list span {
  color: #00a1cb;
}
.news-list span {
  color: #00a1cb;
  padding-left: 5px;
}
.news-list p {
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  line-height: 13px;
  /*
  overflow: hidden;
  height: 40px;
  */
  color: #747474;
}
.news-list img {
  float: left;
  margin: 0 10px 5px 0;
}
.news-twitter-stream {
  margin-bottom: 25px;
  padding: 0 20px 15px;
  background-color: #ffffff;
}
.news-twitter-stream h3 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  padding: 15px 10px 12px 0;
}
.news-twitter-stream li {
  padding: 13px 2px 14px 2px;
}
.news-twitter-stream p {
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  line-height: 13px;
  overflow: hidden;
  height: 40px;
  color: #747474;
}
.news-twitter-stream span {
  color: #747474;
}
.news-twitter-stream .twitter-handle {
  color: #00a1cb;
}
.news-twitter-stream a, .news-twitter-stream a:link, .news-twitter-stream a:active {
  display: block;
  color: #00a1cb;
}
.news-twitter-stream .headline a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
}
.news-twitter-stream img {
  float: left;
  margin-right: 10px;
}
/*
*
*
*
* NEWS ARTICLE
*
*
*
*
*/
#news-article-primary-widget {
  height: 345px;
  background-color: #3e3e3e;
}
#news-article-primary-widget img {
  display: block;
}
#news-article-primary-widget .news-article-primary-promo {
  width: 624px;
  float: left;
  margin-right: 36px;
}
#news-article-primary-widget .news-article-secondary-promo {
  width: 280px;
  float: left;
}
#news-article-primary-widget .news-article-promo-headline {
  height: 51px;
  background-color: #343434;
}
#news-article-primary-widget .news-article-promo-headline p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ababab;
  margin: 0 18px;
  padding-top: 10px;
  line-height: 15px;
  text-transform: uppercase;
}
#news-article-gear {
  background-color: #414141;
}
#news-article-gear ul.dropdown {
  overflow-y: auto;
}
#news-article-gear ul.dropdown li {
  display: block;
  float: left;
  clear: both;
}
#news-article-gear ul.dropdown li a, #news-article-gear ul.dropdown li a:visited, #news-article-gear ul.dropdown li a:link {
  background-color: #00a1cb;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  height: 24px;
  line-height: 24px;
  padding-left: 10px;
}
#news-article-gear ul.dropdown li span {
  display: auto;
}
#news-article-gear ul.dropdown .sub_menu {
  position: absolute;
  z-index: 200;
  background: #E9E9E9;
}
#news-article-gear ul.dropdown .sub_menu li {
  display: block;
  padding-top: 2px;
  padding-right: 5px;
}
#news-article-gear ul.dropdown .sub_menu li a, #news-article-gear ul.dropdown .sub_menu li a:visited, #news-article-gear ul.dropdown .sub_menu li a:link {
  background-color: transparent;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #868686;
  width: 100%;
  outline: none;
}
#news-article-gear ul.dropdown .sub_menu li span {
  display: none;
}
#news-article-gear ul.dropdown .sub_menu li:hover {
  background: #d2d2d2;
}
#news-article-gear .product-selector {
  position: relative;
  overflow: hidden;
}
#news-article-gear .product-selector #product-slider-container {
  background: url("../images/productScrollerBG-full.jpg") no-repeat scroll 0 0 transparent;
  width: 940px;
}
.product-selector-details {
  display: none;
  z-index: 10;
  position: absolute;
  top: 23px;
  margin: 10px 16px 0;
}
.product-selector-details span {
  display: block;
  margin-bottom: 6px;
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #ababab;
}
.product-selector-details span strong {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ababab;
}
.news-article-copy h3 {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  margin-bottom: 10px;
  font-weight: bold;
}
.news-article-copy p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  margin-bottom: 10px;
}
.news-article-copy .links p {
  font-weight: 700;
}
.news-article-copy .links a {
    color: #00a1bc;
}
.headlines {
  background-color: #ffffff;
  padding: 10px 20px;
}
.headlines h3 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;  
  text-transform: uppercase;
}
.headlines li {
  padding: 10px 0;
}
.headlines span {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  display: block;
}
.headlines p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  line-height: 13px;
  overflow: hidden;
  color: #747474;
}
.headlines a, .headlines a:link, .headlines a:active {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #00a1cb;
  font-weight: bold;
}
.headlines .headlines-more {
  padding-top: 10px;
  text-align: right;
}
.headlines .headlines-more a, .headlines .headlines-more a:link, .headlines .headlines-more a:visited {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
  text-decoration: none;
  outline: none;
}
/*
*
*
*
* TOUR LISTING
*
*
*
*
*/
.tour-listing-col1 ul, .tour-listing-col2 ul, .tour-listing-col3 ul {
  background-color: #ffffff;
  margin-bottom: 40px;
  padding: 40px 15px 20px 15px;
}
.tour-listing-col1 ul li, .tour-listing-col2 ul li, .tour-listing-col3 ul li {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #868686;
  padding: 5px 10px 5px 5px;
}
.tour-listing-col1 ul li:first-child, .tour-listing-col2 ul li:first-child, .tour-listing-col3 ul li:first-child {
  font-family: 'Droid Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #868686;
}
.tour-listing-col1 a, .tour-listing-col2 a, .tour-listing-col3 a {
  color: #868686;
}
.tour-listing-col1 li:hover a, .tour-listing-col2 li:hover a, .tour-listing-col3 li:hover a {
  color: #00a1cb;
}
#tour-listing-slideshow .controls_container {
  background: url("../images/secondary-slider-end.png") no-repeat right transparent;
  bottom: 0;
  right: 30px;
}
#tour-listing-slideshow .slider-control {
  background: url("../images/secondary-slider-bg.png") no-repeat transparent;
}
#tour-listing-slideshow .slide .primary-slideshow-content {
  position: absolute;
  top: 150px;
  left: 630px;
  width: 240px;
  height: 200px;
  overflow: hidden;
}
#tour-listing-slideshow .slide .primary-slideshow-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #747474;
  z-index: 2;
  line-height: 36px;
}
#tour-listing-slideshow .slide .primary-slideshow-content p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #747474;
  z-index: 3;
}
#tour-listing-slideshow .slide .primary-slideshow-content div {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #747474;
  height: 21px;
  padding-right: 15px;
  z-index: 4;
  text-align: right;
}
/*
*
*
*
* TOUR PROS DETAIL
*
*
*
*
*/
#tour-pros-detail-primary {
  color: #595858;
}
#tour-pros-detail-primary .tour-pros-detail-primary-content {
  padding: 40px 30px;
  width: 225px;
  height: 340px;
  float: left;
  overflow: hidden;
}
#tour-pros-detail-primary .tour-pros-detail-primary-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 20px;
  line-height: 30px;
}
#tour-pros-detail-primary .tour-pros-detail-primary-content h5 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #595858;
}
#tour-pros-detail-primary .tour-pros-detail-primary-content table {
  margin-bottom: 25px;
  table-layout: fixed;
}
#tour-pros-detail-primary .tour-pros-detail-primary-content table td {
  width: 80px;
  padding: 0;
  font: 12px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
  font-weight: bold;
  vertical-align: top;
}
#tour-pros-detail-primary .tour-pros-detail-primary-content table td + td {
  padding-left: 15px;
  width: 120px;
  font-weight: normal;
}
#tour-pros-detail-primary img {
  float: right;
  width: 655px;
  height: 420px;
}
.tour-pros-detail-primary-content {
  background: #cdcdcd;
  background: -moz-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #cdcdcd), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -o-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -ms-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdcdcd', endColorstr='#ffffff',GradientType=1 );
}
#tour-pros-listing h2 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #868686;
  margin-bottom: 10px;
}
#tour-pros-listing ul {
  width: 200px;
  float: left;
  border-top: 1px solid #ABABAB;
}
#tour-pros-listing li {
  padding: 7px 10px 7px 0;
}
#tour-pros-listing li, #tour-pros-listing li a, #tour-pros-listing .cta {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #868686;
}
#tour-pros-listing li:hover a {
  color: #00a1cb;
}
#tour-pros-listing .tour-pros-col1 {
  margin-right: 10px;
}
#tour-pros-listing .tour-pros-col3 {
  margin-left: 10px;
}
#tour-pros-listing .cta {
  float: right;
  margin-top: 15px;
  clear: both;
}
#tour-pros-listing .cta:hover {
  color: #00a1cb;
}
/*
*
*
*
* GOOGLE MAP
*
*
*
*
*/
#map-locations {
  margin-top:20px;
  overflow:hidden;
  width:100%;
}
#map-locations .account, #map-locations address a {
  font-family: 'Droid Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #00a1cb;
}
#map-locations address a {
  font-size:12px;
}
#map-locations div#notes {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  margin: 15px;
}
#map-locations div#notes.alert {
  color: #A11B1E;
  font-style: italic;
}
#map-locations .pagination {
  clear: both;
  margin-left: 15px;
  text-align:left;
  text-transform:uppercase;
}
#map-form {
  height: 30px;
  margin-bottom: 10px;
}
#map-form #search-button {
	background-color: #00A1CB;
	display: inline;
	padding: 3px 15px;
	text-transform:uppercase;
}
#map-form #search-button a {
	color: white;
	font-family: 'Droid Sans', sans-serif;
	font-size: 13px;
	font-weight: 700;
}
#map-form input[type="text"] {
  background-color: #FFF;
  width: 400px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #747474;
  padding-left: 5px;
}
#map-locations address {
  width: 265px;
  padding: 10px;
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
  display: inline-block;
}
#map-locations comments {
  font-style: italic;
}
#map-locations contact {
  font-weight: 700;
}
#map-locations .page-number {
	padding: 0 1px;
}
#map-locations a:hover {
	color: #00A1CB;
}
#progress-bar {
	display:inline-block;
	float:left;
	height:38px;
	width:129px;
	margin:0 0 0 -10px;
	background:url(../images/nFlightWeb/ajax-loader.gif) no-repeat 0 -78px;
	padding:0 0 0 10px;
	position:relative;
	z-index:1000;
}
#map-locations #demodays,
#map-locations #retailers {
	background-color: #fff;
	margin-bottom: 10px;
	padding-bottom: 10px;
	overflow: hidden;
}
#map-locations #retailers li {
  float: left;
  width: 100%;
}
#map-locations #retailers .retailer {
	margin: 0 10px;
	border-bottom: 1px solid #ABABAB;
    display: table;
}
#map-locations retailer-icons {
	width: 350px;
    float: right;
}
    #map-locations retailer-icons img {
	    width: 60px;
        margin: 5px 5px 0 5px;
    }
#map-locations #demodays li {
  float: left;
  width: 305px;
}
#map-locations #demodays .comments {
    font-style: italic;
    color: #900;
    font-weight: 700;
}
#map-legend, #tools-legend {
  background-color: #ffffff;
  margin-bottom: 20px;
}
#map-locations h3, #map-legend h3, #tools-legend h3 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #747474;
  margin: 10px;
  padding-top: 10px;
  text-transform:uppercase;
}
#map-legend ul, #tools-legend ul {
  padding-left: -10px;
  margin: 5px  10px 0 10px;
  padding-bottom: 15px;
  border-top: 1px solid #ABABAB;
  overflow: auto;
}
#map-legend li, #tools-legend li {
  width: 70px;
  height: 90px;
  float: left;
  padding: 15px 0 0 5px;
}
#map-legend img {
  padding-left: 27px;
}
#tools-legend img {
  padding-left: 15px;
}
#map-legend p, #tools-legend p {
  text-align: center;
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #747474;
}
#map-legend-tooltip {
	z-index: 100;
	position: absolute;
	background-color: white;
	width: 175px;
	border: 1px solid #aaa;
	padding: 10px;
	font-size: 12px;
}
#map-legend-tooltip .title {
	font-family: "Droid Sans", sans-serif;
	font-weight: 700;
    font-size: 14px;
	color: #00A1CB;
}
.info-window.demoday div.account,
.info-window.retailer div.account {
	font-family: "Droid Sans", sans-serif;
	font-weight: 400;
	font-weight: 700;
	font-size: 14px;
    color: #00A1CB;
}
.info-window.demoday div.date {
	font-weight: 700;
	font-size: 15px;
    color: #000;
}
.info-window.demoday div.contact,
.info-window.retailer div.contact {
	font-style: italic;
}
.info-window.demoday div.comments {
	font-style: italic;
    margin: 5px 5px 10px 0;
	color: #000;
	font-weight: 700;
}
.info-window .fitting-tools {
	margin-top:10px;
}
img[src*="iws3.png"] {
	display: none; /* hide info window shadow */
}
#error-message {
	display: none;
	margin-top: 5px;
	background-color: #EBB;
	padding-left: 10px;
	font-style: italic;
}
#info-message {
	display: none;
	margin-top: 5px;
	background-color: #E4E411;
	padding-left: 10px;
	font-style: italic;
}
#info-message .zoom-level {
	font-weight: 700;
	margin-right: 15px;
}
/*
*
*
*
* SEARCH RESULTS
*
*
*
*
*/
#search-results {
  color: #343434;
}
#search-results h2 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #343434;
  margin-bottom: 15px;
}
#search-results h4 {
  font-size: 11px;
  margin-bottom: 15px;
}
#search-results ul li {
  margin-bottom: 10px;
}
#search-results ul li h5 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #00a1cb;
}
#search-results ul li a {
  color: #00a1cb;
}
#search-results .results {
  float: left;
  margin-top: 30px;
}
#search-results .results a {
  color: #00a1cb;
  padding: 0 3px;
}
#search-results .results a:hover {
  color: #747474;
}
#search-results .pagination {
  margin-top: 30px;
  float: right;
  padding: 0;
}
.popular-searches-headline {
  font-family: 'Droid Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #747474;
}
/* edo: a copy of the history slideshow */
#basic-slideshow {
  position: relative;
  height: 392px;
  margin-bottom: 0;
  background: #cdcdcd;
  background: -moz-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #cdcdcd), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -o-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -ms-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdcdcd', endColorstr='#ffffff',GradientType=1 );
}
#basic-slideshow p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6c6c6c;
}
#basic-slideshow .basic-primary-content {
  padding: 40px 40px 0 0;
  width: 245px;
  float: left;
  overflow: hidden;
}
#basic-slideshow .basic-primary-content > span {
  font-family: 'Droid Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #595858;
  display: block;
  line-height: 16px;
  margin-left: 30px;
}
#basic-slideshow .basic-primary-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 20px;
  line-height: 30px;
  margin-left: 30px;
}
#basic-slideshow .basic-primary-content p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
  margin-left: 30px;
}
#basic-slideshow .basic-primary-content .description-cta {
  background-color: #00A1CB;
  clear: both;
  height: 22px;
  padding: 3px 15px 3px 30px;
  text-align: right;
  display: inline-block;
  margin-top: 20px;
}
#basic-slideshow .basic-primary-content .description-cta a {
  color: #FFFFFF;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}
#basic-slideshow .secondary-slideshow {
  position: relative;
}
#basic-slideshow .secondary-slideshow .slide {
  height: 392px;
}
#basic-slideshow .secondary-slideshow .slide .slide-content {
  display: none;
}
#basic-slideshow .slideshow-control {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 68px;
  height: 34px;
  background: url("../images/slideshow-control-bg.png") repeat;
}
#basic-slideshow .slideshow-control a {
  display: block;
  float: right;
  width: 34px;
  height: 34px;
}
#basic-slideshow .slideshow-control a div {
  height: 12px;
  width: 10px;
  margin: 11px 0 0 12px;
}

#history-slideshow {
  position: relative;
  height: 417px;
  margin-bottom: 4px;
  background: #cdcdcd;
  background: -moz-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #cdcdcd), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -o-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: -ms-linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  background: linear-gradient(left, #cdcdcd 0, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cdcdcd', endColorstr='#ffffff',GradientType=1 );
}
#history-slideshow p {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #6c6c6c;
}
#history-slideshow .history-primary-content {
  padding: 40px 40px 0 0; /* edo was 40px 40px 40px 0 */
  width: 245px;
  float: left;
  overflow: hidden;
}
#history-slideshow .history-primary-content > span {
  font-family: 'Droid Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #595858;
  display: block;
  line-height: 16px;
  margin-left: 30px;
}
#history-slideshow .history-primary-content h1 {
  font-family: 'Droid Sans', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #595858;
  margin-bottom: 20px;
  line-height: 30px;
  margin-left: 30px;
}
#history-slideshow .history-primary-content p {
  font: 13px Arial, Tahoma, Verdana, sans-serif;
  color: #595858;
  margin-bottom: 30px;
  margin-left: 30px;
}
#history-slideshow .history-primary-content .description-cta {
  background-color: #00A1CB;
  clear: both;
  height: 22px;
  padding: 3px 15px 3px 30px;
  text-align: right;
  display: inline-block;
}
#history-slideshow .history-primary-content .description-cta a {
  color: #FFFFFF;
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}
#history-slideshow .secondary-slideshow {
  position: relative;
}
#history-slideshow .secondary-slideshow .slide {
  height: 392px;
}
#history-slideshow .secondary-slideshow .slide .slide-content {
  display: none;
}
#history-slideshow .slideshow-control {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 68px;
  height: 34px;
  background: url("../images/slideshow-control-bg.png") repeat;
}
#history-slideshow .slideshow-control a {
  display: block;
  float: right;
  width: 34px;
  height: 34px;
}
#history-slideshow .slideshow-control a div {
  height: 12px;
  width: 10px;
  margin: 11px 0 0 12px;
}
#history-slideshow .slideshow-control .prev div {
  background: url("../images/slideshow-control-icons.png") no-repeat 0 0;
}
#history-slideshow .slideshow-control .next div {
  background: url("../images/slideshow-control-icons.png") no-repeat -20px 0;
}
#history-slideshow .decade-selector {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 25px;
  z-index: 300;
  overflow: hidden;
  background: #cdcdcd;
  background: -moz-linear-gradient(top, #313131 0, #212121 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #313131), color-stop(100%, #212121));
  background: -webkit-linear-gradient(top, #313131 0, #212121 100%);
  background: -o-linear-gradient(top, #313131 0, #212121 100%);
  background: -ms-linear-gradient(top, #313131 0, #212121 100%);
  background: linear-gradient(top, #313131 0, #212121 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#313131', endColorstr='#212121',GradientType=0 );
}
#history-slideshow .decade-selector li {
  float: left;
  width: 107px;
  border: 1px solid #232323;
}
#history-slideshow .decade-selector a, #history-slideshow .decade-selector a:visited, #history-slideshow .decade-selector a:link {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #929292;
  height: 20px;
  padding-top: 3px;
  outline: none;
  display: block;
  text-align: center;
}
#history-slideshow .decade-selector a:hover {
  color: #00a1cb;
  background: -moz-linear-gradient(top, #212121 0, #313131 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #212121), color-stop(100%, #313131));
  background: -webkit-linear-gradient(top, #212121 0, #313131 100%);
  background: -o-linear-gradient(top, #212121 0, #313131 100%);
  background: -ms-linear-gradient(top, #212121 0, #313131 100%);
  background: linear-gradient(top, #212121 0, #313131 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#212121', endColorstr='#313131',GradientType=0 );
}
#history-slideshow .decade-selector a.active,
#history-slideshow .decade-selector a:hover.active,
#history-slideshow .decade-selector a:visited.active,
#history-slideshow .decade-selector a:link.active {
  color: #00a1cb;
  background: -moz-linear-gradient(top, #212121 0, #313131 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #212121), color-stop(100%, #313131));
  background: -webkit-linear-gradient(top, #212121 0, #313131 100%);
  background: -o-linear-gradient(top, #212121 0, #313131 100%);
  background: -ms-linear-gradient(top, #212121 0, #313131 100%);
  background: linear-gradient(top, #212121 0, #313131 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#212121', endColorstr='#313131',GradientType=0 );
}
#history-videos .product-selector-title {
  display: block;
  height: 41px;
  width: 157px;
}
/*
*
* SITE STRUCTURES
*
*
*/
.site-content-primary, .site-content-secondary {
  width: 940px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.no-bottom-padding {
  padding-bottom: 0;
}
.content-wrapper, .content-wrapper-narrow {
  width: 100%;
  min-height: 500px;
  margin: 0 auto;
  background-color: #e9e9e9;
}
.content-wrapper-narrow {
  width: 940px;
}
.site-content-primary-alt {
  width: 940px;
  margin: 0 auto;
}
#ob-left {
    position: fixed;
    margin: 0 -150px;
    width: 150px;
    height: 800px;
    background: url('../uploadedImages/Inside_PING/2014/hot_list_left.png') no-repeat;
}
#ob-right {
    position: fixed;
    margin: 0 968px;
    width: 150px;
    height: 800px;
    background: url('../uploadedImages/Inside_PING/2014/hot_list_left.png') no-repeat;
}
/* edo: styles for lists */
div.body-copy ol li {   
	list-style: decimal;
	margin: 12px 0;
} 
div.body-copy ul li {   
	list-style: disc;
} 
div.body-copy ol, div.body-copy ul {
	padding: 0 0 0 20px;
} 

.homepage-primary-promo,
.homepage-col1-row1,
.homepage-col2-row1,
.homepage-col3-row1,
.homepage-col1-row2,
.section-home-primary-promo,
.section-home-col1-row1,
.section-home-col2-row1,
.section-home-col3-row1,
.product-type-primary-promo,
.product-type-primary-col1-row1,
.product-type-primary-col1-row2,
.product-type-secondary-primary-promo,
.product-type-secondary-col1-row1,
.product-type-secondary-col1-row2,
.product-type-secondary-col2-row2,
.club-detail-primary-promo,
.club-detail-primary-col1,
.club-detail-primary-col2,
.club-detail-secondary-primary-promo,
.club-detail-secondary-col1-row1,
.club-detail-secondary-col1-row2,
.bag-detail-primary-promo,
.bag-detail-col1-row1,
.bag-detail-col1-row2,
.apparel-detail-primary-promo,
.apparel-detail-col1-row1,
.gear-detail-primary-promo,
.gear-detail-col1-row1,
.tour-pros-detail-primary-promo,
.tour-pros-detail-col1-row1,
.tour-pros-detail-col1-row2,
.tour-pros-detail-col2-row2,
.glove-detail-primary-promo,
.glove-detail-col1-row1,
.glove-detail-col1-row2,
.glove-detail-col2-row2,
.putter-detail-primary-promo,
.putter-detail-col1,
.putter-detail-col2,
.video-primary-promo,
.custom-fitting-landing-primary-promo,
.custom-fitting-landing-col1,
.custom-fitting-detail-primary-promo,
.custom-fitting-detail-col1,
.custom-fitting-detail-col2,
.about-template-primary-promo,
.about-template-col1,
.about-template-col2,
.apparel-page-primary-promo,
.apparel-page-col1,
.apparel-page-col2,
.contact-page-primary-promo,
.contact-page-col1,
.contact-page-col2,
.legal-template-col1,
.legal-template-col2,
.tour-listing-primary-promo,
.tour-listing-col1,
.tour-listing-col2,
.tour-listing-col3,
.map-primary-promo,
.map-col1,
.map-col2,
.news-landing-primary-promo,
.news-landing-col1,
.news-landing-col2,
.news-article-primary-promo,
.news-article-col1,
.news-article-col2,
.search-results-col1,
.search-results-col2,
.history-primary-promo {
  float: left;
  overflow: hidden;
  position: relative;
}
/* Structure styles for the homepage
----------------------------------------*/
.homepage-primary-promo {
  width: 940px;
  height: 356px;
  margin-bottom: 15px;
}
.homepage-col1-row1 {
  margin: 0 15px 15px 0;
  width: 400px;
  height: 290px;
}
.homepage-col2-row1 {
  margin: 0 15px 15px 15px;
  width: 240px;
  height: 215px;
}
.homepage-col3-row1 {
  margin: 0 0 15px 15px;
  width: 240px;
  height: 215px;
}
.homepage-col2-row2 {
  float: right;
  margin: 15px 0 0 15px;
  width: 510px;
  height: 241px;
  position: relative;
  overflow: hidden;
}
.homepage-col1-row2 {
  margin: 15px 15px 0 0;
  width: 400px;
  height: 165px;
}
/* Structure styles for section homes
----------------------------------------*/
.section-home-primary-promo {
  width: 940px;
  height: 345px;
  margin-bottom: 15px;
}
.section-home-col1-row1 {
  width: 400px;
  height: 215px;
  margin: 0 15px 0 0;
}
.section-home-col1-row1.equal-thirds {
  width: 300px;
  height: 215px;
  margin: 0 20px 0 0;
}
.section-home-col2-row1 {
  width: 240px;
  height: 215px;
  margin: 0 15px 0 15px;
}
.section-home-col2-row1.equal-thirds {
  width: 300px;
  height: 215px;
  margin: 0;
}
.section-home-col3-row1 {
  width: 240px;
  height: 215px;
  margin: 0 0 0 15px;
}
.section-home-col3-row1.equal-thirds {
  width: 300px;
  height: 215px;
  margin: 0 0 0 20px;
}
/* Structure styles for club type primarys
----------------------------------------------*/
.product-type-primary-promo {
  width: 940px;
  height: 345px;
}
.product-type-primary-col1-row1 {
  width: 940px;
}
.product-type-primary-col1-row2 {
  width: 940px;
  margin-top: 30px;
}
/* Structure styles for club type secondary
---------------------------------------------*/
.product-type-secondary-primary-promo {
  width: 940px;
  height: 345px;
}
.product-type-secondary-col1-row1 {
  width: 940px;
}
.product-type-secondary-col1-row2 {
  width: 700px;
  margin: 40px 10px 0 0 ;
}
.product-type-secondary-col2-row2 {
  width: 220px;
  margin: 40px 0 0 10px;
}
/* Structure styles for club detail pages
---------------------------------------------*/
.club-detail-primary-promo {
  width: 940px;
  height: 420px;
  margin-bottom: 15px;
}
.club-detail-primary-col1 {
  width: 700px;
  margin: 10px 10px 0 0;
}
.club-detail-primary-col2 {
  width: 220px;
  margin: 0 0 0 10px;
}
/* Structure styles for club detail secondary pages
-----------------------------------------------------*/
.club-detail-secondary-primary-promo {
  width: 940px;
  height: 420px;
}
.club-detail-secondary-col1-row1 {
  width: 940px;
}
.club-detail-secondary-col1-row2 {
  width: 700px;
  margin-top: 40px;
}
/* Structure styles for bag detail
----------------------------------------*/
.bag-detail-primary-promo {
  width: 940px;
  height: 420px;
  margin-bottom: 15px;
}
.bag-detail-col1-row1 {
  width: 940px;
  margin-bottom: 50px;
  margin-top: 30px;
}
.bag-detail-col1-row2 {
  width: 940px;
}
/* Structure styles for gear detail
----------------------------------------*/
.apparel-detail-primary-promo,
.gear-detail-primary-promo {
  width: 940px;
  height: 420px;
}
.apparel-detail-col1-row1,
.gear-detail-col1-row1 {
  width: 940px;
}
/* Structure styles for bag detail
----------------------------------------*/
.glove-detail-primary-promo {
  width: 940px;
  height: 420px;
}
.glove-detail-col1-row1 {
  width: 940px;
  margin-bottom: 50px;
}
.glove-detail-col1-row2 {
  width: 700px;
  margin-right: 10px;
}
.glove-detail-col2-row2 {
  width: 220px;
  margin-left: 10px;
}
/* Structure styles for putter detail
----------------------------------------*/
.putter-detail-primary-promo {
  width: 940px;
  margin-bottom: 25px;
}
.putter-detail-col1 {
  width: 700px;
  margin: 10px 10px 0 0 ;
}
.putter-detail-col2 {
  width: 220px;
  margin-left: 10px;
}
/* Structure styles for the news landing
----------------------------------------*/
.news-landing-primary-promo {
  width: 940px;
}
.news-landing-col1 {
  width: 400px;
  margin: 40px 15px 0 0 ;
}
.news-landing-col2 {
  width: 510px;
  margin-left: 15px;
}
/* Structure styles for the news article
----------------------------------------*/
.news-article-primary-promo {
  width: 940px;
}
.news-article-col1 {
  width: 590px;
  margin: 40px 30px 0 0 ;
}
.news-article-col2 {
  width: 280px;
  margin-left: 40px;
}
/* Structure styles for the video page
-------------------------------------------*/
.video-primary-promo {
  width: 940px;
}
/* Structure styles for the custom fitting landing page
---------------------------------------------------------*/
.custom-fitting-landing-primary-promo {
  width: 940px;
  height: 420px;
}
.custom-fitting-landing-col1 {
  width: 495px;
  margin-right: 30px;
  margin-top: 40px;
}
/* Structure styles for the custom fitting detail page
---------------------------------------------------------*/
.custom-fitting-detail-primary-promo {
  width: 940px;
  height: 420px;
}
.custom-fitting-detail-col1 {
  width: 590px;
  margin-top: 40px;
  margin-right: 30px;
}
.custom-fitting-detail-col2 {
  width: 280px;
  margin-left: 10px;
}
/* Structure styles for tour listing
---------------------------------------------------------*/
.tour-listing-primary-promo {
  width: 940px;
  height: 345px;
}
.tour-listing-col1 {
  width: 290px;
  margin-right: 17px;
}
.tour-listing-col2 {
  width: 292px;
  margin: 0 17px;
}
.tour-listing-col3 {
  width: 290px;
  margin-left: 17px;
}
/* Structure styles for the tour pros detail
---------------------------------------------------------*/
.tour-pros-detail-primary-promo {
  width: 940px;
  height: 420px;
}
.tour-pros-detail-col1-row1 {
  width: 940px;
}
.tour-pros-detail-col1-row2 {
  width: 620px;
  margin-top: 40px;
  margin-right: 30px;
}
.tour-pros-detail-col2-row2 {
  width: 280px;
  margin-left: 10px;
}

/* Structure styles for the map page
edo: added 5px left padding to col2 li, requiring col2 to be 15px wider
edo: made col1 15px narrower to accomodate wider col2
---------------------------------------------------------*/
.map-primary-promo {
  width: 940px;
  height: 420px;
}
.map-primary-promo.apparel {
    height: 550px;
}
.map-col1 {
  width: 655px;
  margin-top: 40px;
  margin-right: 15px;
}
.apparel .map-col1 {
    width: 940px;
}
.map-col2 {
  width: 255px;
  margin-top: 40px;
  margin-left: 15px;
}

.map-col1 .disabled, .map-col2 .disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
  opacity: 0.5;
  cursor: default;
  zoom: 1;
}

/* Structure styles for the ABOUT page template
---------------------------------------------*/
.about-template-primary-promo {
  width: 940px;
  height: 392px;
}
.about-template-col1 {
  width: 680px;
  margin-top: 40px;
  margin-right: 30px;
}
.about-template-col2 {
  width: 220px;
  margin-top: 40px;
  margin-left: 10px;
}
/* styles for the CAREERS page
---------------------------------------------*/
.careers #intro {
  border-bottom: 1px solid #747474;
  padding-bottom: 10px;
}
.careers .requirements {
   margin : 10px;
}
.career {
  border-bottom: 1px solid #747474;
  padding-bottom : 20px;
  margin-top : 20px;
}
.requirements ul li {
  margin: 0 0 0 10px;
  color: #747474;
  list-style-type: disc;
  list-style-position: inside;
}
.careers #conclusion {
  margin-top: 20px;
}
/* Structure styles for the CONTACT US page
---------------------------------------------*/
.apparel-page-primary-promo,
.contact-page-primary-promo {
  width: 940px;
  height: 295px;
}
.apparel-page-col1,
.contact-page-col1 {
  width: 680px;
  margin-top: 40px;
  margin-right: 30px;
}
.apparel-page-col2,
.contact-page-col2 {
  width: 220px;
  margin-top: 40px;
  margin-left: 10px;
}
/* Structure styles for the search results
---------------------------------------------*/
.search-results-col1 {
  width: 590px;
  margin-top: 40px;
  margin-right: 30px;
}
.search-results-col2 {
  width: 280px;
  margin-left: 10px;
}

/* Structure styles for the error results
---------------------------------------------*/
.error-template-col1 {
  min-height: 500px;
  width: 940px;
  margin: 0 auto;
  color: #e9e9e9;
}
.error-template-col1 #header {
  margin-bottom: 30px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

/* Structure styles for the history page
-------------------------------------------*/
.history-primary-promo {
  width: 940px;
}
.no-title .ui-dialog-titlebar {
    display:none;
}
.ui-dialog.ui-widget {
    z-index: 1000;
}
/*
*
* FOOTER AREA
*
*
*/
footer {
  width: 100%;
  border-top: 1px solid #747474;
}
#footer-content {
  width: 940px;
  min-height: 150px;
  margin: 0 auto;
  margin-top: 15px;
}
#footer-left {
  width: 550px;
  float: left;
}
#footer-right {
  float: right;
  position: relative;
}
#footer-right div {
  float: left;
}
#footer-social-icons a {
  display: block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  cursor: pointer;
  background-color: #747474;
}
#footer-social-icons li {
  float: left;
  margin-right: 10px;
}
#footer-social-icons a:hover {
  background-color: #00a1cb;
}
#footer-copyright p {
  margin: 5px;
  padding-right: 15px;
  font-family: 'Droid Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #747474;
}
#footer-utility-nav {
  margin: 5px;
}
#footer-utility-nav li {
  float: left;
}
#footer-copyright a:link, #footer-copyright a:visited, #footer-copyright a:active {
  color: #747474;
}
#footer-country-selector {
  width: 155px;
  margin-right: 25px;
  cursor: pointer;
  z-index: 100;
}
    #footer-country-selector ul {
      position: absolute;
      bottom: 26px;
    }
.submit-country[type="submit"] {
  background: #343434 url("../images/country-select-arrow.png") no-repeat;
  border: none;
}
.country-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 26px;
  text-indent: -9999px;
  width: 21px;
}
/* =============================================================================
   EU Cookie compliance KendoUI styles
   ========================================================================== */
#eu-cookie-compliance {
  font-family: 'Droid Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #DDD;
  padding: 20px;
}
    #eu-cookie-compliance.k-content {
        background-color: #232323;
    }
    #eu-cookie-compliance p {
	    margin-top: 10px;
	    font-size: 13px;
    }
    #eu-cookie-compliance h3 {
	    margin-top: 10px;
    }
    #eu-cookie-compliance a {
    cursor: pointer;
    }
    #eu-cookie-compliance select {
	    background: #444;
	    color: #868686;
	    padding: 5px;
	    font-family: 'Droid Sans', sans-serif;
	    font-size: 12px;
	    font-weight: 700;
	    border: 1px solid #555;
    }
    #eu-cookie-compliance .cookies-disabled > div,
    #eu-cookie-compliance .select-region div.centered {
        margin-top: 20px;
    }
#select-region-btn, .accept-cookies-button {
	border: none;
	margin: 5px;
	color: #009BC0;
	font-weight: 700;
	background: #EEE;
	padding: 5px;
}
#eu-cookie-compliance .accept-cookies-button {
	font-size: large;
	display: block;
	margin: 30px auto;
}
#eu-cookie-compliance .ping-logo {
	margin: 10px 0 20px 0;
}
#eu-cookie-compliance #last-modified {
	font-style: italic;
	font-weight: normal;
	font-size: smaller;
}
#eu-cookie-compliance #cookie-list {
    margin: 10px;
}
    #eu-cookie-compliance #cookie-list li {
        margin-bottom: 7px;
        line-height: 15px;
    }
    #eu-cookie-compliance #cookie-list, #cookie-details {
	    margin: 20px;
	    color: #EEE;
        line-height: 13px;
    }
    #eu-cookie-compliance #cookie-details a {
	    text-decoration: underline;
        font-size: 13px;
        font-weight: 400;
        font-style: italic;
        margin-left: -20px;
        color: #00a1cb;
    }
    #eu-cookie-compliance .cookie-name {
	    font-style: italic;
	    font-size: larger;
        padding: 0 3px 0 0;
    }

/* =============================================================================
   Non-semantic helper classes
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
.ir br {
  display: none;
}
/* 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: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}
/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/
/* http://sonspring.com/journal/clearing-floats */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */
.clearfix:before,
.clearfix:after,
header:before,
header:after,
.site-content-primary:before,
.site-content-primary:after,
.site-content-secondary:before,
.site-content-secondary:after,
.site-content-primary-alt:before,
.site-content-primary-alt:after,
footer:before,
footer:after {
  content: '.';
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}
.clearfix:after,
header:after,
.site-content-primary:after,
.site-content-secondary:after,
.site-content-primary-alt:after {
  clear: both;
}
/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/
.clearfix,
header,
.site-content-primary,
.site-content-secondary,
.site-content-primary-alt,
footer {
  zoom: 1;
}
/* =============================================================================
   PLACEHOLDER Media Queries for Responsive Design.
   These override the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 480px) {
  /* Style adjustments for viewports 480px and over go here */
}
@media only screen and (min-width: 768px) {
  /* Style adjustments for viewports 768px and over go here */
}
/* =============================================================================
   Print styles.
   Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  * {
	background: transparent !important;
	color: black !important;
	text-shadow: none !important;
	filter: none !important;
	-ms-filter: none !important;
  }
  /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited {
	color: #444 !important;
	text-decoration: underline;
  }
  a[href]:after {
	content: " (" attr(href) ")";
  }
  abbr[title]:after {
	content: " (" attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
	content: "";
  }
  /* Don't show links for images, or javascript/internal links */
  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;
  }
  img {
	max-width: 100% !important;
  }
  @page  {
	margin: 0.5cm;
  }
  p, h2, h3 {
	orphans: 3;
	widows: 3;
  }
  h2, h3 {
	page-break-after: avoid;
  }
}
