/* 
    Document   : Style for Explode Theme
    Created on : Jun 19, 2011, 7:07:29 PM
    Author     : Olziibat
    Mail       : themeton@gmail.com
    Web        : http://www.themeton.com
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;

    /*
    ------------------------------------------------------
        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;
}

/*
------------------------------------------------------
    BASIC STYLE
------------------------------------------------------
*/
/* Basic typography
------------------------------------------------------ */
body {
    font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #333;
}
strong, th, thead td {
    font-weight: bold;
}
cite, em, dfn {
    font-style: italic;
}
code, kbd, samp, pre, tt, var, input[type=text], input[type=password], input[type=email], textarea {
    font-family: "Consolas","Bitstream Vera Sans Mono","Courier New",Courier,monospace;
}
code, pre {
    display: block;
    white-space: normal;
}
del {
    text-decoration: line-through;
    color: #666;
}
ins, dfn {
    border-bottom: 1px solid #ccc;
}
small, sup, sub {
    font-size: 85%;
}
abbr, acronym {
    text-transform: uppercase;
    letter-spacing: .1em;
}
a abbr, a acronym {
    border: none;
}
abbr[title], acronym[title], dfn[title] {
    cursor: help;
    border-bottom: 1px dotted #ccc;
}
sup {
    vertical-align: super;
}
sub {
    vertical-align: sub;
}
p, ul, ol, dl, table, fieldset, blockquote, pre, code {
    margin-bottom: 20px;
}
/* Basic size
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.6em;
    font-weight: normal;
    line-height: 1.3;
	font-weight: bold;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 14px;
}
h6 {
    font-size: 12px;
}
h1 .subTitle, h2 .subTitle, h3 .subTitle, h4 .subTitle, h5 .subTitle, h6 .subTitle {
    display: block;
    color: #999;
    font-size: 0.65em;
    margin: 0;
}
/* Basic lists
---------------------------------------------------------- */
ul {
    margin-left: 1.5em;
    list-style-type: disc;
}
ul li {
    margin-left: 0em;
}
ul ul {
    list-style-type: square;
}
ul ul ul {
    list-style-type: circle;
}
ol {
    margin-left: 2.35em;
    list-style-position: outside;
    list-style-type: decimal;
}
dt {
    margin-top: .8em;
    margin-bottom: .4em;
    font-weight: bold;
}
ol ol, ul ol {
    margin-left: 2.5em;
}
ul ol, ol ul, ol ol, ul ul {
    margin-bottom: 0;
}
/* Link style
---------------------------------------------------------- */
a, h2.tab, .button {
    -moz-transition: all 0.2s ease-in-out 0s;
    -webkit-transition:all 0.2s ease-in-out 0s;
    -o-transition:all 0.2s ease-in-out 0s;
    transition:all 0.2s ease-in-out 0s;
}
a:link, a:visited, a:hover, a:active, a:focus {
    color:#000;
    outline: 0 none;
    text-decoration: none;
	font-weight:bold;
}
a:hover {
    color: #999;
}
/* Non-semantic helper classes
---------------------------------------------------------- */
.center {
    text-align: center;
}
.hidden {
    display: none;
    visibility: hidden;
}
.invisible {
    visibility: hidden;
}
.alignright {
    float: right;
}
.alignleft {
    float: left;
}
.aligncenter {
    margin-left:auto;
    margin-right:auto;
}
.clearfix, .clearboth{
    clear: both;
    display: block;
    font-size: 0px;
    height: 0px;
    line-height: 0;
    width: 100%;
    overflow:hidden;
}
.right {
    float: right;
}
.left {
    float: left;
}
/* ======================================================= */
/*                          Form                           */
/* ======================================================= */
.form-item {
    margin: 0 0 10px;
}
.form-item label {
    cursor: pointer;
}
legend {
    padding: 0 .8em;
    font-weight: bold;
    font-size: 1.2em;
}
textarea, input[type=text], input[type=password], input[type=email], select {
    border: 1px solid #F0F0F0;
    background: #FAFAFA;
    font-size: inherit;
}
input, select {
    cursor: pointer;
}
input[type=text], input[type=password], input[type=email] {
    cursor: text;
}
textarea {
    overflow:auto;
}
textarea, input {
    padding: 5px;
    outline: none;
}
select {
    padding: 2px;
}
option {
    padding: 0 4px;
}
input[type=button], button {
    padding: 4px;
    cursor: pointer;
    vertical-align: middle;
}
input.text_input,textarea.textarea {
    border: 1px solid #ccc;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;
}
input.text_input:focus,textarea.textarea:focus {
    border: 1px solid #999;
}
.overlabel-wrapper {
    position: relative;
}
.overlabel {}
label.overlabel-apply {
    color: #999999;
    left: 5px;
    position: absolute;
    top: 5px;
    z-index: 1;
}

