﻿/* 
    Document   : style
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

/*
    RESET CSS
*/

/* v1.0 | 20080212 */

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, font, 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 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*
    MAIN CSS
*/

root { 
    display: block;
}
*{ margin:0; padding:0; border: 0px; }

/*
    GENERAL
*/

body {
    font-family: "Tahoma", "メイリオ",Meiryo, "ＭＳ Ｐゴシック", "Osaka", sans-serif;
    line-height: 18px;
    font-size: 12px;

    background: #FFF url('../images/back.png') no-repeat center top;
    background-position:50% top;
    background-attachment: fixed;
}

h1 {
    font-size:36px;
}
h2 {
    font-size:30px;
}
h3 {
    font-size:24px;
}
h4 {
    font-size:18px;
}
h5 {
    font-size:14px;
}
h6 {
    font-size:12px;
}
a.tool-tip {
    color:#9d9d9d;
    text-decoration: underline;
}
#wrap-all {

}

.center {
    margin: 0 auto;
    width: 960px;
}
/*
    HEADER
*/

#header {
    height: 80px;
    width: 100%;
}

#logo {
	margin: 0;
	padding: 0;
	width: 240px;
	float: left;
}
#logo-name {
    font-size: 72px;
    padding-top: 10px;
}

#logo-description {
    letter-spacing: 1px;
    font-size: 10px;
    text-transform: uppercase;
}
#navigation {
    width: 720px;
    float: right;
    padding-top: 30px;
    z-index: 9999;
    position: relative;
}
#social-icons{
    height: 60px;
}
#menu{
    text-align: right;
    z-index: 50;
}
ul#menu-list {
    float: right;
    z-index: 50;
    height: 30px;
}
ul#menu-list li {
    display: inline;
    padding: 5px 10px;
}
ul#menu-list li a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    letter-spacing: 1px;
}
/*** ESSENTIAL STYLES ***/
#menu-list, #menu-list * {
    margin: 0;
    padding: 0;
    list-style: none;
}
#menu-list {
    line-height: 1.0;
}
#menu-list ul {
    position: absolute;
    top: -999em;
    width: 120px; /* left offset of submenus need to match (see below) */
}
#menu-list ul li {
    width: 100%;
}
#menu-list li:hover {
    visibility: inherit; /* fixes IE7 'sticky bug' */
    background: #F9F9F9;
}
#menu-list li {
    float: left;
    position: relative;
}
#menu-list a {
    display: block;
    position: relative;
}
#menu-list li:hover ul,
#menu-list li.sfHover ul {
    left: 0;
    top: 2.5em; /* match top ul list item height */
    z-index: 99;

}
ul#menu-list li:hover li ul,
ul#menu-list li.sfHover li ul {
    top: -999em;
}
ul#menu-list li li:hover ul,
ul#menu-list li li.sfHover ul {
    left: 140px; /* match ul width */
    top: 0;
}
ul#menu-list li li:hover li ul,
ul#menu-list li li.sfHover li ul {
    top: -999em;
}
ul#menu-list li li li:hover ul,
ul#menu-list li li li.sfHover ul {
    left: 10em; /* match ul width */
    top: 0;
}

/*** SKIN ***/
#menu-list a {
    text-decoration:none;

}
#menu-list a, #menu-list a:visited  { /* visited pseudo selector so IE6 applies text colour*/
                                      color: #000;
}
#menu-list li {

}
#menu-list li li {
    background: #F9F9F9;
    padding: 5px 10px;
    text-align: left;
    border-bottom: 1px solid #E9E9E9;
}
#menu-list li li:hover {
    background: #E9E9E9;
}
#menu-list li li a {
    font-size: 14px;
    color: #000000;
}
#menu-list li li li {

}
#menu-list li:hover, #menu-list li.sfHover,
#menu-list a:focus, #menu-list a:hover, #menu-list a:active {
    outline: 0;
}

/*** arrows **/
#menu-list a.sf-with-ul {
    padding-right: 0;
    min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
    position: absolute;
    display: block;
    right: .75em;
    top: 1.05em; /* IE6 only */
    width: 10px;
    height: 10px;
    text-indent: -999em;
    overflow: hidden;
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
                         top: .8em;
                         background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
    background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
