/* ******************************

RESET CSS

****************************** */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ******************************

HTML CONTENT

****************************** */

.html_content strong,
.html_content b {
    font-weight: bold;
}

.html_content em,
.html_content i {
    font-style: italic;
}

.html_content u {
    text-decoration: underline;
}

.html_content p {
    margin: 10px 0;
    padding: 0;
}

.html_content ol,
.html_content ul {
    display: block;
    margin: 10px 0;
    padding: 0 0 0 25px;
    list-style: decimal;
}

.html_content ul {
    list-style: disc;
}

.html_content li {
    display: list-item;
    list-style: inherit;
}

/* ******************************

SEARCH

****************************** */

.tictail_search {
    position: relative;
}

.tictail_search_results {
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 9999;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-align: left;
}

.tictail_search_results .searching,
.tictail_search_results .no_results {
    padding: 10px;
    color: #999;
}

.tictail_search_results .item {
    border-top: 1px solid #ddd;
}

.tictail_search_results .item:first-child {
    border-top: 0;
}

.tictail_search_results .result {
    display: block;
    min-height: 50px;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.tictail_search_results .result:hover {
    color: #555;
    text-decoration: none;
}

.tictail_search_results .thumb {
    float: left;
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin-right: 10px;
    line-height: 50px;
    text-align: center;
}

.tictail_search_results .thumb img {
    vertical-align: middle;
}

.tictail_search_results .title {
    display: block;
    overflow: hidden;
    margin-top: 2px;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tictail_search_results .price {
    display: block;
    margin-top: 3px;
    font-size: 85%;
    color: #666;
    white-space: nowrap;
}

.tictail_search_results .currency {
    font-size: 85%;
}

/* ******************************

SLIDESHOW

****************************** */

.tictail_slideshow {
    position: relative;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    text-align: left;
}

.tictail_slideshow .slide {
    display: none;
}

.tictail_slideshow .slide:first-child {
    display: block;
}

.tictail_slideshow.fade .slide {
    -webkit-transition: opacity 0.25s ease-out;
    -moz-transition: opacity 0.25s ease-out;
    -ms-transition: opacity 0.25s ease-out;
    -o-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
}

.tictail_slideshow.active .slide {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.tictail_slideshow.active .slide.first {
    position: relative;
}

.tictail_slideshow .image_slide {
    text-align: center;
}

.tictail_slideshow .image_slide img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.tictail_slideshow .image_slide.first img {
    position: static;
    margin: 0;
}

.tictail_slideshow .arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 36px;
    height: 36px;
    overflow: hidden;
    margin-top: -18px;
    background: url(../i/slideshow/sprite.png) no-repeat;
    opacity: 0;
    cursor: pointer;

    -webkit-animation: ttFadeinArrows 1.5s;
    -moz-animation: ttFadeinArrows 1.5s;
    -o-animation: ttFadeinArrows 1.5s;
    animation: ttFadeinArrows 1.5s;

    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    -ms-transition: opacity 0.2s ease-out;
    -o-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;

    /* Fix for Internet Explorer <= 8 */
    visibility: hidden;
}

@-webkit-keyframes ttFadeinArrows {
    0% { opacity: 1; visibility: visible; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
@-moz-keyframes ttFadeinArrows {
    0% { opacity: 1; visibility: visible; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
@-o-keyframes ttFadeinArrows {
    0% { opacity: 1; visibility: visible; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes ttFadeinArrows {
    0% { opacity: 1; visibility: visible; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

.tictail_slideshow:hover .arrow {
    opacity: 1;

    /* Fix for Internet Explorer <= 8 */
    visibility: visible;
}

.tictail_slideshow .arrow.previous {
    left: 20px;
    background-position: 0 0;
}

.tictail_slideshow .arrow.previous:hover {
    background-position: 0 -36px;
}

.tictail_slideshow .arrow.next {
    right: 20px;
    background-position: -36px 0;
}

.tictail_slideshow .arrow.next:hover {
    background-position: -36px -36px;
}

.tictail_slideshow.start .arrow.previous,
.tictail_slideshow.end .arrow.next {
    display: none;
}

/* ******************************

FULLSCREEN

****************************** */

a.fullscreen_image {
    cursor: zoom-in;
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
}

#tictail_fullscreen_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    overflow: hidden;
    background-color: #000;
    opacity: 0.9;

    /* Fix for Internet Explorer <= 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
}

#tictail_fullscreen_close {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 10002;
    width: 36px;
    height: 36px;
    overflow: hidden;
    background: url(../i/fullscreen/sprite.png) 0 0 no-repeat;
    cursor: pointer;
}

#tictail_fullscreen_close:hover {
    background-position: 0 -36px;
}

.tictail_fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10001;
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

.tictail_fullscreen_container {
    display: table-cell;
    min-height: 100%;
    height: 100%;
    vertical-align: middle;
    color: #fff;
    text-align: center;
}

.tictail_fullscreen_container .error_message {
    font-size: 12px;
    line-height: 17px;
    font-style: italic;
    color: #fff;
}

.tictail_fullscreen_iframe {
    max-width: 700px;
    height: 90%;
    height: 90vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 5px;
}

.tictail_fullscreen_iframe iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.tictail_fullscreen_image {
    margin: 20px 0;
    font-size: 0;
    line-height: 0;
    text-align: center;
}

.tictail_fullscreen_image img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    image-rendering: optimizeQuality;
    -ms-interpolation-mode: bicubic;
}

/* ******************************

SOCIAL BUTTONS

****************************** */

.tictail_social_buttons {
    font-size: 10px;
    line-height: 0;
    letter-spacing: 2px;
}

.tictail_social_button {
    display: inline-block;
    min-height: 23px;
    vertical-align: middle;

    /* Fix for Internet Explorer 7 */
    *display: inline;
    zoom: 1;
}