/* ======================================================= */
/*                          Table                          */
/* ======================================================= */
table, td, th {
    vertical-align: middle;
}
caption {
    padding-bottom: 0.8em;
}
/* Table Style
---------------------------------------------------------- */
.table_style
{
    border: 1px solid #dddddd;
    margin-bottom:20px;
}
.table_style table
{
    text-align: left;
    border-collapse: collapse;
    border: 1px solid #fff;
    width:100%;
    padding:0;
    margin:0;
}
.table_style th
{
    text-align:center;
    padding:12px;
    font-weight: normal;
    font-size: 14px;
    color: #555;
    background-color:#EEEEEE;
}
.table_style tbody
{
    background: #F9F9F9;
}
.table_style td
{
    text-align:center;
    padding: 10px;
    color: #666;
    border-top: 1px dashed #fff;
}
.table_style tbody tr:hover td
{
    color: #333;
    background: #fff;
    border-top: 1px solid #fff;
}
.table_style tfoot
{
    background-color:#f3f3f3;
}
.table_style tfoot td
{
    padding:8px;
}
/* ======================================================= */
/*                      Images Styles                      */
/* ======================================================= */
/* Basic image style
---------------------------------------------------------- */
.preloading, .preload {
    background:url("../images/loading.gif") #f9f9f9 no-repeat 50% 50%;
}
img.alignleft, .wp-caption.alignleft{
    margin:2px 16px 2px 2px !important;
}
img.alignright, .wp-caption.alignright {
    margin:2px 2px 2px 16px !important;
}
img.aligncenter, .wp-caption.aligncenter {
    display: block;
    margin: 2px auto !important;
    text-align: center;
}
/* wp default image
---------------------------------------------------------- */
.wp-caption {
    background: #f5f5f5;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding-top: 5px;
    text-align: center;
}
.wp-caption img {
    border: 0 none;
    margin: 0;
    padding: 0;
}
p.wp-caption-text {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
    padding: 0 5px 5px;
    text-align: center;
}

/*
    IMAGE OVERLAY
*/
.imgSmall,
.imgMedium,
.imgLarge,
.imgTall {
    overflow: hidden;
    display: block;
}
.imgSmall .imgFrame,
.imgMedium .imgFrame,
.imgLarge .imgFrame,
.imgTall .imgFrame {
    position: absolute;
}
.imgSmall img,
.imgMedium img,
.imgLarge img,
.imgTall img {
    position: absolute;
}
.imgSmall.right,
.imgMedium.right,
.imgLarge.right,
.imgTall.right {
    float: right;
}
a.imgSmall,
a.imgMedium,
a.imgLarge,
a.imgTall {
    cursor: pointer;
    width: 100%;
    position: relative;
    display: block;
}
.imgSmall {
    height: 110px;
}
.imgMedium {}
.imgLarge {}
.imgTall {}
.imgOverlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background: transparent url(../images/bg-50-trans.png);
    top:0px;
}
.imgOverlay .symbolZoom	{
    background: url(../images/imgOverlay-Zoom.png) no-repeat right bottom;
    height: 100%;
    width: 100%;
}

.imgOverlay .symbolPlay	{
    background: url(../images/imgOverlay-Play.png) no-repeat right bottom;
    height: 100%;
    width: 100%;
}
.imgOverlay .symbolDoc	{
    background: url(../images/imgOverlay-Post.png) no-repeat right bottom;
    height: 100%;
    width: 100%;
}
/* highlight
---------------------------------------------------------- */
.highlight {
    background: #FFFF99;
}
.highlight.dark {
    background: #333;
    color:#FFF;
}
/* code & pre
---------------------------------------------------------- */
.code,.pre{
    border: 1px solid #e0e0e0;
    padding: 10px;
    background:#ffffff;
    white-space: pre-wrap;                 /* CSS3 browsers  */
    white-space: -moz-pre-wrap !important; /* 1999+ Mozilla  */
    white-space: -pre-wrap;                /* Opera 4 thru 6 */
    white-space: -o-pre-wrap;              /* Opera 7 and up */
    overflow:auto;
}

/* Nivo Slider styles
---------------------------------------------------------- */
.nivoslider_wrap {
    overflow:hidden;
}
.nivoslider_wrap img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
}
.nivoslider_wrap a {
    border:0 none;
    display:block;
}
.nivoSlider {
    position:relative;
}
.nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
}