#menu-list ul .sf-sub-indicator { background-position:  -10px 0; }
#menu-list ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
#menu-list ul a:focus > .sf-sub-indicator,
#menu-list ul a:hover > .sf-sub-indicator,
#menu-list ul a:active > .sf-sub-indicator,
#menu-list ul li:hover > a > .sf-sub-indicator,
#menu-list ul li.sfHover > a > .sf-sub-indicator {
    background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
    background:	url('../images/shadow.png') no-repeat bottom right;
    padding: 0 8px 9px 0;
    -moz-border-radius-bottomleft: 17px;
    -moz-border-radius-topright: 17px;
    -webkit-border-top-right-radius: 17px;
    -webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
    background: transparent;
}


/*
    FEATURE
*/

#feature {
    width: 100%;
    background: #000000;
}
#feature-single {
    background: #000;
    padding: 30px 0;
}
h1.slogan {
    font-size: 42px;
    padding: 10px 0;
    color: #FFFFFF;
}
.slogan-text {
    color: #e9e9e9;
    font-size: 25px;
    padding-top: 5px;
    padding-bottom: 10px;

}

/*
    NIVO SLIDESHOW
*/

#nivo-slideshow-div {
    height: 365px;
    padding-top: 40px;
    padding-bottom: 40px;
}
#nivo-slideshow-div a {
    display: block;
    border: none;
}
.nivo-slideshow {
    position: relative;
    display: block;
    height: 345px;
    border: 10px solid #FFFFFF;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
}
.nivo-caption h1 {
    color: #FFF;
    font-size: 18px;
}
.nivo-controlNav {
    position: absolute;
    right: 0px;
}
.nivo-controlNav a {
    cursor:pointer;
    right: 0px;
    bottom: -368px;
    color: #FFF;
    height: 10px;
    width: 10px;
    margin-left: 5px;
    text-indent: -9999px;
    z-index: 99;
    background: url(../images/slider-bg.gif) no-repeat center center #000;
    float: right;
}
.nivo-controlNav a.active  {
    background: url(../images/slider-bg-active.gif) no-repeat center center #000;
}
.nivo-nextNav {
    background: url(../images/nivo-next.png) no-repeat center center transparent;
    width: 40px;
    height: 40px;
    text-indent: -99999px;
}
.nivo-prevNav {
    background: url(../images/nivo-prew.png) no-repeat center center transparent;
    width: 40px;
    height: 40px;
    text-indent: -99999px;
}

/*
    TOP
*/

