diff --git a/referencia/WDD_Buddycon_Icons.zip b/referencia/WDD_Buddycon_Icons.zip
new file mode 100644
index 0000000..56af446
Binary files /dev/null and b/referencia/WDD_Buddycon_Icons.zip differ
diff --git a/src/category-profesores.php b/src/category-profesores.php
new file mode 100644
index 0000000..92ba6a0
--- /dev/null
+++ b/src/category-profesores.php
@@ -0,0 +1,56 @@
+
+
+
+
+
+
diff --git a/src/category.php b/src/category.php
new file mode 100644
index 0000000..15bc9ff
--- /dev/null
+++ b/src/category.php
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
' );
+ ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/functions.php b/src/functions.php
index dd97783..3218f4e 100644
--- a/src/functions.php
+++ b/src/functions.php
@@ -82,4 +82,130 @@
// remove admin bar
// add_filter('show_admin_bar', '__return_false');
+
+ add_filter( 'the_excerpt', 'shortcode_unautop');
+ add_filter( 'the_excerpt', 'do_shortcode');
+
+
+function shortcode_handler_rodax( $atts ) {
+
+ extract( shortcode_atts( array(
+ 'categories' => '',
+ 'author' => ''
+ ), $atts ) );
+
+ global $post;
+
+ // Create an array of category IDs based on the categories fed in.
+ $catFilter = array();
+ $catList = explode(',', $categories);
+ foreach( $catList as $catName ){
+ $id = get_cat_id( trim( $catName ) );
+ if( 0 !== $id )
+ $catFilter[] = $id;
+ }
+
+ $pubs_per_page = apply_filters( 'wpa-pubs_per_page', 10 );
+
+ if(isset($_GET['wpa-paged'])) {
+ $paged = (int)$_GET['wpa-paged'];
+ $offset = $pubs_per_page * ($paged - 1);
+ } else {
+ $paged = 1;
+ $offset = 0;
+ }
+
+ $list = '';
+
+ // Get publications
+ $args = array(
+ 'offset' => $offset,
+ 'numberposts' => $pubs_per_page,
+ 'post_type' => 'publication',
+ 'orderby' => 'post_date',
+ 'order' => 'DESC',
+ 'post_status' => 'publish',
+ 'category__in' => $catFilter
+ );
+
+ if('' != $author) {
+ $args['tax_query'] = array(array(
+ 'taxonomy' => 'publication-author',
+ 'field' => 'slug',
+ 'terms' => $author
+ ));
+ }
+
+ $publications = get_posts( $args );
+
+ $args['numberposts'] = -1;
+ $total_pubs = count( get_posts( $args ) );
+
+ $cadenas_sobrantes_title = array('
', '');
+// $cadenas_sobrantes_title = array('
', '
');
+ $mime = new mimetype();
+
+ // Create publication list
+ foreach( $publications as $publication ) {
+
+ $pub = new WP_Publication_Archive_Item( $publication->ID, $publication->post_title, $publication->post_date );
+
+ $list .= '
";
+ }
+
+ $list .= '
';
+
+ if( $total_pubs > $pubs_per_page ) {
+ $list .= '';
+
+ $next = add_query_arg( 'wpa-paged', $paged + 1, get_permalink($post->ID) );
+ $prev = add_query_arg( 'wpa-paged', $paged - 1, get_permalink($post->ID) );
+
+ if($offset > 0) {
+ $list .= '
';
+ }
+
+ if($offset + $pubs_per_page < $total_pubs ) {
+ $list .= '
';
+ }
+
+ $list .= '
';
+ }
+
+ return $list;
+
+
+//return '<p>¡Gracias por leer mi blog!, si te gustó suscríbete al feed RSS</p>';
+}
+add_shortcode('wp-documentos-rodax', 'shortcode_handler_rodax');
+
+function allow_more_pubs( $limit ) {
+ return 40;
+}
+add_filter( 'wpa-pubs_per_page', 'allow_more_pubs' );
+add_filter( 'wppa_mask_url', '__return_false' );
+
+
?>
\ No newline at end of file
diff --git a/src/functions.php_ b/src/functions.php_
new file mode 100644
index 0000000..37c7c11
--- /dev/null
+++ b/src/functions.php_
@@ -0,0 +1,88 @@
+
\ No newline at end of file
diff --git a/src/header.php b/src/header.php
index a71da51..4ecf1a9 100644
--- a/src/header.php
+++ b/src/header.php
@@ -1,8 +1,5 @@
-
-
-
->
+>
+
+ "; // gdl-page-float-left
+
+ get_sidebar('right');
+ ?>
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/single.php b/src/single.php
index 7f6129c..eac218a 100644
--- a/src/single.php
+++ b/src/single.php
@@ -67,7 +67,7 @@
echo '';
echo '';
- if( $sidebar == 'both-sidebar' ){
+/* if( $sidebar == 'both-sidebar' ){
echo '
' . get_the_time('M d, Y') . '
';
}
echo '
' . __('by','gdl_front_end') . ' ' . get_the_author_link() . '
';
@@ -79,8 +79,9 @@
__('% Comments','gdl_front_end'), '',
__('Comments are off','gdl_front_end') );
echo '
';
+ */
echo '';
- echo '';
+ echo '';
echo '';
the_content();
diff --git a/src/style-custom.php b/src/style-custom.php
index 99e02be..20ef37a 100644
--- a/src/style-custom.php
+++ b/src/style-custom.php
@@ -1,579 +1,1161 @@
-/* Background
- ================================= */
-
-
- html{
- background-image: url('/images/pattern/pattern-.png');
- background-repeat: repeat;
- }
-
-
-
-/* Logo
- ================================= */
-.logo-wrapper{
- margin-top: px;
- margin-left: px;
- margin-bottom: px;
-}
-
-/* Font Size
- ================================= */
-h1{
- font-size: px;
-}
-h2{
- font-size: px;
-}
-h3{
- font-size: px;
-}
-h4{
- font-size: px;
-}
-h5{
- font-size: px;
-}
-h6{
- font-size: px;
+
+body {
+ text-align: justify;
}
-/* Element Color
+/* Background
+
================================= */
+
+
+
+
+
+ html{
+
+ background-image: url('/images/pattern/pattern-.png');
+
+ background-repeat: repeat;
+
+ }
+
+
+
+
+
+
+/* Logo
+
+ ================================= */
+
+.logo-wrapper{
+
+ margin-top: px;
+
+ margin-left: px;
+
+ margin-bottom: px;
+
+}
+
+
+
+/* Font Size
+
+ ================================= */
+
+h1{
+
+ font-size: px;
+
+}
+
+h2{
+
+ font-size: px;
+
+}
+
+h3{
+
+ font-size: px;
+
+}
+
+h4{
+
+ font-size: px;
+
+}
+
+h5{
+
+ font-size: px;
+
+}
+
+h6{
+
+ font-size: px;
+
+}
+
+
+
+/* Element Color
+
+ ================================= */
+
+
+
html{
+
background-color: ;
+
}
+
+
div.content-wrapper{
+
background-color: ;
+
+
-moz-box-shadow: 0px 0px 4px ;
+
-webkit-box-shadow: 0px 0px 4px ;
+
box-shadow: 0px 0px 4px ;
+
}
+
div.content-bottom-gimmick{
+
background-color: ;
+
}
+
div.divider{
+
border-bottom: 1px solid ;
+
}
+
div.gdl-header-dropcap{
+
background-color: ;
+
}
+
div.under-slider-right{
+
background-color: ;
+
}
+
+
+
/* Font Family
+
================================= */
+
body{
+
font-family: ;
+
}
+
h1, h2, h3, h4, h5, h6, .gdl-title{
+
font-family: ;
+
}
+
h1.stunning-text-title{
+
font-family: ;
+
color: ;
+
}
+
.stunning-text-caption{
+
color: ;
+
}
+
+
/* Font Color
+
================================= */
+
body{
+
color: !important;
+
}
+
a{
+
color: ;
+
}
+
.footer-wrapper a{
+
color: ;
+
}
+
.gdl-link-title{
+
color: !important;
+
}
+
a:hover{
+
color: ;
+
}
+
.footer-wrapper a:hover{
+
color: ;
+
}
+
.gdl-slider-title{
+
color: !important;
+
}
+
.gdl-slider-caption, .nivo-caption{
+
color: !important;
+
}
+
h1, h2, h3, h4, h5, h6, .title-color{
+
color: ;
+
}
+
h1.gdl-page-title{
+
border-bottom: 1px solid !important;
+
}
+
.gdl-page-caption{
+
color: ;
+
}
+
.sidebar-title-color, custom-sidebar-title{
+
color: !important;
+
}
+
div.right-sidebar-wrapper .custom-sidebar.gdl-divider .custom-sidebar-title,
+
div.left-sidebar-wrapper .custom-sidebar.gdl-divider .custom-sidebar-title{
+
background-color: !important;
+
border-top: 1px solid !important;
+
}
+
+
/* Post/Port Color
+
================================= */
+
+
.port-title-color, .port-title-color a{
+
color: !important;
+
}
+
.port-title-color a:hover{
+
color: !important;
+
}
+
.post-title-color, .post-title-color a{
+
color: !important;
+
}
+
.post-title-color a:hover{
+
color: !important;
+
}
+
.post-widget-title-color{
+
color: !important;
+
}
+
.post-widget-info-color{
+
color: !important;
+
}
+
.post-info-color, div.custom-sidebar #twitter_update_list{
+
color: !important;
+
}
+
div.pagination a{ background-color: ; }
+
+
.about-author-wrapper{
+
background-color: !important;
+
}
+
+
/* Stunning Text
+
================================= */
+
.stunning-text-button{
+
color: !important;
+
+
background-color: !important;
+
border: 1px solid !important;
+
}
+
+
/* Footer Color
+
================================= */
+
div.footer-wrapper-gimmick{
+
background: ;
+
}
+
.footer-widget-wrapper .custom-sidebar-title{
+
color: !important;
+
}
+
.footer-blank-space{
+
= 0 )? 0: abs($footer_top_margin);
+
?>
+
height: px;
+
}
+
.content-wrapper{
+
min-height: px;
+
}
+
.footer-wrapper{
+
margin-top: px;
+
background-color: !important;
+
}
+
.footer-wrapper .gdl-divider,
+
.footer-wrapper .custom-sidebar.gdl-divider div,
+
.footer-wrapper .custom-sidebar.gdl-divider ul li{
+
border-color: !important;
+
}
+
.footer-wrapper, .footer-wrapper table th{
+
color: !important;
+
}
+
.footer-wrapper .post-info-color, .footer-wrapper div.custom-sidebar #twitter_update_list{
+
color: !important;
+
}
+
div.footer-wrapper div.contact-form-wrapper input[type="text"],
+
div.footer-wrapper div.contact-form-wrapper input[type="password"],
+
div.footer-wrapper div.contact-form-wrapper textarea,
+
div.footer-wrapper div.custom-sidebar #search-text input[type="text"],
+
div.footer-wrapper div.custom-sidebar .contact-widget-whole input,
+
div.footer-wrapper div.custom-sidebar .contact-widget-whole textarea {
+
color: !important;
+
background-color: !important;
+
border: 1px solid !important;
+
}
+
div.footer-wrapper a.button, div.footer-wrapper button, div.footer-wrapper button:hover {
+
color: !important;
+
background-color: !important;
+
}
+
div.copyright-wrapper{
+
color: !important;
+
}
+
div.footer-wrapper div.custom-sidebar .recent-post-widget-thumbnail {
+
background-color: ;
+
border-color: ;
+
}
+
+
/* Divider Color
+
================================= */
+
.scroll-top{
+
color: !important;
+
}
+
.gdl-divider,
+
.custom-sidebar.gdl-divider div,
+
.custom-sidebar.gdl-divider .custom-sidebar-title,
+
.custom-sidebar.gdl-divider ul li{
+
border-color: !important;
+
}
+
+
/* Table */
+
table th{
+
color: ;
+
background-color: ;
+
}
+
table, table tr, table tr td, table tr th{
+
border-color: ;
+
}
+
table.course-table, table.course-table tr, table.course-table tr td, table.course-table tr th{
+
border-color: ;
+
}
+
table.course-table th{
+
color: ;
+
background-color: ;
+
}
+
table.course-table tr.odd{
+
color: ;
+
background-color: ;
+
}
+
table.course-table tr.odd a, table.course-table tr.odd a:hover{
+
color: ;
+
}
+
table.course-table tr.even{
+
color: ;
+
background-color: ;
+
}
+
table.course-table tr.even a, table.course-table tr.even a:hover{
+
color: ;
+
}
+
+
/* Testimonial Color
+
================================= */
+
.testimonial-content{
+
color: !important;
+
}
+
.testimonial-author-name{
+
color: !important;
+
}
+
.testimonial-author-position{
+
color: !important;
+
}
+
+
/* Tabs Color
+
================================= */
+
+
ul.tabs{
+
border-color: !important;
+
}
+
ul.tabs li a {
+
color: !important;
+
background-color: !important;
+
border-color: !important;
+
}
+
ul.tabs li a.active {
+
color: !important;
+
background-color: !important;
+
}
+
+
/* Navigation Color
+
================================= */
+
+
div.navigation-wrapper, .sf-menu li{
+
background: url('/images/navigation-shadow.png') repeat-x;
+
}
+
+
.top-navigation-wrapper{
+
+
color: !important;
+
}
+
.top-navigation-left li a{
+
+
border-right: 1px solid !important;
+
}
+
.navigation-wrapper{
+
+
border-top: 1px solid !important;
+
border-bottom: 1px solid !important;
+
}
+
.navigation-wrapper .sf-menu ul,
+
.navigation-wrapper .sf-menu ul li{
+
border-color: !important;
+
}
+
.navigation-wrapper, .sf-menu li{
+
background-color: !important;
+
}
+
.sf-menu li li{
+
+
background-color: !important;
+
}
+
.navigation-wrapper .sf-menu li a{
+
+
color: !important;
+
+
+
border-right: 1px solid !important;
+
border-left: 1px solid !important;
+
}
+
.navigation-wrapper .sf-menu li li a{
+
+
color: !important;
+
}
+
.navigation-wrapper #menu-main.sf-menu{
+
border-right: 1px solid !important;
+
}
+
.navigation-wrapper .sf-menu a:hover,
+
.navigation-wrapper .sf-menu .current-menu-item a:hover{
+
color: !important;
+
}
+
.navigation-wrapper .sf-menu li li a:hover,
+
.navigation-wrapper .sf-menu .current-menu-item li a:hover,
+
.navigation-wrapper .sf-menu .current-menu-item li li a:hover{
+
color: !important;
+
}
+
.navigation-wrapper .sf-menu .current-menu-item a {
+
color: !important;
+
}
+
.navigation-wrapper .sf-menu ul .current-menu-item a {
+
color: !important;
+
}
+
.navigation-wrapper .sf-menu .current-menu-item li a {
+
color: !important;
+
}
+
+
/* Search */
+
.search-wrapper #search-text input[type="text"]{
+
background-color: !important;
+
color: !important;
+
border-color: !important;
+
}
+
div.gdl-combobox-text,
+
#courseform input[type="text"]{
+
background-color: !important;
+
color: !important;
+
}
+
#courseform{
+
background-color: !important;
+
}
+
div.gdl-combobox-button,
+
div.gdl-combobox-text,
+
#courseform input[type="text"],
+
div.search-attribute.gdl-combobox{
+
border-color: !important;
+
}
+
div.gdl-combobox-button,
+
#courseform input[type="submit"]{
+
background-color: !important;
+
color: !important;
+
}
+
div.search-wrapper input[type="submit"]{
+
background-color: !important;
+
color: !important;
+
}
+
.search-wrapper{
+
margin-top: px;
+
}
+
+
/* Button Color
+
================================= */
+
+
a.button, button, input[type="submit"], input[type="reset"], input[type="button"],
+
a.gdl-button{
+
background-color: ;
+
color: ;
+
border: 1px solid
+
}
+
+
a.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover,
+
a.gdl-button:hover{
+
color: ;
+
}
+
+
/* Price Item
+
================================= */
+
div.gdl-price-item .gdl-divider{
+
border-color: !important;
+
}
+
div.gdl-price-item .price-title{
+
background-color: !important;
+
color: !important;
+
}
+
div.gdl-price-item .price-item.active .price-title{
+
background-color: !important;
+
color: !important;
+
}
+
div.gdl-price-item .price-tag{
+
color: !important;
+
}
+
div.gdl-price-item .price-item.active .price-tag{
+
+
color: !important;
+
}
+
div.gdl-price-item .price-item.active{
+
border-top: 1px solid !important;
+
}
+
/* Contact Form
+
================================= */
+
+
div.contact-form-wrapper input[type="text"],
+
div.contact-form-wrapper input[type="password"],
+
div.contact-form-wrapper textarea,
+
div.custom-sidebar #search-text input[type="text"],
+
div.custom-sidebar .contact-widget-whole input,
+
div.comment-wrapper input[type="text"], input[type="password"], div.comment-wrapper textarea,
+
div.custom-sidebar .contact-widget-whole textarea,
+
span.wpcf7-form-control-wrap input[type="text"],
+
span.wpcf7-form-control-wrap input[type="password"],
+
span.wpcf7-form-control-wrap textarea{
+
color: ;
+
background-color: ;
+
border: 1px solid ;
+
+
-webkit-box-shadow: 0px 1px 4px inset, -5px -5px 0px 0px, 5px 5px 0px 0px, 5px 0px 0px 0px, 0px 5px 0px 0px, 5px -5px 0px 0px, -5px 5px 0px 0px;
+
box-shadow: 0px 1px 4px inset, -5px -5px 0px 0px, 5px 5px 0px 0px, 5px 0px 0px 0px, 0px 5px 0px 0px, 5px -5px 0px 0px, -5px 5px 0px 0px;
+
}
+
+
/* Icon Type (dark/light)
+
================================= */
+
+
+
div.single-port-next-nav .right-arrow{ background: url('/images/icon//arrow-right.png') no-repeat; }
+
div.single-port-prev-nav .left-arrow{ background: url('/images/icon//arrow-left.png') no-repeat; }
+
+
div.single-thumbnail-author,
+
div.archive-wrapper .blog-item .blog-thumbnail-author,
+
div.blog-item-holder .blog-item2 .blog-thumbnail-author{ background: url('/images/icon//author.png') no-repeat 0px 0px; }
+
+
div.single-thumbnail-date,
+
div.custom-sidebar .recent-post-widget-date,
+
div.archive-wrapper .blog-item .blog-thumbnail-date,
+
div.blog-item-holder .blog-item1 .blog-thumbnail-date,
+
div.blog-item-holder .blog-item2 .blog-thumbnail-date{ background: url('/images/icon//calendar.png') no-repeat 0px 0px; }
+
+
div.single-thumbnail-comment,
+
div.archive-wrapper .blog-item .blog-thumbnail-comment,
+
div.blog-item-holder .blog-item1 .blog-thumbnail-comment,
+
div.blog-item-holder .blog-item2 .blog-thumbnail-comment,
+
div.custom-sidebar .recent-post-widget-comment-num{ background: url('/images/icon//comment.png') no-repeat 0px 0px; }
+
+
div.single-thumbnail-tag,
+
div.archive-wrapper .blog-item .blog-thumbnail-tag,
+
div.blog-item-holder .blog-item2 .blog-thumbnail-tag{ background: url('/images/icon//tag.png') no-repeat; }
+
+
div.single-port-visit-website{ background: url('/images/icon//link-small.png') no-repeat 0px 2px; }
+
+
span.accordion-head-image.active,
+
span.toggle-box-head-image.active{ background: url('/images/icon//minus-24px.png'); }
+
span.accordion-head-image,
+
span.toggle-box-head-image{ background: url('/images/icon//plus-24px.png'); }
+
+
div.jcarousellite-nav .prev,
+
div.jcarousellite-nav .next{ background-image: url('/images/icon//navigation-20px.png'); }
+
+
div.blog-item-slideshow-nav-right,
+
div.blog-item-slideshow-nav-left{ background-image: url('/images/icon//slideshow-navigation.png'); }
+
+
div.testimonial-icon{ background: url("/images/icon//quotes-18px.png"); }
+
+
div.custom-sidebar ul li{ background: url('/images/icon//arrow4.png') no-repeat 0px 14px; }
+
+
div.gdl-content-slider div.anythingSlider .anythingControls ul a{
+
background: url('/images/icon//content-slider-nav.png');
+
}
+
+
ul.twitter-shortcode li{
+
background: url('/images/icon//twitter-shortcode.png') no-repeat 0px 50%;
+
}
+
div.twitter-shortcode-wrapper .jcarousellite-nav .prev,
+
div.twitter-shortcode-wrapper .jcarousellite-nav .next {
+
background-image: url('/images/icon//twitter-shortcode-nav.png');
+
}
+
+
div.custom-sidebar #searchsubmit { background: url('/images/icon//find-17px.png') no-repeat center; }
+
+
/* Footer Icon Type
+
================================= */
+
+
div.footer-wrapper div.custom-sidebar ul li { background: url('/images/icon//arrow4.png') no-repeat 0px 14px; }
+
div.footer-wrapper div.custom-sidebar #searchsubmit { background: url('/images/icon//find-17px.png') no-repeat center; }
+
div.footer-wrapper div.custom-sidebar .recent-post-widget-comment-num { background: url('/images/icon//comment.png') no-repeat 0px 1px; }
+
div.footer-wrapper div.custom-sidebar .recent-post-widget-date{ background: url('/images/icon//calendar.png') no-repeat 0px 1px; }
+
+
/* Elements Shadow
+
================================= */
+
+
+
a.button, button, input[type="submit"], input[type="reset"], input[type="button"],
+
a.gdl-button{
+
-moz-box-shadow: 1px 1px 3px ;
+
-webkit-box-shadow: 1px 1px 3px ;
+
box-shadow: 1px 1px 3px ;
+
}
+
+
div.gdl-price-item .price-item.active{
+
-moz-box-shadow: 0px 0px 3px ;
+
-webkit-box-shadow: 0px 0px 3px ;
+
box-shadow: 0px 0px 3px ;
+
}
+
+
div.single-course-header-title{ margin-bottom: 20px; }
+
div.single-course-content{ margin-top: 22px; }
+
div.personnal-small .personnal-title{ text-align: center; padding-top: 10px; font-size: 14px; }
+
div.personnal-full .personnal-title{ padding-top: 4px; padding-bottom: 6px; font-size: 14px; }
+
div.personnal-full .personnal-thumbnail-image{ float: left; margin-right: 15px; }
+
div.personnal-full .personnal-content{ overflow: hidden; }
+
div.top-navigation-wrapper{ min-height: 11px; }
+
div.custom-sidebar #searchsubmit { text-indent: -10000px; }
+
+
div.gdl-header-dropcap{ position: relative; }
+
div.gdl-header-dropcap-center{ position: absolute; left: 50%; top: 50%; }
+
div.gdl-header-dropcap-center img{ margin-top: -50%; margin-left: -50%; display: block; }
\ No newline at end of file
diff --git a/src/style.css b/src/style.css
index 0d6eda6..5a99ac4 100644
--- a/src/style.css
+++ b/src/style.css
@@ -1,2343 +1,4720 @@
/*
+
Theme Name: Grand College
+
Theme URI: -
+
Description: Grand College Wordpress Theme
+
Version: 1.03
+
Author: Good Layers
+
Author URI: http://goodlayers.com
+
*/
+
/* #Reset & Basics (Inspired by E. Meyers)================================================== */
+
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 {
+
border: 0 none;
+
font: inherit;
+
margin: 0;
+
padding: 0;
+
vertical-align: baseline;
+
}
+
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
+
display: block;
+
}
+
body {
+
line-height: 1;
+
}
+
ol, ul {
+
}
+
blockquote, q {
+
quotes: none;
+
}
+
blockquote:before, blockquote:after, q:before, q:after {
+
content: none;
+
}
+
table {
+
border: 1px solid;
+
border-spacing: 0;
+
width: 100%;
+
}
+
tr th {
+
border-bottom: 1px solid;
+
text-align: left;
+
}
+
tr th, tr td {
+
border-right: 1px solid;
+
padding: 9px 20px;
+
}
+
tr th:last-child, tr td:last-child {
+
border-right: 0 none;
+
}
+
table th {
+
font-weight: bold;
+
}
+
body {
+
color: #666666;
+
font-family: "Verdana","HelveticaNeue","Helvetica Neue",Arial,sans-serif;
+
font-size: 13px;
+
line-height: 19px;
+
}
+
html {
+
min-height: 100%;
+
}
+
h1, h2, h3, h4, h5, h6 {
+
color: #181818;
+
font-family: "Impact",Helvetica,Arial,sans-serif;
+
font-weight: normal;
+
}
+
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
+
font-weight: inherit;
+
}
+
h1 {
+
margin-bottom: 15px;
+
}
+
h2 {
+
margin-bottom: 15px;
+
}
+
h3 {
+
margin-bottom: 15px;
+
}
+
h4 {
+
margin-bottom: 15px;
+
}
+
h5 {
+
margin-bottom: 15px;
+
}
+
h6 {
+
margin-bottom: 15px;
+
}
+
.subheader {
+
color: #777777;
+
}
+
p {
+
margin: 0 0 20px;
+
}
+
p img {
+
margin: 0;
+
}
+
p.lead {
+
color: #777777;
+
font-size: 21px;
+
line-height: 27px;
+
}
+
em {
+
font-style: italic;
+
}
+
strong {
+
font-weight: bold;
+
}
+
small {
+
font-size: 80%;
+
}
+
blockquote, blockquote p {
+
color: #777777;
+
font-size: 17px;
+
font-style: italic;
+
line-height: 24px;
+
}
+
blockquote {
+
border-left: 1px solid #DDDDDD;
+
margin: 0 0 20px;
+
padding: 9px 20px 0 19px;
+
}
+
blockquote cite {
+
color: #555555;
+
display: block;
+
font-size: 12px;
+
}
+
blockquote cite:before {
+
content: "— ";
+
}
+
blockquote cite a {
+
color: #555555;
+
}
+
hr {
+
-moz-border-bottom-colors: none;
+
-moz-border-image: none;
+
-moz-border-left-colors: none;
+
-moz-border-right-colors: none;
+
-moz-border-top-colors: none;
+
border-color: #DDDDDD;
+
border-style: solid;
+
border-width: 1px 0 0;
+
clear: both;
+
height: 0;
+
margin: 10px 0 30px;
+
}
+
a {
+
color: inherit;
+
outline: 0 none;
+
text-decoration: none;
+
}
+
a:hover {
+
color: inherit;
+
}
+
p a {
+
line-height: inherit;
+
}
+
ul, ol {
+
}
+
ul {
+
}
+
ol {
+
list-style: decimal outside none;
+
}
+
ol, ul.square, ul.circle, ul.disc, ul {
+
margin-left: 30px;
+
}
+
ul.square {
+
list-style: square outside none;
+
}
+
ul.circle {
+
list-style: circle outside none;
+
}
+
ul.disc {
+
list-style: disc outside none;
+
}
+
ul ul, ul ol, ol ol, ol ul {
+
margin: 4px 0 5px 30px;
+
}
+
li {
+
line-height: 18px;
+
}
+
ul.large li {
+
line-height: 21px;
+
}
+
li p {
+
line-height: 21px;
+
}
+
img.scale-with-grid {
+
height: auto;
+
max-width: 100%;
+
}
+
img {
+
display: block;
+
}
+
iframe {
+
display: block;
+
}
+
a.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
+
background: url("images/gradient-top4-32px.png") repeat-x scroll 0 0 transparent;
+
border-radius: 3px 3px 3px 3px;
+
cursor: pointer;
+
display: inline-block;
+
font-weight: bold;
+
height: 29px;
+
line-height: 26px;
+
padding: 1px 12px 0;
+
}
+
a.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
+
background-image: url("images/gradient-bottom4-32px.png");
+
}
+
.button.full-width, button.full-width, input.full-width[type="submit"], input.full-width[type="reset"], input.full-width[type="button"] {
+
padding-left: 0 !important;
+
padding-right: 0 !important;
+
text-align: center;
+
width: 100%;
+
}
+
a.gdl-button {
+
background: url("images/gradient-top4-32px.png") repeat-x scroll 0 0 transparent;
+
border-radius: 3px 3px 3px 3px;
+
cursor: pointer;
+
display: inline-block;
+
font-weight: bold;
+
height: 26px;
+
line-height: 26px;
+
padding: 1px 12px 0;
+
}
+
a.gdl-button:hover {
+
background-image: url("images/gradient-bottom4-32px.png");
+
}
+
.gdl-image-frame {
+
display: inline-block;
+
}
+
ul.tabs {
+
border-bottom: 1px solid;
+
display: block;
+
list-style: none outside none;
+
margin: 0 0 20px;
+
padding: 0;
+
}
+
ul.tabs li {
+
display: block;
+
float: left;
+
height: 30px;
+
margin-bottom: 0;
+
padding: 0;
+
width: auto;
+
}
+
ul.tabs li a {
+
-moz-border-bottom-colors: none;
+
-moz-border-image: none;
+
-moz-border-left-colors: none;
+
-moz-border-right-colors: none;
+
-moz-border-top-colors: none;
+
background: none repeat scroll 0 0 #F5F5F5;
+
border-color: -moz-use-text-color;
+
border-style: solid;
+
border-width: 1px 1px 0 0;
+
cursor: pointer;
+
display: block;
+
font-size: 13px;
+
height: 29px;
+
line-height: 30px;
+
margin: 0;
+
padding: 0 20px;
+
text-decoration: none;
+
width: auto;
+
}
+
ul.tabs li a.active {
+
background: none repeat scroll 0 0 #FFFFFF;
+
border-left-width: 1px;
+
border-top-left-radius: 2px;
+
border-top-right-radius: 2px;
+
color: #111111;
+
height: 30px;
+
margin: 0 0 0 -1px;
+
padding-top: 4px;
+
position: relative;
+
top: -4px;
+
}
+
ul.tabs li:first-child a.active {
+
margin-left: 0;
+
}
+
ul.tabs li:first-child a {
+
border-top-left-radius: 2px;
+
border-width: 1px 1px 0;
+
}
+
ul.tabs li:last-child a {
+
border-top-right-radius: 2px;
+
}
+
ul.tabs-content {
+
display: block;
+
list-style: none outside none;
+
margin: 0 0 20px;
+
}
+
ul.tabs-content > li {
+
display: none;
+
}
+
ul.tabs-content > li.active {
+
display: block;
+
}
+
ul.tabs:before, ul.tabs:after {
+
content: " ";
+
display: block;
+
height: 0;
+
overflow: hidden;
+
visibility: hidden;
+
width: 0;
+
}
+
ul.tabs:after {
+
clear: both;
+
}
+
ul.tabs {
+
}
+
form {
+
margin-bottom: 20px;
+
}
+
fieldset {
+
margin-bottom: 20px;
+
}
+
input[type="text"], input[type="password"], input[type="email"], textarea, select {
+
background: none repeat scroll 0 0 #FFFFFF;
+
border: 1px solid #CCCCCC;
+
border-radius: 2px 2px 2px 2px;
+
color: #777777;
+
display: block;
+
font: 11px "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
+
margin: 0 0 20px;
+
max-width: 100%;
+
outline: medium none;
+
padding: 6px 4px;
+
width: 210px;
+
}
+
+/*RODAX*/
+#loginform p {
+ margin-bottom : 5px;
+}
+
+#loginform label {
+ float : left;
+ width : 85px;
+}
+
+#loginform input {
+ width : 185px;
+ margin-bottom: 5px;
+}
+
+#loginform .login-remember{
+ float : left;
+}
+
+#loginform .login-remember label {
+ width : 150px;
+}
+
+#loginform .login-remember input {
+ width : 15px;
+}
+
+#loginform input[type="submit"] {
+ width : 100px;
+ float : right;
+ margin-bottom: 20px;
+}
+
+/*FIN RODAX*/
+
select {
+
padding: 0;
+
}
+
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus {
+
border: 1px solid #AAAAAA;
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
+
color: #444444;
+
}
+
textarea {
+
min-height: 60px;
+
}
+
label, legend {
+
display: block;
+
}
+
select {
+
width: 220px;
+
}
+
input[type="checkbox"] {
+
display: inline;
+
}
+
label span, legend span {
+
color: #444444;
+
font-size: 13px;
+
font-weight: normal;
+
}
+
.wp-caption, .wp-caption-text, .sticky, .gallery-caption, .bypostauthor {
+
}
+
.alignright {
+
float: right;
+
}
+
.alignleft {
+
float: left;
+
}
+
.aligncenter {
+
margin: 0 auto;
+
}
+
.shortcode-image-left {
+
margin-right: 12px;
+
}
+
.shortcode-imarg-right {
+
margin-left: 12px;
+
}
+
.position-relative {
+
position: relative;
+
z-index: 0;
+
}
+
br.clear {
+
clear: both;
+
display: block;
+
height: 0;
+
}
+
.display-none {
+
display: none;
+
}
+
.overflow-hidden {
+
overflow: hidden;
+
position: relative;
+
}
+
.mt0 {
+
margin-top: 0 !important;
+
}
+
.mt10 {
+
margin-top: 10px !important;
+
}
+
.mt15 {
+
margin-top: 15px !important;
+
}
+
.mt20 {
+
margin-top: 20px !important;
+
}
+
.mt25 {
+
margin-top: 25px !important;
+
}
+
.mt30 {
+
margin-top: 30px !important;
+
}
+
.mt40 {
+
margin-top: 40px !important;
+
}
+
.mb0 {
+
margin-bottom: 0 !important;
+
}
+
.mb5 {
+
margin-bottom: 5px !important;
+
}
+
.mb10 {
+
margin-bottom: 10px !important;
+
}
+
.mb15 {
+
margin-bottom: 15px !important;
+
}
+
.mb20 {
+
margin-bottom: 20px !important;
+
}
+
.mb30 {
+
margin-bottom: 30px !important;
+
}
+
.ml0 {
+
margin-left: 0 !important;
+
}
+
.ml10 {
+
margin-left: 10px !important;
+
}
+
.mr0 {
+
margin-right: 0 !important;
+
}
+
.pt25 {
+
padding-top: 25px !important;
+
}
+
cufon[alt=" "] {
+
display: none !important;
+
}
+
div.body-wrapper {
+
}
+
div#custom-full-background {
+
height: 200%;
+
left: -50%;
+
position: fixed;
+
top: -50%;
+
width: 200%;
+
}
+
div#custom-full-background img {
+
bottom: 0;
+
left: 0;
+
margin: auto;
+
min-height: 50%;
+
min-width: 50%;
+
position: absolute;
+
right: 0;
+
top: 0;
+
z-index: -1;
+
}
+
.preloader {
+
background: url("images/loading.gif") no-repeat scroll center center transparent;
+
display: block;
+
}
+
div.header-wrapper {
+
position: relative;
+
}
+
div.logo-wrapper {
+
float: left;
+
}
+
div.logo-wrapper img {
+
display: block;
+
}
+
div.social-wrapper {
+
float: right;
+
font-size: 15px;
+
font-weight: bold;
+
margin: 11px 15px 0 0;
+
text-align: right;
+
}
+
div.social-wrapper-text {
+
margin-bottom: 10px;
+
}
+
div.social-icon:first-child {
+
margin-left: 0;
+
}
+
div.social-icon {
+
cursor: pointer;
+
float: left;
+
margin-left: 11px;
- opacity: 0.55;
+
+ opacity: 1;
+
}
+
div.gdl-header-dropcap {
+
border-radius: 16px 16px 16px 16px;
+
float: left;
+
font-size: 0;
+
height: 32px;
+
line-height: 32px;
+
margin: 0 10px 20px 0;
+
text-align: center;
+
width: 32px;
+
}
+
div.gdl-header-dropcap img {
+
display: inline-block;
+
margin: 0 auto;
+
vertical-align: middle;
+
}
+
div.top-navigation.container {
+
min-width: 980px;
+
position: relative;
+
z-index: 20;
+
}
+
div.top-navigation-wrapper {
+
float: right;
+
}
+
div.top-navigation.container {
+
background: none repeat scroll 0 0 transparent;
+
box-shadow: none;
+
font-size: 11px;
+
line-height: 100%;
+
padding-bottom: 7px;
+
padding-top: 13px;
+
text-align: center;
+
}
+
div.top-navigation-right {
+
float: right;
+
margin-left: 15px;
+
}
+
div.top-navigation-right img {
+
float: left;
+
margin-right: 7px;
+
margin-top: -2px;
+
}
+
div.top-navigation-left {
+
float: right;
+
}
+
div.top-navigation-left ul {
+
list-style: none outside none;
+
margin-left: 0;
+
}
+
div.top-navigation-left li {
+
float: left;
+
}
+
div.top-navigation-left li a {
+
color: inherit;
+
display: block;
+
line-height: 100%;
+
padding: 0 8px;
+
}
+
div.top-navigation-left li:last-child a {
+
padding-right: 0;
+
}
+
div.top-navigation-left li ul {
+
display: none;
+
}
+
div.top-navigation-left ul li:last-child a {
+
border-right: 0 none !important;
+
}
+
div.top-navigation-left ul li:first-child a {
+
padding-left: 0 !important;
+
}
+
div.top_navigation-header-padding {
+
padding-top: 15px;
+
}
+
div.top-navigation-wrapper.container {
+
background: none repeat scroll 0 0 transparent;
+
padding-bottom: 0;
+
padding-top: 5px;
+
}
+
div.navigation-wrapper {
+
font-size: 13px;
+
text-align: center;
+
}
+
.sf-menu li li {
+
background-image: none;
+
}
+
div.navigation-wrapper ul li ul li {
+
font-weight: normal;
+
}
+
div.responsive-menu-wrapper {
+
display: none;
+
}
+
div.responsive-menu-wrapper select {
+
height: 30px;
+
margin-bottom: 20px;
+
width: 100%;
+
}
+
div#main-superfish-wrapper {
+
margin-left: 0;
+
}
+
div.search-wrapper {
+
float: right;
+
}
+
div.search-wrapper form {
+
margin: 0;
+
padding: 0;
+
}
+
div.search-wrapper #search-text {
+
float: left;
+
overflow: hidden;
+
width: 187px;
+
}
+
div.search-wrapper input[type="text"] {
+
-moz-border-bottom-colors: none;
+
-moz-border-image: none;
+
-moz-border-left-colors: none;
+
-moz-border-right-colors: none;
+
-moz-border-top-colors: none;
+
border-color: -moz-use-text-color;
+
border-radius: 3px 0 0 3px;
+
border-style: solid none solid solid;
+
border-width: 1px 0 1px 1px;
+
box-shadow: none;
+
font-size: 13px;
+
height: 14px;
+
margin: 0;
+
padding: 8px;
+
width: 170px;
+
}
+
div.search-wrapper input[type="submit"] {
+
border: 0 none;
+
border-radius: 0 3px 3px 0;
+
box-shadow: none;
+
float: right;
+
font-weight: normal;
+
height: 32px;
+
line-height: 11px;
+
margin: 0;
+
padding: 8px 20px 11px;
+
}
+
div.search-wrapper input[type="submit"]:hover {
+
background-image: url("images/search-button-bg.png");
+
}
+
div.content-wrapper {
+
margin-top: 12px;
+
position: relative;
+
}
+
div.content-bottom-gimmick {
+
height: 3px;
+
}
+
div.gdl-page-item {
+
}
+
h1.gdl-page-title {
+
border-bottom: 1px solid #65A2BE;
+
float: left;
+
font-size: 22px;
+
height: 18px;
+
margin-bottom: 0;
+
padding: 0 22px 13px 0;
+
}
+
div.gdl-page-caption {
+
border-bottom: 1px solid;
+
height: 18px;
+
overflow: hidden;
+
padding: 3px 22px 10px 0;
+
}
+
div.pagination {
+
border-top: 1px solid;
+
margin: 0 10px 35px;
+
padding-right: 20px;
+
position: relative;
+
text-align: right;
+
z-index: 99;
+
}
+
div.pagination a, div.pagination span {
+
border-bottom-style: solid;
+
border-bottom-width: 1px;
+
border-color: inherit;
+
border-left-style: solid;
+
border-left-width: 1px;
+
color: inherit;
+
display: inline-block;
+
height: 25px;
+
line-height: 25px;
+
padding-left: 12px;
+
padding-right: 12px;
+
text-align: center;
+
}
+
div.pagination a:last-child, div.pagination span:last-child {
+
border-color: inherit;
+
border-right-style: solid;
+
border-right-width: 1px;
+
}
+
div.pagination a:hover {
+
background: none repeat scroll 0 0 transparent;
+
color: inherit;
+
}
+
div.pagination span {
+
}
+
div.gdl-left-sidebar {
+
float: left;
+
}
+
div.gdl-right-sidebar {
+
float: left;
+
}
+
div.gdl-page-item {
+
float: right;
+
}
+
div.gdl-page-float-left {
+
float: left;
+
}
+
div.custom-sidebar {
+
border-color: inherit;
+
clear: both;
+
margin-bottom: 30px;
+
}
+
div.custom-sidebar div {
+
border-color: inherit;
+
}
+
div.custom-sidebar ul {
+
border-color: inherit;
+
list-style: none outside none;
+
margin-left: 0;
+
}
+
div.custom-sidebar ul li {
+
border-bottom-style: solid;
+
border-bottom-width: 1px;
+
border-color: inherit;
+
padding-bottom: 7px;
+
padding-top: 7px;
+
}
+
div.custom-sidebar ul li {
+
background-position: 0 4px;
+
padding-left: 15px;
+
}
+
div.custom-sidebar ul li li:last-child {
+
border-bottom: medium none;
+
padding-bottom: 0;
+
}
+
div.custom-sidebar #recentcomments a {
+
background: none repeat scroll 0 0 transparent;
+
}
+
div.custom-sidebar #twitter_update_list {
+
font-family: 'Droid Serif';
+
font-style: italic;
+
}
+
div.custom-sidebar #twitter_update_list li {
+
background: none repeat scroll 0 0 transparent;
+
padding-left: 0;
+
}
+
div.custom-sidebar #twitter_update_list li span {
+
display: inline-block;
+
}
+
div.custom-sidebar #twitter_update_list li span a {
+
display: inline-block;
+
margin-right: 6px;
+
margin-top: 0;
+
padding-left: 2px;
+
}
+
div.custom-sidebar #twitter_update_list li a {
+
clear: both;
+
display: table;
+
float: none;
+
margin-top: 10px;
+
}
+
div.custom-sidebar .textwidget {
+
margin-top: 15px;
+
}
+
div.custom-sidebar .gdl-recent-post-widget {
+
border-color: inherit;
+
}
+
div.custom-sidebar .recent-post-widget {
+
border-bottom-style: solid;
+
border-bottom-width: 1px;
+
border-color: inherit;
+
padding-bottom: 13px;
+
padding-top: 13px;
+
}
+
div.custom-sidebar .recent-post-widget-thumbnail {
+
background-color: #F3F3F3;
+
border: 1px solid #FFFFFF;
+
float: left;
+
padding: 4px;
+
}
+
div.custom-sidebar .recent-post-widget-context {
+
margin-left: 95px;
+
margin-top: 2px;
+
}
+
div.custom-sidebar .recent-post-widget-date {
+
background-position: 0 0;
+
font-family: 'Droid Serif';
+
font-style: italic;
+
height: 16px;
+
line-height: 19px;
+
margin-top: 4px;
+
padding-left: 22px;
+
}
+
div.custom-sidebar .recent-post-widget-comment-num {
+
background-position: 0 0;
+
font-family: 'Droid Serif';
+
font-style: italic;
+
height: 16px;
+
line-height: 19px;
+
margin-top: 4px;
+
padding-left: 22px;
+
}
+
div.custom-sidebar .twitter-whole {
+
border-color: inherit;
+
}
+
div.custom-sidebar .twitter-whole ul li a {
+
background: none repeat scroll 0 0 transparent;
+
padding: 0;
+
}
+
div.custom-sidebar .flickr-widget {
+
display: inline-block;
+
margin-top: 10px;
+
}
+
div.custom-sidebar .flickr_badge_image {
+
float: left;
+
margin: 10px 10px 0 0;
+
}
+
div.custom-sidebar .flickr-widget img {
+
height: 56px;
+
width: 56px;
+
}
+
div.custom-sidebar .contact-widget-whole ol {
+
list-style: none outside none;
+
margin-left: 0;
+
margin-top: 15px;
+
}
+
div.custom-sidebar .contact-widget-whole ol li {
+
margin-right: 10px;
+
}
+
div.custom-sidebar .contact-widget-whole input, div.custom-sidebar .contact-widget-whole textarea {
+
margin-bottom: 16px;
+
}
+
div.custom-sidebar .screenReader {
+
display: none;
+
}
+
div.custom-sidebar .gdl-recent-port-widget {
+
margin-top: 10px;
+
}
+
div.custom-sidebar .recent-port-widget {
+
float: left;
+
margin-right: 10px;
+
margin-top: 10px;
+
}
+
div.personnal-widget-wrapper {
+
display: inline-block;
+
margin-top: 15px;
+
}
+
div.personnal-widget-avartar {
+
float: left;
+
margin-bottom: 10px;
+
margin-right: 15px;
+
}
+
div.personnal-widget-title {
+
font-size: 14px;
+
margin-bottom: 8px;
+
padding-top: 4px;
+
}
+
div.right-sidebar-wrapper .custom-sidebar-title, div.left-sidebar-wrapper .custom-sidebar-title {
+
border-color: inherit;
+
font-size: 13px;
+
margin-bottom: 5px;
+
padding: 8px 14px;
+
}
+
div.sitemap .custom-sidebar-title {
+
border-bottom-style: solid;
+
border-bottom-width: 1px;
+
border-color: inherit;
+
font-size: 17px;
+
padding: 0 0 10px;
+
}
+
.tagcloud {
+
border-color: inherit;
+
display: inline-block;
+
}
+
.tagcloud a {
+
-moz-border-bottom-colors: none;
+
-moz-border-image: none;
+
-moz-border-left-colors: none;
+
-moz-border-right-colors: none;
+
-moz-border-top-colors: none;
+
border-color: inherit;
+
border-radius: 3px 3px 3px 3px;
+
border-style: solid;
+
border-width: 1px;
+
display: block;
+
float: left;
+
font-size: 12px !important;
+
margin-right: 10px;
+
margin-top: 10px;
+
padding: 3px 8px;
+
}
+
#calendar_wrap {
+
border-color: inherit;
+
}
+
#wp-calendar {
+
border-color: inherit;
+
border-width: 0;
+
width: 100%;
+
}
+
#wp-calendar caption {
+
border-bottom-style: solid;
+
border-bottom-width: 1px;
+
border-color: inherit;
+
font-size: 13px;
+
font-weight: bold;
+
margin: 5px auto 15px;
+
padding-bottom: 6px;
+
}
+
#wp-calendar td {
+
border-right: 0 none;
+
padding: 4px;
+
text-align: center;
+
}
+
#wp-calendar th {
+
background: none repeat scroll 0 0 transparent;
+
border-bottom: 0 none;
+
border-right: 0 none;
+
padding: 0;
+
text-align: center;
+
}
+
div.custom-sidebar #searchsubmit {
+
border: 0 none;
+
box-shadow: none;
+
cursor: pointer;
+
height: 31px;
+
position: absolute;
+
right: 2px;
+
top: 0;
+
width: 36px;
+
}
+
div.custom-sidebar #search-text {
+
margin-right: 10px;
+
}
+
div.custom-sidebar #searchform {
+
margin-bottom: 0;
+
position: relative;
+
}
+
div.custom-sidebar #search-text input[type="text"] {
+
margin-bottom: 0;
+
padding: 9px;
+
width: 95%;
+
}
+
div.custom-sidebar #searchform br.clear {
+
display: none;
+
}
+
div.custom-sidebar label, legend {
+
font-weight: bold;
+
margin-bottom: 7px;
+
}
+
div.custom-sidebar .error {
+
font-family: 'Droid Serif';
+
font-style: italic;
+
margin-bottom: 15px;
+
}
+
div.custom-sidebar #contactForm input, div.custom-sidebar #contactForm textarea {
+
width: 100%;
+
}
+
div.footer-wrapper {
+
background-image: url("images/footer-bg.png");
+
min-width: 980px;
+
}
+
div.footer-blank-space {
+
padding-bottom: 3px;
+
}
+
div.footer-wrapper .container {
+
background: none repeat scroll 0 0 transparent;
+
box-shadow: none;
+
}
+
div.footer-wrapper-gimmick {
+
height: 3px;
+
}
+
div.footer-widget-wrapper {
+
padding-top: 35px;
+
}
+
div.footer-widget-wrapper .custom-sidebar {
+
}
+
div.footer-widget-wrapper .custom-sidebar-title {
+
font-size: 16px;
+
margin-bottom: 10px;
+
}
+
div.footer-wrapper div.contact-form-wrapper input[type="text"], div.footer-wrapper div.contact-form-wrapper input[type="password"], div.footer-wrapper div.contact-form-wrapper textarea, div.footer-wrapper div.custom-sidebar #search-text input[type="text"], div.footer-wrapper div.custom-sidebar .contact-widget-whole input, div.footer-wrapper div.custom-sidebar .contact-widget-whole textarea {
+
box-shadow: none;
+
}
+
div.footer-wrapper a.button, div.footer-wrapper button {
+
background: none repeat scroll 0 0 #222222 !important;
+
border: 0 none !important;
+
box-shadow: none;
+
}
+
div.footer-wrapper #wp-calendar caption {
+
border: medium none;
+
font-size: 15px;
+
margin-bottom: 15px;
+
}
+
div.footer-wrapper div.custom-sidebar .recent-post-widget-thumbnail {
+
box-shadow: none;
+
}
+
div.copyright-wrapper {
+
border-top: 1px solid;
+
font-size: 11px;
+
padding-bottom: 16px;
+
padding-top: 16px;
+
}
+
div.copyright-left {
+
float: left;
+
text-align: left;
+
}
+
div.copyright-right {
+
float: right;
+
text-align: right;
+
}
+
div.comment-wrapper {
+
margin-top: 40px;
+
}
+
div.comment-wrapper .comment-title {
+
font-size: 18px;
+
}
+
div.comment-wrapper .comment-form-comment {
+
margin-right: 40px;
+
}
+
div.comment-wrapper #reply-title {
+
font-size: 18px;
+
margin-bottom: 15px;
+
}
+
div.comment-wrapper input[type="text"], input[type="password"] {
+
height: 30px;
+
line-height: 20px;
+
margin: 5px 5px 25px;
+
padding: 0 0 0 10px;
+
width: 320px;
+
}
+
div.comment-wrapper textarea {
+
height: 165px;
+
line-height: 20px;
+
margin: 5px 5px 25px;
+
max-width: 100%;
+
padding: 10px;
+
width: 590px;
+
}
+
div.comment-wrapper .comment-form-captcha img {
+
float: left;
+
margin-right: 20px;
+
margin-top: 1px;
+
}
+
div.comment-wrapper .comment-form-author input, div.comment-wrapper .comment-form-email input, div.comment-wrapper .comment-form-url input {
+
float: left;
+
}
+
div.comment-wrapper .comment-form-captcha input {
+
float: left;
+
width: 205px;
+
}
+
div.comment-wrapper .comment-form-author label, div.comment-wrapper .comment-form-email label, div.comment-wrapper .comment-form-url label, div.comment-wrapper .comment-form-captcha label {
+
float: left;
+
line-height: 32px;
+
margin: 5px 0 0 10px;
+
}
+
div.comment-wrapper .comment-form-author span, div.comment-wrapper .comment-form-email span, div.comment-wrapper .comment-form-url span, div.comment-wrapper .comment-form-captcha span {
+
float: left;
+
line-height: 32px;
+
margin-left: 2px;
+
}
+
ol.comment-list {
+
list-style: none outside none;
+
margin: 0;
+
}
+
ol.comment-list .comment-body {
+
border-bottom: 1px solid;
+
margin-top: 22px;
+
padding-bottom: 22px;
+
}
+
ol.comment-list ul {
+
list-style: none outside none;
+
margin: 0 0 0 30px;
+
}
+
div.comment-avartar {
+
float: left;
+
}
+
div.comment-context {
+
margin-left: 80px;
+
}
+
span.comment-author {
+
font-size: 16px;
+
margin-right: 5px;
+
}
+
span.comment-date {
+
font-family: 'Droid Serif';
+
font-size: 11px;
+
font-style: italic;
+
margin-right: 5px;
+
}
+
span.comment-time {
+
font-style: italic;
+
margin-right: 5px;
+
}
+
div.comment-content {
+
margin-top: 7px;
+
}
+
div.comment-wrapper #respond {
+
margin-top: 30px;
+
}
+
div.slider-wrapper {
+
overflow: hidden;
+
position: relative;
+
}
+
.gdl-slider-title {
+
font-size: 21px;
+
font-weight: normal;
+
line-height: 30px;
+
margin-left: -2px;
+
padding-bottom: 7px;
+
padding-top: 10px;
+
}
+
h3.content-slider-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px;
+
}
+
div.gdl-content-slider .arrow {
+
display: none !important;
+
}
+
div.gdl-content-slider .anythingSlider {
+
padding-bottom: 20px;
+
}
+
div.gdl-content-slider .anythingSlider li {
+
float: left;
+
}
+
div.gdl-content-slider .anythingSlider .anythingControls {
+
bottom: -5px;
+
left: 50%;
+
}
+
div.gdl-content-slider .anythingSlider .anythingControls ul.thumbNav {
+
left: -50%;
+
position: relative;
+
}
+
div.gdl-content-slider div.anythingSlider .anythingControls ul a {
+
height: 7px;
+
width: 8px;
+
}
+
div.gdl-content-slider div.anythingSlider .anythingControls ul a.cur, div.gdl-content-slider div.anythingSlider .anythingControls ul a:hover {
+
background-position: 0 -14px;
+
}
+
h3.search-course-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px;
+
}
+
#courseform {
+
padding: 30px 20px;
+
}
+
div.search-attribute-wrapper, div.fill-keyword-wrapper {
+
float: left;
+
margin-right: 40px;
+
}
+
div.search-attribute-title, div.fill-keyword-title {
+
font-size: 13px;
+
margin-bottom: 13px;
+
}
+
div.gdl-combobox-text {
+
font-size: 13px;
+
height: 29px;
+
line-height: 29px;
+
padding-left: 11px;
+
}
+
div.gdl-combobox select {
+
height: 29px;
+
margin-left: -1px;
+
margin-top: 1px;
+
opacity: 0;
+
padding-left: 6px;
+
position: absolute;
+
width: 201px;
+
}
+
div.gdl-combobox-button {
+
background-image: url("images/icon/light/combobox-button.png");
+
border-left: 1px solid;
+
float: right;
+
height: 29px;
+
width: 24px;
+
}
+
div.search-attribute.gdl-combobox {
+
border: 1px solid;
+
box-shadow: 1px 1px 2px #EEEEEE;
+
width: 200px;
+
}
+
div.fill-keyword-wrapper div.fill-keyword {
+
box-shadow: 1px 1px 2px #EEEEEE;
+
margin-top: -1px;
+
}
+
#search-course-text {
+
float: left;
+
overflow: hidden;
+
width: 187px;
+
}
+
#courseform input[type="text"] {
+
-moz-border-bottom-colors: none;
+
-moz-border-image: none;
+
-moz-border-left-colors: none;
+
-moz-border-right-colors: none;
+
-moz-border-top-colors: none;
+
border-color: -moz-use-text-color;
+
border-radius: 3px 0 0 3px;
+
border-style: solid none solid solid;
+
border-width: 1px 0 1px 1px;
+
box-shadow: none;
+
font-size: 13px;
+
height: 14px;
+
margin: 0;
+
padding: 8px;
+
width: 170px;
+
}
+
#courseform input[type="submit"] {
+
border: 0 none;
+
border-radius: 0 3px 3px 0;
+
box-shadow: none;
+
float: right;
+
font-weight: normal;
+
height: 32px;
+
line-height: 11px;
+
margin: 0;
+
padding: 8px 20px 11px;
+
}
+
#courseform input[type="submit"]:hover {
+
background-image: url("images/search-button-bg.png");
+
}
+
div.search-text-description {
+
margin-top: 20px;
+
}
+
h3.accordion-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px;
+
}
+
ul.gdl-accordion {
+
list-style: none outside none;
+
margin-left: 0;
+
}
+
ul.gdl-accordion li {
+
border-bottom: 1px solid;
+
list-style: none outside none;
+
margin-bottom: 15px;
+
}
+
h2.accordion-head {
+
cursor: pointer;
+
font-size: 16px;
+
line-height: 21px;
+
padding: 0;
+
}
+
div.accordion-content {
+
overflow: hidden;
+
padding: 0 0 20px 37px;
+
}
+
span.accordion-head-image {
+
cursor: pointer;
+
display: block;
+
float: left;
+
height: 24px;
+
margin-right: 13px;
+
width: 24px;
+
}
+
div.accordion-head p {
+
margin-bottom: 0;
+
}
+
h3.gallery-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px 10px;
+
}
+
div.blog-item-slideshow-nav-left {
+
cursor: pointer;
+
height: 17px;
+
left: 25px;
+
margin-right: 4px;
+
margin-top: 8px;
+
opacity: 0.8;
+
position: absolute;
+
top: 50%;
+
width: 17px;
+
}
+
div.blog-item-slideshow-nav-right {
+
background-position: 17px 0;
+
cursor: pointer;
+
height: 17px;
+
margin-right: 5px;
+
margin-top: 8px;
+
opacity: 0.8;
+
position: absolute;
+
right: 25px;
+
top: 50%;
+
width: 17px;
+
}
+
h3.toggle-box-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px;
+
}
+
ul.gdl-toggle-box {
+
margin-left: 0;
+
}
+
ul.gdl-toggle-box li {
+
border-bottom: 1px solid #ECECEC;
+
list-style: none outside none;
+
margin-bottom: 15px;
+
}
+
h2.toggle-box-head {
+
cursor: pointer;
+
font-size: 16px;
+
line-height: 21px;
+
padding: 0;
+
}
+
div.toggle-box-content {
+
overflow: hidden;
+
padding: 0 0 20px 37px;
+
}
+
span.toggle-box-head-image {
+
cursor: pointer;
+
float: left;
+
height: 24px;
+
margin-right: 13px;
+
width: 24px;
+
}
+
div.toggle-box-head p {
+
margin-bottom: 0;
+
}
+
h3.column-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px;
+
}
+
div.stunning-text-wrapper {
+
clear: both;
+
}
+
h1.stunning-text-title {
+
font-size: 24px;
+
font-weight: bold;
+
line-height: 30px;
+
padding: 0 25px;
+
}
+
div.stunning-text-caption {
+
font-size: 13px;
+
margin-top: 8px;
+
padding: 0 25px;
+
}
+
div.stunning-text-button-wrapper {
+
text-align: center;
+
}
+
a.stunning-text-button {
+
background: url("images/gradient-top-32px.png") repeat-x scroll 0 0 transparent;
+
border-radius: 5px 5px 5px 5px;
+
float: right;
+
font-size: 16px;
+
height: 38px;
+
line-height: 38px;
+
margin-right: 10px;
+
margin-top: 15px;
+
padding: 0 27px;
+
}
+
h3.testimonial-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px 10px;
+
}
+
div.testimonial-no-header {
+
padding-top: 47px;
+
}
+
div.testimonial-icon {
+
float: left;
+
height: 18px;
+
margin-left: 1px;
+
margin-right: 15px;
+
margin-top: 2px;
+
width: 18px;
+
}
+
div.testimonial-author {
+
border-bottom: 1px solid;
+
font-size: 13px;
+
font-weight: bold;
+
margin-bottom: 20px;
+
margin-right: 3px;
+
margin-top: 20px;
+
padding-bottom: 20px;
+
text-align: right;
+
}
+
div.jcarousellite {
+
overflow: hidden;
+
}
+
div.jcarousellite ul {
+
list-style: none outside none;
+
margin: 0;
+
width: 1000%;
+
}
+
div.jcarousellite ul li {
+
float: left;
+
}
+
div.jcarousellite-nav {
+
margin-right: 3px;
+
position: absolute;
+
right: 10px;
+
top: 7px;
+
}
+
div.jcarousellite-nav .prev {
+
cursor: pointer;
+
float: left;
+
height: 20px;
+
margin-left: 5px;
+
width: 20px;
+
}
+
div.jcarousellite-nav .next {
+
background-position: 20px 0;
+
cursor: pointer;
+
float: left;
+
height: 20px;
+
margin-left: 5px;
+
width: 20px;
+
}
+
div.divider {
+
margin-top: 8px;
+
position: relative;
+
}
+
div.scroll-top {
+
cursor: pointer;
+
font-size: 10px;
+
position: absolute;
+
right: 2px;
+
top: -19px;
+
}
+
h3.personnal-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px 10px;
+
}
+
h3.portfolio-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px 10px;
+
}
+
div.portfolio-thumbnail-image {
+
position: relative;
+
text-align: center;
+
}
+
div.portfolio-thumbnail-image img {
+
display: block;
+
margin: 0 auto;
+
}
+
div.portfolio-thumbnail-video {
+
text-align: center;
+
}
+
div.portfolio-thumbnail-video object {
+
display: block;
+
margin: 0 auto;
+
}
+
div.portfolio-thumbnail-slider {
+
margin: 0 auto;
+
overflow: hidden;
+
text-align: center;
+
}
+
div.portfolio-thumbnail-slider .flexslider {
+
display: block;
+
}
+
div.portfolio-thumbnail-slider ol.flex-control-nav {
+
display: none;
+
}
+
div.portfolio-thumbnail-slider ul.flex-direction-nav .prev {
+
background: url("images/thumbnail-nav.png") repeat scroll 0 0 transparent;
+
bottom: 0;
+
height: 24px;
+
left: 0;
+
top: auto;
+
width: 31px;
+
}
+
div.portfolio-thumbnail-slider ul.flex-direction-nav .next {
+
background: url("images/thumbnail-nav.png") repeat scroll 31px 0 transparent;
+
bottom: 0;
+
height: 24px;
+
left: 31px;
+
top: auto;
+
width: 31px;
+
}
+
h2.portfolio-thumbnail-title {
+
font-size: 15px;
+
margin-bottom: 10px;
+
margin-top: 15px;
+
}
+
div.portfolio-thumbnail-title a {
+
color: inherit;
+
}
+
div.portfolio-thumbnail-content {
+
margin-top: 8px;
+
}
+
div.portfolio-bottom {
+
clear: both;
+
display: block;
+
height: 15px;
+
}
+
span.portfolio-thumbnail-image-hover {
+
background-color: #FFFFFF;
+
display: block;
+
height: 100%;
+
opacity: 0;
+
overflow: hidden;
+
position: absolute;
+
width: 100%;
+
}
+
span.portfolio-thumbnail-image-hover span {
+
display: block;
+
height: 32px;
+
left: -50%;
+
margin-left: -16px;
+
margin-top: -16px;
+
position: absolute;
+
top: 50%;
+
width: 32px;
+
}
+
span.portfolio-thumbnail-image-hover span.hover-link {
+
background: url("images/link.png") no-repeat scroll 0 0 transparent;
+
}
+
span.portfolio-thumbnail-image-hover span.hover-video {
+
background: url("images/video.png") no-repeat scroll 0 0 transparent;
+
}
+
span.portfolio-thumbnail-image-hover span.hover-zoom {
+
background: url("images/zoom.png") no-repeat scroll 0 0 transparent;
+
}
+
a.portfolio-read-more {
+
float: left;
+
margin-right: 12px;
+
margin-top: 15px;
+
}
+
a.portfolio-visit-website {
+
float: left;
+
margin-top: 15px;
+
}
+
.portfolio-item-holder.masoned {
+
overflow: hidden;
+
}
+
div.sixteen.columns.portfolio-item {
+
border-bottom: 1px solid #ECECEC;
+
padding-bottom: 22px;
+
}
+
div.sixteen.columns.portfolio-item:last-child {
+
border: 0 none;
+
padding-bottom: 0;
+
}
+
div.sixteen.columns.portfolio-item .portfolio-thumbnail-image, div.sixteen.columns.portfolio-item .portfolio-thumbnail-video, div.sixteen.columns.portfolio-item .portfolio-thumbnail-slider {
+
float: left;
+
width: 620px;
+
}
+
div.sixteen.columns.portfolio-item .portfolio-thumbnail-context {
+
float: none;
+
overflow: hidden;
+
padding-left: 20px;
+
}
+
div.sixteen.columns.portfolio-item .portfolio-thumbnail-title {
+
font-size: 16px;
+
margin-top: 12px;
+
}
+
div.sixteen.columns.portfolio-item .portfolio-thumbnail-content {
+
margin-top: 12px;
+
}
+
div.sixteen.columns.portfolio-item a.portfolio-read-more {
+
margin-top: 22px;
+
}
+
div.sixteen.columns.portfolio-item a.portfolio-visit-website {
+
margin-top: 22px;
+
}
+
div.sidebar-included .sixteen.columns.portfolio-item .portfolio-thumbnail-image, div.sidebar-included .sixteen.columns.portfolio-item .portfolio-thumbnail-video, div.sidebar-included .sixteen.columns.portfolio-item .portfolio-thumbnail-slider {
+
float: left;
+
width: 320px;
+
}
+
div.sidebar-included div.sixteen.columns.portfolio-item .portfolio-thumbnail-context {
+
margin-right: 10px;
+
padding-left: 20px;
+
}
+
div.both-sidebar-included .sixteen.columns.portfolio-item .portfolio-thumbnail-image, div.both-sidebar-included .sixteen.columns.portfolio-item .portfolio-thumbnail-video, div.both-sidebar-included .sixteen.columns.portfolio-item .portfolio-thumbnail-slider {
+
float: left;
+
width: 180px;
+
}
+
div.both-sidebar-included div.sixteen.columns.portfolio-item .portfolio-thumbnail-context {
+
margin-right: 10px;
+
padding-left: 20px;
+
}
+
ul#portfolio-item-filter {
+
list-style: none outside none;
+
margin: 0;
+
}
+
ul#portfolio-item-filter li {
+
float: left;
+
margin: 0 2px 20px 10px;
+
}
+
h1.single-thumbnail-title {
+
font-size: 21px;
+
margin-bottom: 0;
+
margin-top: 40px;
+
padding-bottom: 18px;
+
}
+
h1.single-thumbnail-title a {
+
color: inherit;
+
}
+
div.single-thumbnail-info {
+
border-bottom: 1px solid #ECECEC;
+
border-top: 1px solid #ECECEC;
+
font-family: Droid Serif;
+
font-size: 11px;
+
font-style: italic;
+
margin-bottom: 20px;
+
padding-bottom: 7px;
+
padding-top: 7px;
+
}
+
div.single-thumbnail-date {
+
float: left;
+
font-style: italic;
+
height: 16px;
+
line-height: 20px;
+
padding-left: 23px;
+
}
+
div.single-thumbnail-author {
+
float: left;
+
height: 16px;
+
line-height: 20px;
+
margin-left: 20px;
+
padding-left: 23px;
+
}
+
div.single-thumbnail-comment {
+
float: right;
+
height: 16px;
+
line-height: 20px;
+
padding-left: 21px;
+
}
+
div.single-thumbnail-tag {
+
float: left;
+
height: 16px;
+
line-height: 16px;
+
margin-left: 20px;
+
padding-left: 23px;
+
}
+
div.single-thumbnail-context {
+
padding-top: 20px;
+
}
+
div.single-content {
+
margin-top: 20px;
+
}
+
div.single-port-prev-nav {
+
float: left;
+
}
+
div.single-port-prev-nav a {
+
float: left;
+
}
+
div.single-port-prev-nav .left-arrow {
+
float: left;
+
height: 5px;
+
margin-right: 8px;
+
margin-top: 6px;
+
width: 8px;
+
}
+
div.single-port-next-nav {
+
float: left;
+
margin-left: 30px;
+
}
+
div.single-port-next-nav a {
+
float: left;
+
}
+
div.single-port-next-nav .right-arrow {
+
float: left;
+
height: 5px;
+
margin-left: 8px;
+
margin-top: 6px;
+
width: 8px;
+
}
+
div.single-port-nav {
+
float: right;
+
margin-bottom: 20px;
+
}
+
h1.single-port-title {
+
border-bottom: 1px solid;
+
font-size: 21px;
+
margin-bottom: 0;
+
padding-bottom: 8px;
+
}
+
h1.single-port-title a {
+
color: inherit;
+
}
+
div.single-port-content {
+
margin-top: 22px;
+
}
+
div.single-port-info {
+
font-family: Droid Serif;
+
font-style: italic;
+
}
+
div.single-port-info span.head {
+
font-weight: bold;
+
margin-right: 5px;
+
}
+
div.single-port-client {
+
margin-bottom: 8px;
+
}
+
div.single-port-date {
+
margin-bottom: 8px;
+
}
+
div.single-port-tag {
+
margin-bottom: 8px;
+
}
+
div.single-port-visit-website {
+
margin-top: 8px;
+
padding-left: 28px;
+
padding-top: 2px;
+
}
+
div.about-author-wrapper {
+
margin-top: 40px;
+
padding: 18px;
+
}
+
div.about-author-avartar {
+
float: left;
+
}
+
div.about-author-info {
+
margin-left: 110px;
+
}
+
div.about-author-title {
+
font-size: 18px;
+
margin-bottom: 5px;
+
margin-top: 3px;
+
}
+
div.social-share-title {
+
font-size: 18px;
+
margin-top: 40px;
+
}
+
div.social-shares ul {
+
list-style: none outside none;
+
margin-left: 0;
+
margin-top: 15px;
+
}
+
div.social-shares ul li {
+
float: left;
+
margin-bottom: 15px;
+
margin-right: 15px;
+
}
+
div.single-course-thumbnail-image {
+
margin-bottom: 20px;
+
}
+
h3.blog-header-title {
+
font-size: 16px;
+
height: 18px;
+
margin: 7px 0 20px 10px;
+
}
+
h2.blog-thumbnail-title a {
+
color: inherit;
+
}
+
div.blog-thumbnail-image, div.blog-thumbnail-slider, div.blog-thumbnail-video {
+
margin-bottom: 18px;
+
}
+
div.blog-thumbnail-info {
+
font-family: Droid Serif;
+
font-style: italic;
+
}
+
a.blog-continue-reading {
+
display: block;
+
margin-top: 14px;
+
}
+
a.blog-read-more {
+
float: left;
+
margin-right: 15px;
+
margin-top: 15px;
+
}
+
div.blog-item-holder .blog-item0:last-child, div.blog-item-holder .blog-item0:last-child {
+
border-bottom: 0 none;
+
}
+
div.blog-item-holder .blog-item0 {
+
border-bottom: 1px solid;
+
margin-left: 10px;
+
margin-right: 10px;
+
}
+
div.blog-item-holder .blog-item0 .blog-thumbnail-image, div.blog-item-holder .blog-item0 .blog-thumbnail-video, div.blog-item-holder .blog-item0 .blog-thumbnail-slider {
+
float: left;
+
margin-bottom: 15px;
+
margin-right: 15px;
+
}
+
div.blog-item-holder .blog-item0 .blog-thumbnail-slider .flexslider {
+
height: 60px;
+
width: 60px;
+
}
+
div.blog-item-holder .blog-item0 .blog-thumbnail-slider .flex-caption, div.blog-item-holder .blog-item0 .blog-thumbnail-slider ol.flex-control-nav, div.blog-item-holder .blog-item0 .blog-thumbnail-slider ul.flex-direction-nav {
+
display: none;
+
}
+
div.blog-item-holder .blog-item0 .blog-thumbnail-context {
+
float: none;
+
}
+
div.blog-item-holder .blog-item0 .blog-thumbnail-inside {
+
margin-bottom: 15px;
+
overflow: hidden;
+
}
+
div.blog-item-holder .blog-item0 .blog-thumbnail-title {
+
font-size: 12px;
+
margin-bottom: 0;
+
}
+
div.blog-item-holder .blog-item0 .blog-thumbnail-date {
+
font-family: 'Droid Serif';
+
font-size: 11px;
+
font-style: italic;
+
margin-bottom: 5px;
+
}
+
div.blog-item-holder .blog-item1 {
+
border-bottom: 1px solid #ECECEC;
+
padding-bottom: 25px;
+
padding-top: 25px;
+
}
+
div.blog-item-holder .blog-item1:last-child {
+
border: 0 none;
+
padding-bottom: 0;
+
}
+
div.blog-item-holder .blog-item1 .blog-thumbnail-title {
+
font-size: 20px;
+
margin-bottom: 0;
+
padding-bottom: 4px;
+
padding-top: 2px;
+
}
+
div.blog-item-holder .blog-item1 .blog-thumbnail-context {
+
float: none;
+
overflow: hidden;
+
padding-left: 20px;
+
}
+
div.blog-item-holder .blog-item1 .blog-thumbnail-image, div.blog-item-holder .blog-item1 .blog-thumbnail-video, div.blog-item-holder .blog-item1 .blog-thumbnail-slider {
+
float: left;
+
width: 460px;
+
}
+
div.blog-item-holder .blog-item1 .blog-thumbnail-info {
+
font-size: 11px;
+
margin-bottom: 16px;
+
}
+
div.blog-item-holder .blog-item1 .blog-thumbnail-date {
+
background-position: 0 0;
+
float: left;
+
font-style: italic;
+
height: 16px;
+
line-height: 16px;
+
padding-left: 22px;
+
}
+
div.blog-item-holder .blog-item1 .blog-thumbnail-comment {
+
background-position: 0 0;
+
float: left;
+
height: 16px;
+
line-height: 16px;
+
margin-left: 20px;
+
padding-left: 22px;
+
}
+
div.blog-item-holder .blog-item2 {
+
}
+
div.blog-item-holder .blog-item2 .blog-date-wrapper {
- background-color: #65A1BD;
+
+ background-color: #FF6A26;
+
background-image: url("images/icon/light/blog-date-bg.png");
+
background-repeat: no-repeat;
+
color: #FFFFFF;
+
float: left;
+
line-height: 1;
+
margin-right: 10px;
+
padding: 15px 10px 20px;
+
text-align: center;
+
width: 40px;
+
}
+
div.left-sidebar .blog-item-holder .blog-item2 .blog-date-wrapper {
+
float: right;
+
margin-left: 10px;
+
margin-right: 0;
+
}
+
div.blog-item-holder .blog-item2 .blog-date-wrapper .blog-date-value {
+
font-size: 30px;
+
font-weight: bold;
+
}
+
div.blog-item-holder .blog-item2 .blog-date-wrapper .blog-month-value {
+
font-size: 14px;
+
margin-top: 4px;
+
}
+
div.blog-item-holder .blog-item2 .blog-date-wrapper .blog-year-value {
+
font-size: 14px;
+
margin-top: 2px;
+
}
+
div.blog-item-holder .blog-item2 .blog-item-inside {
+
overflow: hidden;
+
}
+
div.blog-item-holder .blog-item2 .blog-thumbnail-image, div.blog-item-holder .blog-item2 .blog-thumbnail-video, div.blog-item-holder .blog-item2 .blog-thumbnail-slider {
+
margin-bottom: 24px;
+
}
+
div.blog-item-holder .blog-item2 .blog-thumbnail-title {
+
font-size: 21px;
+
margin-bottom: 0;
+
padding-bottom: 5px;
+
}
+
div.blog-item-holder .blog-item2 .blog-thumbnail-info {
+
font-size: 100%;
+
margin-bottom: 18px;
+
padding-bottom: 0;
+
}
+
div.blog-item-holder .blog-item2 .blog-thumbnail-date {
+
float: left;
+
height: 16px;
+
line-height: 16px;
+
margin-right: 15px;
+
padding-left: 23px;
+
}
+
div.blog-item-holder .blog-item2 .blog-thumbnail-author {
+
float: left;
+
height: 16px;
+
line-height: 16px;
+
margin-right: 15px;
+
padding-left: 23px;
+
}
+
div.blog-item-holder .blog-item2 .blog-thumbnail-comment {
+
float: left;
+
height: 16px;
+
line-height: 16px;
+
margin-right: 15px;
+
padding-left: 21px;
+
}
+
div.blog-item-holder .blog-item2 .blog-thumbnail-tag {
+
float: left;
+
height: 16px;
+
line-height: 16px;
+
margin-right: 15px;
+
padding-left: 23px;
+
}
+
div.sidebar-included .blog-item-holder .blog-item1 .blog-thumbnail-image, div.sidebar-included .blog-item-holder .blog-item1 .blog-thumbnail-video, div.sidebar-included .blog-item-holder .blog-item1 .blog-thumbnail-slider {
+
float: left;
+
width: 210px;
+
}
+
div.both-sidebar-included .blog-item-holder .blog-item1 .blog-thumbnail-image, div.both-sidebar-included .blog-item-holder .blog-item1 .blog-thumbnail-video, div.both-sidebar-included .blog-item-holder .blog-item1 .blog-thumbnail-slider {
+
float: none;
+
width: auto;
+
}
+
div.both-sidebar-included .blog-item1 .blog-thumbnail-context {
+
padding: 0;
+
width: auto;
+
}
+
div.archive-wrapper .blog-item {
+
padding-bottom: 10px;
+
padding-top: 40px;
+
}
+
div.archive-wrapper .blog-item .blog-thumbnail-title {
+
font-size: 21px;
+
margin-bottom: 0;
+
padding-bottom: 15px;
+
}
+
div.archive-wrapper .blog-item .blog-thumbnail-info {
+
border-bottom: 1px solid #ECECEC;
+
border-top: 1px solid #ECECEC;
+
font-size: 11px;
+
margin-bottom: 20px;
+
padding-bottom: 8px;
+
padding-top: 8px;
+
}
+
div.archive-wrapper .blog-item .blog-thumbnail-date {
+
float: left;
+
font-style: italic;
+
height: 16px;
+
line-height: 16px;
+
padding-left: 23px;
+
}
+
div.archive-wrapper .blog-item .blog-thumbnail-author {
+
float: left;
+
height: 16px;
+
line-height: 16px;
+
margin-left: 20px;
+
padding-left: 23px;
+
}
+
div.archive-wrapper .blog-item .blog-thumbnail-comment {
+
float: right;
+
height: 16px;
+
line-height: 16px;
+
padding-left: 21px;
+
}
+
div.archive-wrapper .blog-item .blog-thumbnail-tag {
+
float: left;
+
height: 16px;
+
line-height: 16px;
+
margin-left: 20px;
+
padding-left: 23px;
+
}
+
div.archive-wrapper .blog-item .blog-thumbnail-context {
+
}
+
div.message-box-wrapper {
+
border: 1px solid;
+
margin-bottom: 20px;
+
padding: 20px;
+
}
+
div.message-box-title {
+
font-size: 14px;
+
font-weight: bold;
+
margin-top: 2px;
+
}
+
div.message-box-content {
+
margin-top: 12px;
+
}
+
div.message-box-wrapper.red {
+
background-color: #FFDCDD;
+
border-color: #E9B9BB;
+
color: #713A3C;
+
}
+
div.message-box-wrapper.red .message-box-title {
+
color: #8D4345;
+
}
+
div.message-box-wrapper.yellow {
+
background-color: #FFFFE0;
+
border-color: #E1DB8B;
+
color: #4D4D39;
+
}
+
div.message-box-wrapper.yellow .message-box-title {
+
color: #737357;
+
}
+
div.message-box-wrapper.blue {
+
background-color: #C2E1EE;
+
border-color: #8EC3D9;
+
color: #3D5058;
+
}
+
div.message-box-wrapper.blue .message-box-title {
+
color: #475D66;
+
}
+
div.message-box-wrapper.green {
+
background-color: #E1FFD9;
+
border-color: #BADEB1;
+
color: #435B3D;
+
}
+
div.message-box-wrapper.green .message-box-title {
+
color: #526D4B;
+
}
+
.shortcode1-4 {
+
float: left;
+
margin-right: 2%;
+
width: 23%;
+
}
+
.shortcode1-3 {
+
float: left;
+
margin-right: 2%;
+
width: 31.33%;
+
}
+
.shortcode1-2 {
+
float: left;
+
margin-right: 2%;
+
width: 48%;
+
}
+
.shortcode2-3 {
+
float: left;
+
margin-right: 2%;
+
width: 64.66%;
+
}
+
.shortcode3-4 {
+
float: left;
+
margin-right: 2%;
+
width: 73%;
+
}
+
.shortcode1 {
+
float: left;
+
margin-right: 2%;
+
width: 98%;
+
}
+
a.gdl-button.shortcode-large-button {
+
font-size: 14px;
+
height: 38px;
+
line-height: 38px;
+
margin-bottom: 20px;
+
margin-right: 10px;
+
padding: 0 21px;
+
}
+
a.gdl-button.shortcode-medium-button {
+
font-size: 12px;
+
height: 30px;
+
line-height: 30px;
+
margin-bottom: 20px;
+
margin-right: 10px;
+
padding: 0 15px;
+
}
+
a.gdl-button.shortcode-small-button {
+
font-size: 11px;
+
margin-bottom: 20px;
+
margin-right: 10px;
+
text-shadow: none;
+
}
+
div.shortcode-list ul {
+
list-style: none outside none;
+
margin-bottom: 20px;
+
margin-left: 0;
+
}
+
div.shortcode-list li {
+
border: 0 none;
+
padding: 2px 0 2px 25px;
+
}
+
div.shortcode-list-arrow li {
+
background: url("images/list/arrow.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-arrow2 li {
+
background: url("images/list/arrow2.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-arrow3 li {
+
background: url("images/list/arrow3.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-bullet li {
+
background: url("images/list/bullet.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-bullet2 li {
+
background: url("images/list/bullet2.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-bullet3 li {
+
background: url("images/list/bullet3.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-check li {
+
background: url("images/list/check.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-check2 li {
+
background: url("images/list/check2.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-check3 li {
+
background: url("images/list/check3.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-delete li {
+
background: url("images/list/delete.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-delete2 li {
+
background: url("images/list/delete2.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-list-delete3 li {
+
background: url("images/list/delete3.png") no-repeat scroll 0 0 transparent;
+
}
+
div.shortcode-social {
+
float: left;
+
margin-right: 12px;
+
}
+
div.shortcode-block-quote-left {
+
border-left: 2px solid #DDDDDD;
+
float: left;
+
font-family: Georgia,"Times New Roman",Times,serif;
+
font-size: 16px;
+
font-style: oblique;
+
margin: 15px 20px;
+
padding: 20px;
+
width: 33%;
+
}
+
div.shortcode-block-quote-right {
+
border-left: 2px solid #DDDDDD;
+
float: right;
+
font-family: Georgia,"Times New Roman",Times,serif;
+
font-size: 16px;
+
font-style: oblique;
+
margin: 15px 20px;
+
padding: 20px;
+
width: 33%;
+
}
+
div.shortcode-block-quote-center {
+
border-left: 2px solid #DDDDDD;
+
font-family: Georgia,"Times New Roman",Times,serif;
+
font-size: 16px;
+
font-style: oblique;
+
margin: 0 20px 20px;
+
padding: 20px;
+
text-align: center;
+
}
+
div.shortcode-dropcap {
+
float: left;
+
font-size: 25px;
+
height: 32px;
+
line-height: 32px;
+
margin-bottom: 0;
+
margin-right: 5px;
+
margin-top: 0;
+
text-align: center;
+
width: 32px;
+
}
+
div.shortcode-dropcap.circle {
+
border-radius: 16px 16px 16px 16px;
+
font-size: 20px !important;
+
}
+
div.contact-form-wrapper ol {
+
list-style: none outside none;
+
margin: 0;
+
}
+
div.contact-form-wrapper ol li {
+
margin-bottom: 20px;
+
}
+
div.contact-form-wrapper ol li.sending-result {
+
display: none;
+
max-width: 622px;
+
}
+
div.contact-form-wrapper ol li.sending-result .message-box-wrapper {
+
padding: 10px 15px;
+
}
+
div.contact-form-wrapper ol li div.error {
+
display: none;
+
}
+
div.contact-form-wrapper input[type="text"], input[type="password"] {
+
height: 30px;
+
line-height: 20px;
+
margin: 10px 5px;
+
max-width: 90%;
+
padding: 0 0 0 7px;
+
width: 320px;
+
}
+
div.contact-form-wrapper .textarea {
+
margin-right: 32px;
+
}
+
div.contact-form-wrapper textarea {
+
height: 165px;
+
line-height: 20px;
+
margin: 10px 5px;
+
max-width: 100%;
+
padding: 10px;
+
width: 590px;
+
}
+
div.contact-form-wrapper .contact-submit {
+
float: left;
+
}
+
div.contact-form-wrapper .contact-loading {
+
background: url("images/loading.gif") repeat scroll 0 0 transparent;
+
display: none;
+
float: left;
+
height: 16px;
+
margin: 7px 0 0 15px;
+
width: 16px;
+
}
+
div.gdl-price-item {
+
margin-bottom: 20px;
+
margin-top: 20px;
+
}
+
div.gdl-price-item .price-item {
+
-moz-border-bottom-colors: none;
+
-moz-border-image: none;
+
-moz-border-left-colors: none;
+
-moz-border-right-colors: none;
+
-moz-border-top-colors: none;
+
border-color: inherit;
+
border-style: solid;
+
border-width: 1px;
+
margin-left: -1px;
+
padding-bottom: 30px;
+
}
+
div.gdl-price-item .price-tag {
+
font-size: 35px;
+
font-weight: bold;
+
line-height: 40px;
+
padding-bottom: 20px;
+
padding-top: 20px;
+
text-align: center;
+
}
+
div.gdl-price-item .price-title {
+
font-size: 14px;
+
font-weight: bold;
+
padding-bottom: 8px;
+
padding-top: 8px;
+
text-align: center;
+
}
+
div.gdl-price-item .price-button {
+
margin-top: 25px;
+
text-align: center;
+
}
+
div.gdl-price-item .price-content {
+
margin-top: 25px;
+
text-align: center;
+
}
+
div.gdl-price-item .price-content .shortcode-list {
+
display: inline-block;
+
}
+
div.gdl-price-item .price-item.active {
+
margin-top: -20px;
+
padding-bottom: 70px;
+
}
+
.gdl-code {
+
background: none repeat scroll 0 0 #F9F9F9;
+
border: 1px solid #EEEEEE;
+
clear: both;
+
color: #555555;
+
font-family: "Consolas","Bitstream Vera Sans Mono","Courier New",Courier,monospace !important;
+
font-size: 13px;
+
margin-bottom: 20px;
+
overflow: hidden;
+
padding: 15px;
+
}
+
div.twitter-shortcode-wrapper {
+
position: relative;
+
}
+
ul.twitter-shortcode {
+
list-style: none outside none;
+
margin-left: 0;
+
}
+
ul.twitter-shortcode li {
+
font-size: 11px;
+
margin-right: 20px !important;
+
min-height: 18px;
+
padding-left: 40px;
+
}
+
div.jcarousellite-nav.twitter {
+
bottom: -3px;
+
right: 0;
+
top: auto;
+
z-index: 100;
+
}
+
div.twitter-shortcode-wrapper .jcarousellite-nav .prev {
+
height: 9px;
+
width: 6px;
+
}
+
div.twitter-shortcode-wrapper .jcarousellite-nav .next {
+
background-position: 6px 0;
+
height: 9px;
+
width: 6px;
+
}
+
div.under-slider-left {
+
background-color: #EEEEEE;
+
float: left;
+
margin-bottom: -1000px;
+
margin-left: 10px;
+
min-height: 1px;
+
overflow: hidden;
+
padding-bottom: 1000px;
+
position: relative;
+
width: 660px;
+
}
+
div.under-slider-right {
+
background: url("images/under-slider-right.png") repeat-x scroll 0 0 transparent;
+
float: left;
+
margin-bottom: -1000px;
+
min-height: 1px;
+
overflow: hidden;
+
padding-bottom: 1000px;
+
position: relative;
+
width: 280px;
+
}
+
span.wpcf7-form-control-wrap input[type="text"], span.wpcf7-form-control-wrap input[type="[password"], span.wpcf7-form-control-wrap textarea {
+
height: 30px;
+
line-height: 20px;
+
margin: 10px 5px;
+
padding: 0 0 0 7px;
+
width: 320px;
+
}
+
span.wpcf7-form-control-wrap input.wpcf7-file {
+
background-color: transparent;
+
border: medium none;
+
box-shadow: none;
+
height: auto;
+
margin-left: 0;
+
width: auto;
+
}
+
span.wpcf7-form-control-wrap textarea {
+
height: 165px;
+
line-height: 20px;
+
margin: 10px 5px;
+
max-width: 100%;
+
padding: 10px;
+
width: 590px;
+
}
+
div.wpcf7 p {
+
font-weight: bold;
+
}
+
div.wpcf7 p span.wpcf7-form-control-wrap textarea, div.wpcf7 p span.wpcf7-form-control-wrap input {
+
font-weight: normal;
+
}
+
div.wpcf7 .ajax-loader {
+
display: none;
+
}
\ No newline at end of file
diff --git a/src/stylesheet/ie-fix/PIE.php b/src/stylesheet/ie-fix/PIE.php
index 58a6f0a..9280626 100644
--- a/src/stylesheet/ie-fix/PIE.php
+++ b/src/stylesheet/ie-fix/PIE.php
@@ -1,19 +1,19 @@
-
\ No newline at end of file
diff --git a/src/woocommerce.php b/src/woocommerce.php
new file mode 100644
index 0000000..5a5a385
--- /dev/null
+++ b/src/woocommerce.php
@@ -0,0 +1,43 @@
+
+
+
+
+
+
\ No newline at end of file