/* SHORTCODES */
/* Product Top Image */

.producttopimage
{
	width: 100%;
	margin: 0px auto 0px auto;

	position: relative;
	
	background-position:center;
	background-repeat: no-repeat;
}

.producttopimage .producttopimagecontent
{
	width: 950px;
	height: auto;
	margin: 0px auto 0px auto;
	position: relative;
}

.producttopimage .row-wrapper
{
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Top Image Buttons */

.product_top_image_button
{
	-webkit-transition:box-shadow 0.5s;
    transition:box-shadow 0.5s;
   
    position: absolute;
	display:block;
	
	border: 1px solid rgba(0,0,0,0.3);
	border-radius: 8px;
	line-height: 120%;
	
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#efefef 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#efefef 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efefef',GradientType=0 ); /* IE6-9 */
	
	-moz-box-shadow:    1px 1px 4px -1px rgba(0,0,0,0.25);
	-webkit-box-shadow: 1px 1px 4px -1px rgba(0,0,0,0.25);
	box-shadow:         1px 1px 4px -1px rgba(0,0,0,0.25);
	
	width: 240px;

	color: #000;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;

	padding-top: 6px;
	padding-bottom: 6px;
	
	cursor: pointer;
}

.product_top_image_button:hover
{
	-webkit-transition:box-shadow 0.5s;
    transition:box-shadow 0.5s;
   
   -moz-box-shadow:    1px 1px 4px -1px rgba(0,0,0,0.75);
   -webkit-box-shadow: 1px 1px 4px -1px rgba(0,0,0,0.75);
   box-shadow:         1px 1px 4px -1px rgba(0,0,0,0.75);
}

.product_top_image_button .product_top_image_button_icon
{
	-webkit-transition:all 1.5s;
    transition:all 1.5s;
   
    float: left;
	margin-left: 10px;
	margin-top: 5px;
	
	opacity: 0.5;
}

.product_top_image_button:hover .product_top_image_button_icon
{
	-webkit-transition:all 1.5s;
    transition:all 1.5s;

	opacity: 1.0;
}

.product_top_image_button .subline
{
	font-weight: normal;
	font-size: 11px;
}

.product_top_image_button_link
{
	color: black;
	text-decoration: none;
}

.product_top_image_button_bubble
{
	-webkit-transition: all 0.25s ease-in;
	transition: all 0.25s ease-in;
	
    position: absolute;
	visibility:hidden;
	opacity:0;
	
	width:216px;
	left: 0px;
	bottom: 200%;

	font-weight: normal;
	line-height: 14px;
	font-size: 13px;
	color: rgba(0,0,0,0.5);

	border-radius: 6px;
	background: #ffffff;
	border: 1px solid #cfcfcf;
	
	-moz-box-shadow:    1px 1px 5px -1px rgba(0,0,0,0.5);
	-webkit-box-shadow: 1px 1px 5px -1px rgba(0,0,0,0.5);
	box-shadow:         1px 1px 5px -1px rgba(0,0,0,0.5);
	
	padding: 12px;
}

.product_top_image_button:hover .product_top_image_button_bubble
{
	-webkit-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
	
	visibility:visible;
	opacity:1;
	bottom:130%;
}

.product_top_image_button_bubble:after, .product_top_image_button_bubble:before
{
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.product_top_image_button_bubble:after
{
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #ffffff;
	border-width: 10px;
	margin-left: -10px;
}

.product_top_image_button_bubble:before
{
	border-color: rgba(207, 207, 207, 0);
	border-top-color: #cfcfcf;
	border-width: 11px;
	margin-left: -11px;
}

.productimage
{
	z-index: 10;
}

/* Product Top Menu */
#producttopmenu
{
	text-align: center;
	width: 100%;
	min-width: 1024px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	clear:both;
	border-bottom: 1px solid rgba(0,0,0,0.25);
	
	/*transition: box-shadow, background-color 0.1s ease-in-out;*/
	
	z-index: 1000;
	
	position: absolute;

	background-color: rgba(0,0,0,0.0);

	box-shadow: 0px 0px 0px rgba(0,0,0,0.0);

	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,0.25))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.25) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#40ffffff',GradientType=0 ); /* IE6-9 */
}

#producttopmenudiv
{
	height: 50px;
	margin-bottom: 16px;
}

#producttopmenu.fixed
{			
	position: fixed;
	margin-top: 0px;
	top: 0;
	left: 0;
	
	background-color: rgba(255,255,255,0.95);
	
	box-shadow: 0px 4px 15px #555;
}

#producttopmenu li
{
	display: inline-block;
	margin-left: 16px;
	margin-right: 16px;
}

#producttopmenu li a
{
	-webkit-transition:color 0.25s;
    transition:color 0.25s;
    
    padding-top: 6px;
	padding-bottom: 6px;
	
	display: block;
    
    text-decoration: none;
	color: inherit;
}

#producttopmenu.fixed li a
{
	color: rgba(0,0,0,0.8);
}

#producttopmenu li a:hover
{
	-webkit-transition:color 0.25s;
    transition:color 0.25s;
   
	color: rgba(0,0,0,0.5);
}

#producttopmenu .current-menu-item
{
	font-weight: bold;
}

/* Feature List */
.product-feature-list
{
	margin-top: 16px;
	margin-bottom: 16px;
}

.product-feature-list h2
{
	text-align: left;
	margin-bottom: 20px;
}

.product-feature-list img
{
	float:right;
}


/* Product Youtube Video */
.productyoutubevideo
{
	text-align: center;
}


/* Product User Reviews */
.product-user-reviews-container
{
}

.product-user-review
{
	text-align: center;
	margin-bottom: 48px;
}

.product-user-review:last-child
{
	margin-bottom: 0px;
}

.product-user-review-content:before
{
	color: rgba(0,0,0,0.5);
	font-family: sans-serif;
	font-style: italic;
	content: open-quote;
	font-size: 4em;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.4em;
}

.product-user-review-content:after
{
	color: rgba(0,0,0,0.5);
	font-family: sans-serif;
	font-style: italic;
	content: close-quote;
	font-size: 4em;
	line-height: 0.1em;
	vertical-align: -0.7em;
}

.product-user-review-attribution
{
	text-align: right;
	font-size: 0.8em;
	opacity: 0.75;
}

/* Also Available Badge */
.also-available-badge
{
	-webkit-transition:background 0.5s;
    transition:background 0.5s;
   
	display:inline-block;

	background-color: rgba(255,255,255,0.2);
	margin-left: auto;
	margin-right: auto;
	
	padding: 12px;
	border-radius: 8px;
}

.also-available-badge:hover
{
 	-webkit-transition:background 0.5s;
    transition:background 0.5s;
   
   background-color: rgba(255,255,255,0.75);
}

.also-available-badge a
{
	color:black;
}

.also-available-badge-title
{
	display: inline-block;
	vertical-align: middle;
}

.also-available-badge-image
{
	vertical-align: middle;
	margin-right: 12px;
}