#top {
    width: 100%;
    padding: 20px 0px;
}
#top-action {
    display: table;
    color: #666;
}
#top-action-text {
    font-size: 16px;
    color: #666666;
    width: 700px;
    padding: 0px ;
    float: left;
    letter-spacing: 1px;
}
#top-action-text h1 {
    font-size: 26px;
    color: #000000;
    padding-bottom: 10px;
}
#top-action-button-div {
    width: 240px;
    height: 102px;
    float: left;
}
#top-action-button {
    width: 218px;
    margin: 0 10px;
    height: 100px;
    background: #000000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #606060;
    color: #FFF;
}
#top-action-button a {
    color: #FFF;
    font-size: 40px;
    text-decoration: none;
    padding: 20px;
    padding-bottom: 0px;
    display: block;
    text-align: center;
}
#top-action-button span {
    text-align: center;
    padding: 0 10px;
    display: block;
    color: #999;
}
.image-style-1 {
    border: 1px solid #e9e9e9;
    margin-bottom: 20px;
}
.image-style-1 img {
    border: 10px solid #f9f9f9;
}
.image-style-2 {
    border: 1px solid #e9e9e9;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.image-style-2 img {
    border: 10px solid #f9f9f9;
}
.blockquote {
    margin-top: 10px;
    padding: 10px;
    padding-left: 30px;
    font-style: italic;
    display: block;
    background: url(../images/blockqoute.jpg) no-repeat 0px 5px;
}
.blockquote1 {
    margin-top: 10px;
    padding: 10px;
    padding-right: 30px;
    font-style: italic;
    display: block;
    background: url(../images/blockqoute.jpg) no-repeat 0px 5px;
}
.blockquote2 {
    margin-top: 10px;
    padding: 10px;
    padding-left: 30px;
    font-style: italic;
    display: block;
    background: url(../images/blockqoute2.jpg) no-repeat top left #f9f9f9;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.blockquote3 {
    margin-top: 10px;
    padding: 10px;
    padding-right: 30px;
    font-style: italic;
    display: block;
    background: url(../images/blockqoute3.jpg) no-repeat top right #f9f9f9;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
ul.list-typography-1 li {
    padding: 5px 0;
    background: url(../images/1.gif) no-repeat left center;
    padding-left: 15px;
}
ul.list-typography-2 li {
    padding: 5px 0;
    background: url(../images/2.gif) no-repeat left center;
    padding-left: 15px;
}
ul.list-typography-3 li {
    padding: 5px 0;
    background: url(../images/3.gif) no-repeat left center;
    padding-left: 15px;
}
ul.list-typography-4 li {
    padding: 5px 0;
    background: url(../images/4.gif) no-repeat left center;
    padding-left: 15px;
}
.highlight1 {
    background: #000;
    color: #fff;
    padding: 2px;
    padding-top: 0px;
}
.highlight2 {
    background: #e9e9e9;
    color: #666;
    padding: 2px;
    padding-top: 0px;
}
.highlight3 {
    background: #e70a0a;
    color: #FFF;
    padding: 2px;
    padding-top: 0px;
}
.highlight4 {
    background: #0aabe7;
    color: #FFF;
    padding: 2px;
    padding-top: 0px;
}
.highlight5 {
    background: #5fcc0e;
    color: #FFF;
    padding: 2px;
    padding-top: 0px;
}
.highlight6 {
    background: #e70aa6;
    color: #FFF;
    padding: 2px;
    padding-top: 0px;
}
.highlight7 {
    background: #ffa800;
    color: #FFF;
    padding: 2px;
    padding-top: 0px;
}
.highlight8 {
    background: #0c00ff;
    color: #FFF;
    padding: 2px;
    padding-top: 0px;
}
.msg1 {
    color: #FFF;
    border: 1px solid #ff0000;
    background: #ff0000;
    padding: 10px;
    margin: 10px 0;
    display: block;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.msg2 {
    color: #FFF;
    border: 1px solid #000;
    background: #000;
    padding: 10px;
    margin: 10px 0;
    display: block;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.msg3 {
    color: #FFF;
    border: 1px solid #00baff;
    background: #00baff;
    padding: 10px;
    margin: 10px 0;
    display: block;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.msg4 {
    color: #333;
    border: 1px solid #e9e9e9;
    background: #e9e9e9;
    padding: 10px;
    margin: 10px 0;
    display: block;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.msg5 {
    color: #FFF;
    border: 1px solid #5fcc0e;
    background: #5fcc0e;
    padding: 10px;
    margin: 10px 0;
    display: block;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.msg6 {
    color: #FFF;
    border: 1px solid #e70aa6;
    background: #e70aa6;
    padding: 10px;
    margin: 10px 0;
    display: block;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.msg7 {
    color: #FFF;
    border: 1px solid #ffa800;
    background: #ffa800;
    padding: 10px;
    margin: 10px 0;
    display: block;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.msg8 {
    color: #FFF;
    border: 1px solid #0c00ff;
    background: #0c00ff;
    padding: 10px;
    margin: 10px 0;
    display: block;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.piecemaker {
    height: 520px;
    margin-bottom: -90px;
}
/*
SINGLE
*/
#top-page {
    padding: 10px 0;
}
.breadcrumb {
    font-size: 11px;
    color: #999999;
    padding: 10px 0;
    margin-bottom: 10px;
}
.breadcrumb2 {
    font-size: 11px;
    color: #999999;
    padding: 10px 0;
    margin-bottom: 10px;
}
.main {
    width: 650px;
    float: left;
}
.content {
    width: 650px;
    overflow: hidden;
    margin-bottom: 40px;
}
.content h1 {
    font-size: 25px;
    padding: 0 0 10px 0;
    letter-spacing: 1px;
}
.content p {
    color: #666666;
    line-height: 18px;
    padding: 5px 0;
    padding-right: 5px;
}




/*

PORTFOLIO SORTABLE 4 COLULMN

*/


#filter {
    display: table;  
}
#filter fieldset {
    float: left;
    display: inline;
}
#filter fieldset legend {
    float: left;
    background: #000;
    color: #FFF;
    font-size:11px;
    margin-right:0.5em;
    padding:0.5em 1em;
    text-decoration:none;
}
#filter fieldset label {
    float: left;
    background: #E9E9E9;
    color: #000;
    font-size:11px;
    margin-left:0.5em;
    padding:0.5em 1em;
    text-decoration:none;
}
.radio {
    left: -30px;
}

/*

POST

*/

.article {
    margin-bottom: 60px;
    display: table;
    clear: both;
}
.post-head {
    width: 650px;
}
.post-meta {
    padding: 5px 0;
    color: #999999;
    border-bottom: 1px solid #e9e9e9;
    border-top: 1px solid #e9e9e9;
    margin-bottom: 5px;
}
a.post-full {
    border:1px solid #E9E9E9;
    float:left;
    height:333px !important;
    width:648px !important;
}
.post-image {
    width: 650px;
    height: 350px;
    background: url(../images/post-image-bg.jpg) no-repeat bottom center #FFFFFF;
}
.post-image-img {
    height: 335px;
    width: 650px;
    display: block;
    overflow: hidden;
}
.post-image img {
    border: 10px solid #f9f9f9;
    width: 628px;
    height: 313px;
}
.post-item {}

.post-image-small {
    float: left;
    width: 242px;
    height: 255px;
    background: url(../images/post-image-small-bg.jpg) no-repeat bottom center #FFFFFF;
}
.post-image-small-img {
    height: 242px;
    display:block;
    overflow:hidden;
    width:242px;
}
.post-image-small img {
    border: 10px solid #f9f9f9;
    width: 220px;
    height: 220px;
}
a.post-small {
    border:1px solid #E9E9E9;
    float:left;
    height:240px !important;
    width:240px !important;
}
.post-item-small {
    float: right;
    width: 388px;
    margin-left: 20px;
}
.fl {
    float: left;
    margin-left: 0;
}
.fr {
    float: right;
    margin-left: 20px;
    margin-right: 0px;
}
a.tags {
    background: #F9F9F9;
    color: #999999;
    cursor: pointer;
    padding: 0.5em 1em;
    display: table;
    margin-left: 10px;
    margin-top: 15px;
    float: right;
} 
a.tags:hover {
    background: #000;
    color: #FFF;
    cursor: pointer;
}
a.readmore {
    float: left;
    padding: 0.5em 1em;
    background: #000;
    color: #FFF;
    display: table;
    margin-top: 15px;
    cursor: pointer;
    -moz-border-radius:2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}
a.readmore:hover {
    background: #F9F9F9;
    color: #999999;
    cursor: pointer;
}
div.pagination {
    margin-bottom: 20px;
    display: table;
    position: relative;
}
span.pagination-number {
    background: #F9F9F9;
    color: #666666;
    cursor: pointer;
    padding: 5px 8px;
    display: table;
    margin-right: 5px;
    margin-top: 15px;
    float: left;
    -moz-border-radius:2px;
    -webkit-border-radius:2px;
    border-radius:2px;
}
span.pagination-number:hover, div.pagination span.active {
    background: #000;
    color:#FFFFFF;
}
.clear {
    clear: both;
}
.padding-top {
    display: block;
    height: 20px;
    clear: both;
}
h1.single {
    padding-top: 10px;
}
.post-footer {
    padding: 30px 0;
}
.post-footer h3 {
    font-size: 20px;
    color: #666;
    letter-spacing: 1px;
}
.post-about-author {
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    padding: 30px 0;
    display: table;
    margin: 20px 0;
}
.post-comments {
    border-top: 1px solid #E9E9E9;
    padding: 30px 0;
    display: table;
    margin-top: 20px;
    width: 650px;
}
.post-author-image, .post-commenter-image {
    float: right;
    border: 1px solid #E9E9E9;
    height: 70px;
    width: 70px;
}
.post-author-image img, .post-commenter-image img {
    height: 60px;
    width: 60px;
    border: 5px solid #F9F9F9;
}
.post-author-info, .post-comment {
    float: right;
    width: 578px;

}
.replay1 {
    width: 540px;
    border-left: 1px solid #e9e9e9;
    padding-left: 20px
}
.replay2 {
    width: 502px;
    border-left: 1px solid #e9e9e9;
    padding-left: 20px
}
.replay3 {
    width: 464px;
    border-left: 1px solid #e9e9e9;
    padding-left: 20px
}
.comment-box {
    border-top: 1px solid #e9e9e9;
}
.comment-box h1 {
    padding: 20px 0;
}
.comment-box input {
    width: 300px;
}
.comment-box textarea {
    width: 638px;
    resize: none; /* it is block textarea resize for chrome */
}
.post-widget {
    padding: 30px 0;
}
.for-post {
    width: 315px !important;
    float: left;
}
.for-post ul.post-list li {
    border-bottom: 1px solid #E9E9E9 !important;
}
.for-post ul.post-list li div.post-title-widget {
    width: 260px;
}
.for-post-last {
    margin-left: 20px;
}
span.separator {
    border-right:1px solid #999;
    display:inline-block;
    height:8px;
    margin:0 4px;
    width:0;
}
span.author a, span.title a {
    text-decoration: none;
    color: #666;
}
span.author a:hover, span.title a:hover {
    color: #333;
    text-decoration: underline;
}
span.author {
    color: #E9E9E9;
}
span.comment-date {
    color: #999999;
    font-size: 11px;
}
.button {
    cursor: pointer;
}
/*

SIDEBAR

*/

.sidebar{
    width: 270px;
    float: left;
    margin-left: 20px;
    margin-top: 40px;
    display: block;
    position: relative;
}
.sidebar-left {
    width: 270px;
    float: left;
    padding-right: 20px;
    margin-top: 40px;
    display: block;
    position: relative;
}
.widget {
    margin-bottom: 30px;
    display: table;
    width: 250px;
    color: #666;

}
.widget h1 {
    font-size: 20px;
    color: #666;
    letter-spacing: 1px;
}
.widget h1 {
    padding-bottom: 10px;
}
.widget ul li, #bottom ul li {
    color:#999999;
    list-style: none;
}
.widget ul li, #bottom ul li {
    padding: 6px 0;
    border-bottom: 1px solid #e9e9e9;
}

/*

WIDGET CATEGORY LIST

*/

.widget ul.category-list {
    list-style: none;
}
.widget ul.category-list li, #bottom ul.category-list li, .list1 li {
    padding: 6px 0;
    border-bottom: 1px solid #e9e9e9;
    padding-left: 15px;
    background: url(../images/arrow-hover.jpg) no-repeat left center #FFFFFF;
}
.widget ul.category-list li a, #bottom ul.category-list li a {
    text-decoration: none;
    color: #999999;
}
.widget ul.category-list li a:hover, #bottom ul.category-list li a:hover {
    color:#666666;
}
.widget ul.category-list li:hover, #bottom ul.category-list li:hover, .list1 li:hover {
    background: url(../images/arrow.jpg) no-repeat left center #FFFFFF;
    color: #666666;
}

/*

WIDGET COMMENT LIST

*/

.widget ul.comment-list, #bottom ul.comment-list, ul.list2 {
    list-style: none;
}
.widget ul.comment-list li, #bottom ul.comment-list li, ul.list2 li {
    padding: 6px 0;
    border-bottom: 1px solid #e9e9e9;
    padding-left: 15px;
    background: url(../images/arrow-comment-hover.jpg) no-repeat left 6px #FFFFFF;
}
.widget ul.comment-list li a, #bottom ul.comment-list li a {
    text-decoration: none;
    color: #999999;
}
.widget ul.comment-list li a:hover, #bottom ul.comment-list li a:hover {
    color:#666666;
}
.widget ul.comment-list li:hover, #bottom ul.comment-list li:hover, ul.list2 li:hover {
    background: url(../images/arrow-comment.jpg) no-repeat left 6px #FFFFFF;
    color: #666666;
}
.last {
    margin-right: 0;
}

/*

WIDGET ARCHIVE LIST

*/

.widget ul.archive-list li {
    width: 50%;
    float: left;
    padding: 6px 0;
    border-bottom: 1px solid #e9e9e9;
    background: url(../images/arrow-archive-hover.jpg) no-repeat left center #FFFFFF;
}
.widget ul.archive-list li a {
    text-decoration: none;
    color: #999999;
    padding-left: 15px;
}
.widget ul.archive-list li a:hover {
    color: #666666;
}
.widget ul.archive-list li:hover {
    text-decoration: none;
    color: #666666;
    background: url(../images/arrow-archive.jpg) no-repeat left center #FFFFFF;
}

/*

WIDGET POST LIST

*/
div.post-image-widget img {
    width: 40px;
    height: 40px;
    border: 3px solid #E9E9E9;
}
div.post-image-widget {
    float: left;
    margin-top: 2px;
}
div.post-title-widget {
    float: right;
    margin-left: 5px;
    width: 199px;
}
.widget ul.post-list li {
    padding: 6px 0;
    border-bottom: 1px solid #e9e9e9;
    display: table;
    width: 100%;
    margin:0;
}
.widget ul.post-list li a {
    text-decoration: none;
    color: #999999;
    display: block;
}
.widget ul.post-list li a:hover {
    color: #666666;
}
.widget ul.post-list li:hover {
    text-decoration: none;
    color: #666666;
}
.jcarousel-skin-tango {
    display: inline-block;
}
.widget ul#mycarousel li {

}
.widget ul#mycarousel li a{
    display: block;
}
.widget ul#mycarousel li img {
    border:3px solid #E9E9E9;
    height:40px;
    width:40px;
}

#contact-form label {
    width: 100px;
}
.home-column {
    background: #FFF;
    display: table !important;
    height: 250px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius: 3px;
}
.home-content-top {
    background: #000;
    padding: 10px;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-topleft: 3px;
    -webkit-border-top-right-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    border-top-right-radius:3px;
    border-top-left-radius:3px;
}
.home-content-top h3{
    font-size: 18px;
    letter-spacing: 1px;
    color:#FFF;
}
.home-column p {
    padding: 10px;
    color:#666;
}
.twoColumn p {
    color:#666;
    line-height: 18px;
}
/*
WIDGET EMAIL US
*/

.text_input, .textarea {
    font-family: 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #666;
    border: 1px solid #E9E9E9;
    background: #F9F9F9;
    padding: 5px;
    margin-top: 5px;
    margin-right: 5px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;

}
.text_input-subscribe {
    font-family: 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #666;
    border: 1px solid #E9E9E9;
    background: #F9F9F9;
    padding: 5px;
    margin-top: 5px;
    margin-right: 0px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    width: 135px;
    float: left;
}
.button {
    border: none;
    font-family: 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;
    background: #000;
    color: #FFF;
    padding: 5px;
    margin-top: 5px;
    float: left;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    float: right;
}
#button, #btn {
    border: none;
    font-family: 'Lucida Sans Unicode', Arial, Helvetica, sans-serif;
    font-size: 11px;
    background: #666;
    color: #FFF;
    padding: 5px;
    margin-top: 5px;
    margin-right: 0px !important;
    float: right;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    cursor: pointer;
}
.button-subscribe:hover {
    background: #999;
    color:#000;
}
.sidebar-top {
    padding-left: 20px;
    background: url(../images/sidebar-bg.png) no-repeat left top #FFFFFF;
    overflow: hidden;
    min-height: 100px;
}
.sidebar-bottom {
    height: 50px;
    clear: both;
    top: 0;
    background: url(../images/sidebar-bg-bottom.png) no-repeat left bottom #FFFFFF;
}
.sidebar-top-left {
    padding-right: 20px;
    background: url(../images/sidebar-bg2.png) no-repeat right top #FFFFFF;
    overflow: hidden;
    min-height: 100px;
}
.sidebar-bottom-left {
    height: 50px;
    clear: both;
    top: 0;
    background: url(../images/sidebar-bg2.png) no-repeat right bottom #FFFFFF;
}

/*
WIDGET CONTACT US
*/
.widget ul.contact-us li, #bottom ul.contact-us li {
    padding-left: 20px;
}
.widget ul.contact-us li.phone, #bottom ul.contact-us li.phone {
    background: url(../images/arrow-phone.jpg) no-repeat left 6px #FFFFFF;
}
.widget ul.contact-us li.fax, #bottom ul.contact-us li.fax {
    background: url(../images/arrow-cellphone.jpg) no-repeat left 6px #FFFFFF;
}
.widget ul.contact-us li.mail, #bottom ul.contact-us li.mail {
    background: url(../images/arrow-mail.jpg) no-repeat left 6px #FFFFFF;
}
.widget ul.contact-us li.web, #bottom ul.contact-us li.web {
    background: url(../images/arrow-web.jpg) no-repeat left 6px #FFFFFF;
}
.widget ul.contact-us li.address, #bottom ul.contact-us li.address {
    background: url(../images/arrow-position.jpg) no-repeat left 6px #FFFFFF;
}
.contact_form div {
    margin-top: 10px;
}
.contact_form label {
    width: 80px;
    text-align: left;
    margin-right: 10px;
    display: block;
    float:left;
}
.contact_form label.error {
    color: #FF3333;
    display: block;
    float: right;
    font: bold 10px/1em Verdana,Arial,Helvetica,Garuda,sans-serif;
    margin: 0.2em 0 -1.2em;
    padding-right: 10px;
    text-align: right;
    width: 200px;
}
.contact_form input, .contact_form textarea {
    width: 540px;
}
.contact_form div.btn {
    text-align: right;
    padding-right: 8px;
}
.contact_form button {
    float: none !important;
}
/*
    PAGE
*/

#page {
    width: 100%;
    display: table;
    background: url(../images/page-top-background.jpg) top center repeat-x #E9E9E9;
    padding-top: 27px;
}
#home-portfolio, #full-width-blog {
    width: 980px;
    margin-left: -10px;
    *margin-left:0px; /* it is only ie6 */

}

.dropcap {
    font-size: 54px;
    text-transform: uppercase;
    padding-right: 5px;
    float: left;
}
.toggle {
    position:relative;
}
.toggle_title {
    background:url("../images/toggle_buttons.png") no-repeat scroll right 3px transparent;
    cursor:pointer;
    font-size:18px;
    line-height:18px;
    margin:0;
    padding:5px 45px 5px 0px !important;
    border-bottom: 1px solid #E9E9E9;
}
.toggle_content {
    display:none;
    margin-top:5px;
    border-bottom: 1px solid #E9E9E9;
}
.toggle h1 {
    font-size: 16px;

}
.toggle_content p {
    margin-bottom: 10px;
}
.toggle_active {
    background:url("../images/toggle_buttons.png") no-repeat scroll right -27px transparent;
}
#page-bottom {
    height: 27px;
    width: 100%;
    background: url(../images/page-bottom-background.jpg) bottom center repeat-x #E9E9E9;
}
.not-found {
    margin-bottom: 180px;
    margin-top: 150px;
    vertical-align: middle;
    text-align: center;
    margin-top: 100px;
}
span.err-number {
    font-size: 155px;
    color: #666666;
}
span.not-found-desc {
    font-size: 20px;
    letter-spacing: 2px;
    color: #666;
    width: 600px;
    display: block;
    margin: 0 auto;
}
.home-content {
    display: block;
}
.home-content-title img {
    float: left;
    margin-right: 10px;
}
.home-content-title h3 {
    color: #333;
    letter-spacing: 1px;
    float: left;
    width: 79%;
}
.home-content span {
    line-height: 18px;
    color: #666;
    padding-top: 10px;
    display: table;
    clear: both;
}
.short-three-column {
    float:left;
    margin-bottom:20px;
    margin-right:48px;
    margin-top:20px;
    width:288px;
}
.last {
    clear:right;
    margin-right:0;
}
/* START TABLE */
.main table, #fullWidth table
{
    border: 1px solid #ebebeb;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
.main table tr, #fullWidth table tr
{
    background: #ffffff;
}

.main table tr td, .main table tr th,
#fullWidth table tr td, #fullWidth table tr th
{
    border-bottom: 1px solid #ebebeb;
}

.main table tr th,
#fullWidth table tr th
{
    font-weight: bold;
    background: #f0f0f0;
    text-align: left;
    text-shadow: 0 1px 1px #fff;
}

.main table tr th, .main table tr td,
#fullWidth table tr th, #fullWidth table tr td
{
    padding: 7px 15px 7px 15px;
}
/* END TABLE */

.preload {
    background: url(../images/loading.gif) 50% 50% no-repeat #FFFFFF;
    display: block;
    width: 100%;
    height: 100%;
}
.imgSmall, .imgMedium, .imgLarge, .imgTall { overflow: hidden; position: relative; 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; }

.imgOverlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background: transparent url(../images/imgOverlay-Zoom.png) no-repeat center center;
}
.imgOverlay.symbolPlay	{
    background: url(../images/imgOverlay-Play.png) no-repeat center center; }
.imgOverlay.symbolDoc	{
    background: url(../images/imgOverlay-Post.png) no-repeat center center; }

#fullWidth {
    padding: 20px 0;
    margin-top: 30px;
}
#fullWidth h1 {
    font-size:20px;
    color: #000;
    letter-spacing: 1px;
}
#fullWidth p {
    color:#666666;
    line-height:18px;
    padding:5px 0;
}

/*
    COLUMNS
*/

/* START FULL WIDTH PAGE COLUMNS */
.oneColumn {
    width: 960px;
    margin-bottom: 20px;
}
/* 2 COLUMNS */
.twoColumn {
    width: 456px;
    float: left;
    margin-right: 48px;
    margin-bottom: 20px;
    margin-top: 20px;
}
/* 3 COLUMNS */
.threeColumn {
    width: 288px;
    float: left;
    margin-right: 48px;
    margin-bottom: 20px;
    margin-top: 20px;
}
/* 2/3 COLUMNS */
.threeTwoColumn {
    width: 624px;
    float: left;
    margin-right: 48px;
    margin-bottom: 20px;
    margin-top: 20px;
}
/* 4 COLUMNS */
.fourColumn {
    width: 204px;
    float: left;
    margin-right: 48px;
    margin-bottom: 20px;
    margin-top: 20px;
}
/* 3/4 COLUMNS */
.fourOneColumn {
    width: 708px;
    float: left;
    margin-right: 48px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.last {
    clear: right;
    margin-right: 0;
}
/* END FULL WIDTH PAGE COLUMNS */
.hrFullWidth {
    background: url("../images/hrFullWidth.jpg") no-repeat #FFFFFF 0 0 scroll;
    width: 100%;
    height: 70px;
    clear: both;
    display: block;
    position: relative;
}
.hrFullWidth a {
    color: #999999;
    font-size:11px;
    padding-right:0;
    position:absolute;
    right:0;
    top:25px;
}

/*
    BOTTOM
*/

#bottom {
    display: table;
    padding: 20px 0;
    width: 100%;
}
#bottom h1  {
    color:#666666;
    font-size:20px;
    letter-spacing:1px;
    padding-bottom: 10px;
}
/*
    FOOTER
*/

#footer {
    display: table;
    padding: 30px 0;
    width: 100%;
    background: #000000;
}
.footerModule{
    width: 220px;
    float: left;
    padding: 20px 10px;
}
.footerModule h4{
    padding: 20px 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    color: #e9e9e9;
}
.footerModule ul{
    list-style: none outside none;
    margin: 0;
}
.footerModule a{
    color: #999;
    text-decoration: none;
}
.footerModule ul li{
    border-top: 1px solid #2a2a2a;
    padding: 7px 5px 7px 0px;
    text-indent: 0;
    color: #949494;
}
.footerModule ul li a {
    color: #949494;
}
.footerModule ul li a:hover {
    color: #666666;
}
.footerModule ul.social-icons li {
    display: inline;
    padding: 0;
}
#footer-sub {
    background:url("../images/page-top-background.jpg") repeat-x scroll center top #E9E9E9;
    display:table;
    padding: 10px 0;
    width:100%;
}
#footer-menu {
    float: left;
    font-size: 10px;
}
#footer-menu ul {
    list-style:none outside none;
}
#footer-menu ul li.first {
    padding-left:0;
}
#footer-menu ul li {
    border-right:1px solid #999;
    float:left;
    height:15px;
    padding-left:14px;
    padding-right:14px;
}
#footer-menu ul li a {
    text-decoration: none;
    color: #999;
}
#footer-menu ul li a:hover {
    color:#000;
}
#copyright {
    color:#666666;
    float:right;
    font-size:10px;
}
