/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #464646;
}

body {
    font-size: 13px;
    line-height: 1.4;
    background-color:#f0f0f0;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
.mobileOnly {
        display:none;
}

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min-resolution: 144dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow:none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ==========================================================================
   Typography
   ========================================================================== */
body{
    font-family:Arial, sans-serif;
}
p{
    color:#464646;
    font-size:14px;
    line-height:20px;
    margin: 0 0 1em 0;
}
a{
    color:#000000;
    text-decoration:underline;
}
a:hover {
    color:#f88d08;
    text-decoration:underline;
}
strong{
    font-weight:bold;
}
h1{
    color:#464646;
    font-size:24px;
    font-weight:bold;
    padding: 0.67em 0 1em 0;
}
h2{
    color:#f57b20;
    font-size:22px;
    font-weight:bold;
}
h2 a{
    color:#f57b20;
}
h3{
    color:#464646;
    font-size:20px;
    font-weight:bold;
}
h4{
    color:#242424;
    font-size:18px;
    font-weight:normal;
}
h5{
    color:#8dc63f;
    font-size:16px;
    font-weight:normal;
    margin: 0 0 1.67em 0;
}

/* ==========================================================================
   General layout
   ========================================================================== */
.site-background-wrapper{
    background-color: #ffffff;
}
.outer-wrapper {
	width: 1228px;
	margin:0 auto;
}
.inner-wrapper {
    width: 960px;
    margin:0 auto;
}
#header {
    position:relative;
	height:154px;
    background: url("../images/header_bubble_bg.png") right top no-repeat;
}
#header .logo{
    float:left;
	display:block;
	width:235px;
	margin-top:24px;
}
.top-utilities{
    position: absolute;
    top: 80px;
    left: 590px;
    width: 200px;
}
#top{
	float:right;
}
#navigation{
    position:relative;
    z-index:2;
    height: 58px;
}
#banner{
    position: relative;
    min-height: 58px;
    z-index: 1;
    top: -58px;
    margin-bottom: -58px;
}
#content {
	padding-bottom: 10px;
}
#footer {
	padding: 10px 0px;
	clear: both;
    padding-top:35px;
    margin-top: 30px;
    border-top:solid 4px #c6e29f;
    background-color: #f0f0f0;
    color:#464646;
    font-size:13px;
    overflow: hidden;
}
#right, #main, #left {
	float: left;
}
.one_column #main{
	width:960px;
}
.one_column #left, .one_column #right{
	display:none;
}
.two_column_r #right{
	width:300px;
    float:right;
    padding-top: 50px;
}
.two_column_r #main{
	width:585px;
}
.two_column_l #left{
	width:230px;
	margin-right:40px;
    margin-top: 35px;
}
.two_column_l #main{
	width:690px;
}
.two_column_l #right, .two_column_r #left{
	display:none;
}
.three_column #main{
	width:383px;
	margin-right:10px;
}
.three_column #right{
	width:197px;
}
.three_column #left{
	width:197px;
	margin-right:10px;
}
#content-top{
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: solid 2px #dcdcdc;
}
.two_column_l #content-top{
    float: right;
    width: 690px;
}
.two_column_r #content-top{
    width: 100%;
}

.separator, .clear{
	clear:both;
}
.buttonheading{
	float:right;
}

/* Home layout
   ========================================================================== */
#home-content{
    padding-top:40px;
    padding-bottom:50px;
}
#home-content .column{
    width:300px;
}
#home-content .column.left{
    float:left;
}
#home-content .column.middle{
    float:left;
    margin-left:30px;
}
#home-content .column.right{
    float:right;
}
#home-content .column .moduletable{
    float:left;
    clear:both;
    position: relative;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
ul.menu, .menu ul{
    list-style-type:none;
    margin:0;
    padding:0;
}
#navigation ul{
    list-style-type:none;
    margin:0;
    padding:0;
}
#navigation li a{ 
    display:none;
    text-decoration:none;
}
/* Top Level
   ========================================================================== */
#navigation li.level1 {
    position:relative;
    float:left;
}
#navigation li.level1 > a{
    float:left;
    display:block;
    padding: 0 40px;
    line-height:58px;
    font-size:18px;
    font-weight:bold;
    text-align:center;
    color:#ffffff;
    border-right:solid 1px #acdc69;
    background-color:#8dc63f;
}
#navigation li.level1 > a:hover, #navigation li.level1.active > a{
    background-color:#699a43;
}
#navigation li.level1.last a{
    border-right:none;
}
#navigation li.level1 a.feature{
    background-color:#f88d08;
}
#navigation li.level1 a.feature:hover{
    background-color:#f57b20;
}
/* Dropdown - Common
   ========================================================================== */
#navigation li.parent:hover > ul > li > a{
    display:block;
}
#navigation li.level2.parent > a:after,
#navigation li.level3.parent > a:after,
#navigation li.level4.parent > a:after{
    width:7px;
    height:10px;
    position:absolute;
    top:50%;
    right:15px;
    content: " ";
    margin-top:-5px;
    background:url("../images/arrow_green.png") no-repeat center right transparent;
}
#navigation li.level2.last a,
#navigation li.level3.last a,
#navigation li.level4.last a{
    border-bottom:none;
}
#navigation li.level2,
#navigation li.level3,
#navigation li.level4{
    position:relative;
    float: left;
    clear: left;
}
#navigation li.level2 > a,
#navigation li.level3 > a,
#navigation li.level4 > a{
    position:relative;
    overflow: hidden;
    float:left;
    width:186px;
    height:50px;
    padding-left:21px;
    padding-right:23px;
    border-bottom:1px solid #d5d7da;
    line-height:50px;
    font-size:14px;
    color:#464646;
    background-color:#ffffff;
}
#navigation li.level2 > a:hover,
#navigation li.level3 > a:hover,
#navigation li.level4 > a:hover{
    background-color:#f0f0f1;
}
#navigation li.level2.active > a,
#navigation li.level3.active > a,
#navigation li.level4.active > a{
    background-color:#eaf6da;
}
/* Level 2
   ========================================================================== */
#navigation li.level1 > ul{
    position:absolute;
    left:0;
    top:58px;
}
/* Level 3
   ========================================================================== */
#navigation li.level2 > ul{
    position: absolute;
    right: -230px;
}
#navigation li.level3 > a{
    -moz-box-shadow:    inset 10px 0 10px -13px #333;
   -webkit-box-shadow: inset 10px 0 10px -13px #333;
   box-shadow: inset 10px 0 10px -13px #333;
}
/* Level 4
   ========================================================================== */
#navigation li.level3 > ul{
    position: absolute;
    right: -230px;
}
#navigation li.level4 > a{
    -moz-box-shadow:    inset 10px 0 10px -13px #333;
   -webkit-box-shadow: inset 10px 0 10px -13px #333;
   box-shadow: inset 10px 0 10px -13px #333;
}
/* ==========================================================================
   Form Elements
   ========================================================================== */
input[type="text"], input[type="email"], textarea{
    box-sizing: border-box;
    line-height: 30px;
    height:36px;
    padding-left: 12px;
    background-color: #f0f0f0;
    border: 2px solid #e5e5e5;
    -webkit-border-radius: 3px; 
    -moz-border-radius: 3px; 
    border-radius: 3px;
}

textarea{
    line-height: 22px;
}



input[type="checkbox"], input[type="radio"] {
    position: absolute;
    left: -9999px;
    margin: 0;
    z-index: -999;
}
.checkbox_label, .radio_label{
    float: left;
    z-index: 1;
    display: block;
    cursor: pointer;
}
.checkbox_label, .radio_label{
    padding:0 35px;
}
.checkbox_label {
    line-height: 27px;
    height: 27px;
    background: url(../images/checkbox_sprite.png) no-repeat left top;
}
.radio_label{
    line-height: 26px;
    height: 26px;
    background-image: url(../images/radio_sprite.png);
    background-repeat: no-repeat;
    background-position: left top;
}
.checkbox_label.checked, .radio_label.checked{
    background-position: left bottom;
}
.selecter .selecter-selected,
.selecter .selecter-item {
    display: inline-block;
    max-width: 100%;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 3px 10px;
    -webkit-appearance: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.selecter {
    position: relative;
    display: inline-block;
    cursor: pointer;
    webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
}

.selecter.mobile {
    display: inline-block;
}

.selecter .selecter-element {
    left: -999999px;
    height: 100%;
    position: absolute;
    opacity: 0;
    width: 100%;
    z-index: 0;
}

.selecter .selecter-element,
.selecter .selecter-element:focus {
    outline: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}

.selecter .selecter-selected {
    padding-right: 38px;
    width: 100%;
    z-index: 2;
    position: relative;
    background-color: #f0f0f0;
}

.selecter .selecter-selected:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 15px;
    margin-top: -2px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #f88d08;
}

.selecter.open .selecter-selected:after {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.selecter .selecter-options {
    display: none;
    position: absolute;
    z-index: 99;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 300px;
    border: 1px solid #d4d4d4;
    border-top: 0;
    border-radius: 0 0 2px 2px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.selecter.open .selecter-options {
    display: block;
}

.selecter .selecter-item  {
    display: block;
    border: 0;
    border-top: 1px solid #d4d4d4;
    border-radius: 0;
    background-color: #f9f9f9;
}

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

.selecter .selecter-item.selected,
.selecter .selecter-options:hover .selecter-item:hover {
    background-color: #ededed;
}

.selecter .selecter-options .selecter-item:hover {
    background-color: #f9f9f9;
}
/* ==========================================================================
   Modules
   ========================================================================== */

/* Common
   ========================================================================== */
#right .moduletable {
    margin-bottom: 20px;
    padding-bottom: 25px;
    padding-left: 20px;
    border-bottom: 1px dotted #e3e3e3;
    overflow: hidden;
}
#right .moduletable:last-child{
    border-bottom:none;
}
#right .moduletable > h3{
    margin:0 0 20px 0;
    font-size:14px;
}
#right .moduletable a{
    color:#464646;
    text-decoration:none;
    font-weight:normal;
    font-size:13px;
}
/* EasyBlog Modules
   ========================================================================== */
/* home latest blogs module */
#home-content .ezblog-latestpost .mod-item{
    padding:0 !important;
}
#home-content .ezblog-latestpost .mod-post-image a{
    margin:0;
}
#home-content .ezblog-latestpost .mod-post-image img{
    border:none;
    padding:0;
    margin:0;
}
#home-content .ezb-mod .mod-post-image{
    margin:0;
}
#home-content .ezblog-latestpost .title a{
    float:left;
    width:100%;
    font-weight: bold;
    color: #464646;
    text-decoration: none;
    margin:20px 0;
}
#home-content .ezblog-latestpost .mod-post-more{
    margin-top:10px;
}

/* easyblog categories mod */
#right .ezb-mod .mod-item{
    float:left;
    width:49.9%;
    border: none;
    padding: 0 !important;
    margin: 0 0 6px 0 !important;
}
.ezb-mod .mod-category-name{
    color: #939393;
    font-size: 13px;
}
/* easyblog archive mod */
#right .mod_easyblogarchive .mod-months .mod-month{
    float: left;
    width: 45%;
    box-sizing: border-box;
    background: url(../images/blog_archive_month_arrow.gif) no-repeat 15px center;
    padding: 0 0 0 30px;
    margin-bottom: 6px;
    line-height: 13px;
}
#right .mod_easyblogarchive .mod-months{
    float: left;
    clear:both;
    width: 100%;
    margin-bottom: 5px;
}
#right .mod_easyblogarchive .mod-year{
    float:left;
    clear:both;
    width:100%;
}
#right .mod_easyblogarchive .mod-post-count{
    color:#939393;
}
#right .mod_easyblogarchive .mod-year a i{
    background: url(../images/blog_archive_year_arrows.gif) no-repeat;
    background-position: left bottom;
}
#right .mod_easyblogarchive .mod-year.toggle a i {
    background-position: left top !important;
}
#right .mod_easyblogarchive .active-year .mod-year a i {
    background-position: left bottom;
}
/* RSS module */
.rss-feed p {
    background:url(../images/rss-orange.gif) no-repeat left top;
    padding:2px 0 0 30px;
    line-height:18px;
}
/* Follow Us */
.follow-us ul {
    margin:0;
    padding:0;
}
.follow-us ul li{
    list-style: none;
    margin: 0 0 10px 0;
    float: left;
    padding-left:35px;
}
.follow-us .follow-twitter {
    background:url(../images/twitter-orange.gif) no-repeat left center;
}
.follow-us .follow-facebook {
    background:url(../images/facebook-orange.gif) no-repeat left center;
}
/* Footer Modules
   ========================================================================== */
.moduletable_footer_contact{
    float:left;
}
.moduletable_footer_contact .infoline{
    color:#8dc63f;
    font-weight:bold;
}
.moduletable_footer_contact a{
    color:#464646;
    text-decoration:none;
}

.moduletable_footer_sitemap{
    float:right;
    margin-bottom:15px;
}
.moduletable_footer_sitemap ul{
    list-style-type:none;
    margin:0;
    padding:0;
}
.moduletable_footer_sitemap li{
    float:left;
}
.moduletable_footer_sitemap li a{
    text-decoration:none;
    font-weight:bold;
    color:#000000;
}
.moduletable_footer_sitemap .separator{
    padding-left:6px;
    padding-right:6px;
    color:#dbdbdb;
}
.moduletable_footer_sitemap .first .separator{ /* this is the copyright text */
    padding:0;
    color:#464646;
}

.moduletable_footer_butterfly{
    float:right;
    clear:right;
}
.moduletable_footer_butterfly a{
    text-decoration:none;
    color:#959595;
    line-height:17px;
}
/* Home 'Take the test' Module
   ========================================================================== */
.moduletable_taketest_home{
    position:relative;
}
.moduletable_taketest_home a.badge {
    position:absolute;
    width:102px;
    height:98px;
    right:-20px;
    top:90px;
    background:url("../images/taketest_sprite.png") no-repeat top left;
    text-indent:-8888px;
}
.moduletable_taketest_home a.badge:hover{
    background-position:bottom left;
}
/* Top Utilities Modules
   ========================================================================== */
.top-utilities .moduletable{
    float:left;
    margin-left:20px;
}
/* Font Resizer */
.font-resizer a{
    float:left;
    height:22px;
    margin-top:9px;
    text-indent:-8888px;
    background:url("../images/fontsize_sprite.gif") no-repeat top left;
}
.font-decrease{
    width:11px;
}
.font-normal{
    width:15px;
    background-position: -11px 0px !important;
}
.font-increase{
    width:22px;
    background-position: -26px 0px !important;
}
/* Facebook Icon */
.top-utilities .facebook{
    display:block;
    width:39px;
    height:39px;
    background:url("../images/facebook_sprite.png") no-repeat top left;
    text-indent:-8888px;
}
.top-utilities .facebook:hover{
    background-position:left bottom;
}
/* Misc Modules
   ========================================================================== */
.moduletable_phone{
    margin-top:30px;
}
.moduletable .joomla_add_this{
    float:right;
}
/* Search Module
   ========================================================================== */
.moduletable_search{
    position:relative;
    width:246px;
    height:40px;
    margin-top:25px;
    background-color:#ffffff;
    border-top:solid 2px #de7b0c;
}
.moduletable_search input[type="text"]{
    box-sizing: border-box;
    height:40px;
    width: 100%;
    background: transparent;
    border: none;
    padding-left: 12px;
    padding-right: 35px;
    vertical-align:middle;
}
.moduletable_search input[type="submit"]{
    position:absolute;
    top:8px;
    right:10px;
    width:23px;
    height:23px;
    text-indent:-8888px;
    background:url("../images/search_icon.gif") no-repeat transparent;
    border:none;
}
/* Breadcrumb Module
   ========================================================================== */
.breadcrumb {
    float: left;
    margin:0;
    padding:0;
    list-style:none;
    line-height: 32px;
}
.breadcrumb li{
    float:left;
    font-size:13px;
    margin-right:5px;
}
.breadcrumb li.active{
    color:#838383;
}
/* Internal Menu Module - Generic
   ========================================================================== */
#left .moduletable{
    width:100%;
    margin-bottom: 30px;
}

#left .moduletable .menu .level1 a, #left .moduletable .menu .level1 .separator{
    display:none;
}

#left .moduletable .menu .level1.active a, #left .moduletable .menu .level1.active .separator{
   display:block 
}

#left .moduletable .menu .level1>a{
    background-color:#81868d;
    color:#ffffff;
    font-size:18px;
    font-weight:bold;
    padding: 14px 20px 
}


#left .moduletable .menu a{
    display:inline-block;
    width:100%;
    box-sizing:border-box;
    padding-left: 20px;
    font-size: 14px;
    text-decoration: none;
}

#left .moduletable .menu .last > a{
}

#left .moduletable .menu .level2 > a{
    color:#686868;
    padding: 14px 23px;
    font-weight:bold;
    background:url("../images/circle_grey.png") right 12px center no-repeat #d5d7da;
}
#left .moduletable .menu .level2 > a:hover, #left .moduletable .menu .level2.active > a{
    background-color:#b3b6bb;
    color:#ffffff;
}
#left .moduletable .menu .level3 > a{
    color:#ffffff;
    background:url("../images/arrow_white.png") no-repeat #8dc63f;
    padding: 14px 20px;
    border-bottom: solid 1px #acdc69;
    background-position: 91% center;
}

#left .moduletable .menu .level3 > a:hover, #left .moduletable .menu .level3.active > a{
    background-color: #78b34a;
}

#left .moduletable .menu .level3 > ul{
    border-top:1px solid #ededed;
    border-bottom:1px solid #ededed;
}
#left .moduletable .menu .level4 > a{
    display:none;
    color:#464646;
    border-bottom:1px solid #ededed;
}
#left .moduletable .menu .level4.active > a{
    color:#699a43;
}
/* Quicklinks Menu Module
   ========================================================================== */
.moduletable_quicklinks .menu{
    width:100%;
    list-style-type:none;
    margin:0;
    padding:0;
}
.moduletable_quicklinks a{
    width:100%;
    box-sizing:border-box;
    font-size: 14px;
    color: #ffffff;
    background:url("../images/arrow_white.png") no-repeat right 20px  center #699a43;
    font-weight: bold;
    text-decoration: none;
    border-bottom: solid 1px #4f8726;
    padding: 0 20px;
    display:inline-block;
}

.moduletable_quicklinks ul ul a{
    color: #333333;
    background-color: white;
    font-weight: normal;
    border-bottom: solid 1px #eee;
    border-left: solid 1px #eee;
    border-right: solid 1px #eee;
    padding: 12px 20px
}

.moduletable_quicklinks ul ul a:hover{
    background-color: white;
    color: #8dc63f
}

.moduletable_quicklinks>ul>li.last>a{
    border-bottom: 0 none
}
.moduletable_quicklinks a:hover{
    background-color:#8dc63f;
}
/* Hide quicklinks menu item icons by default, show them for homepage only */
.moduletable_quicklinks img{
    display:none;
}
#home-content .moduletable_quicklinks img{
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    margin-top:14px;
}
.moduletable_quicklinks .image-title{
    line-height:55px;
}

#home-content .moduletable_quicklinks a{
    height: 55px;
}

#home-content .moduletable_quicklinks .image-title{
    padding-left:60px;
}
/* Sidebar Orange Button Module i.e. 'Take the test'
   ========================================================================== */
.moduletable.sidebar-button-orange a{
    display:inline-block;
    width:100%;
    box-sizing:border-box;
    padding-left:20px;
    -webkit-border-radius: 3px; 
    -moz-border-radius: 3px; 
    border-radius: 3px; 
    line-height:55px;
    font-size:24px;
    color:#ffffff;
    font-weight:bold;
    text-decoration:none;
    background: url("../images/circle_orange_sprite.png") no-repeat 185px 14px #ffa12d;
}
.moduletable.sidebar-button-orange a:hover{
    background: url("../images/circle_orange_sprite.png") no-repeat 185px -42px #db6700;
}

/* ==========================================================================
   DJ Image Slider
   ========================================================================== */

/* Home Slider - Custom Buttons
   ========================================================================== */
.moduletable_homebanner .navigation-container-custom{
    bottom: 20px;
    right: 0 !important;
    margin-right: 135px;
    top: initial !important;
}
.moduletable_homebanner .navigation-container-custom span.load-button{
    background: transparent;
}
.moduletable_homebanner .navigation-container-custom span.load-button-active{
    background: #ffa12d !important;
}
.moduletable_homebanner .readmore{
    position:absolute;
    box-sizing: border-box;
    width: 260px;
    left:155px;
    bottom:70px;
    line-height:55px;
    padding:0 0 0 30px;
    -webkit-border-radius: 3px; 
    -moz-border-radius: 3px; 
    border-radius: 3px; 
    background: url("../images/circle_green_sprite.png") no-repeat 210px 13px #8dc63f;
    color:#ffffff;
    font-size: 24px;
    text-align: left;
    text-decoration:none;
}
.moduletable_homebanner .readmore:hover{
    background-color:#a1dd4f;
    background-position:210px -32px;
}
/* custom positions for banner readmore buttons */
.moduletable_homebanner ul li:nth-child(3) .readmore{
    left: 25%;
    margin-left: -130px;
    background-color:#ffa12d;
    background-image:url("../images/circle_orange_sprite.png");
}

.moduletable_homebanner ul li:nth-child(3) .readmore:hover {
	background-color:#db6700;
background-position: 210px -42px;
}

/* ==========================================================================
    Category Blog Layout
    ========================================================================== */

/* Single Column Layout
    ========================================================================== */
.blog .cols-1 .item{
    float: left;
    width: 100%;
    border-bottom: solid 2px #eeeeef;
    padding: 30px 0;
}
.blog .row-0 .item{
    padding-top:0;
}
.blog .cols-1 .item-image.pull-left{
    float: left;
    max-width:181px;
    margin-right: 40px;
    overflow:hidden;
}
.blog .cols-1 .item img{
    max-width:181px;
    height: auto;
}
.blog .cols-1 .text-wrapper{
    float: right;
    width: 469px;
}
.blog .cols-1 .page-header h2{
    margin-top: 0;
    font-size: 20px;
    color: #464646;
}

/* Double Column Layout
    ========================================================================== */
.blog .items-row.cols-2{
    float:left;
    width:100%;
    margin-bottom:40px;
}
.blog .cols-2 .item{
    float: left;
    width: 330px;
}
.blog .cols-2 .item.column-1{
    margin-right:30px;
}
.blog .cols-2 .item-image.pull-left{
    max-width:330px;
    overflow:hidden;
}
.blog .cols-2 .item img{
    max-width:330px;
    height: auto;
}
.blog .cols-2 p{
    color:#8dc63f;
    font-weight:bold;
    font-size:16px;
    line-height:22px;
}
.blog .cols-2 .page-header h2{
    font-size: 18px;
    color: #232323;
    font-weight:normal;
}
/* Pagination
   ========================================================================== */
.pagination{
    float:left;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
}
.pagination .counter{
    float:left;
    margin:0;
    font-size:15px;
    line-height: 15px;
    color:#000000;
}
.pagination-list{
    float:right;
    list-style:none;
    margin:0;
    padding:0;
}
.pagination-list li{
    float:left;
    padding: 0 4px;
    line-height: 15px;
    font-size:15px;
    border-right: 1px solid #dcdcdc;
}
.pagination-list a{
    text-decoration:none;
}
.pagination-list .num{
    padding: 0 5px;
}
.pagination-list .num a{
    text-decoration:underline;
}
.pagination-list .active{
    color:#f88d08;
}
.pagination-list .disabled{
    color:#838383;
}
.pagination-list .end{
    border-right:none;
}
/* Common i.e. readmore button
    ========================================================================== */
.blog .readmore .btn,
#ezblog-body .blog-readmore a,
.ezb-mod .mod-post-more a{
    position: relative;
    float: left;
    clear: left;
    line-height: 35px;
    padding: 0 30px 0 20px;
    background-color: #f88d08;
    color: #ffffff;
    font-size:14px;
    font-weight: bold;
    text-decoration: none;
    -webkit-border-radius: 3px; 
    -moz-border-radius: 3px; 
    border-radius: 3px; 
}
.blog .readmore .btn:hover,
#ezblog-body .blog-readmore a:hover,
.ezb-mod .mod-post-more a:hover{
    background-color:#db6700;
}
.blog .readmore .btn:after,
#ezblog-body .blog-readmore a:after,
.ezb-mod .mod-post-more a:after{
    position: absolute;
    top: 13px;
    right: 15px;
    width: 7px;
    height: 10px;
    content: " ";
    background: url("../images/arrow_white.png") no-repeat transparent;
}

#main .title_bold{
    color: #99cc00;
    font-weight: bold;
    padding-right: 5px
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact h3.title{
    margin-bottom:40px;
}

.contact .contact_details{
    min-height:147px;
}

.contact .contact_details p, #main .contact_right p{
    margin: 0 0 2px 0
}

.contact .contact_details .infoline{
    margin-top:15px;
}

.contact .contact_details img.map_thumb{
    margin-right: 40px;
    float: left;
    width:145px;
    height:143px;
}

.contact .contact_map #map-canvas {
    width: 100%;
    height: 252px;
}

.contact .contact_details,
.contact .contact_map{
    width: 48%;
    box-sizing: border-box;
    float: left;
    clear: left;
    margin-bottom: 40px;
}

.contact .contact_enquiries,
.contact .contact_prevention{
    width: 48%;
    box-sizing: border-box;
    float: right;
    margin-bottom: 40px
}

.contact .contactbox{
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    color: white;
}

.contact .contact_enquiries{
    min-height:147px;
    background: url("../images/contact_green.png") repeat;
    line-height:147px;
    padding: 0 34px; 
    font-size:22px;   
}

.contact .contact_enquiries .enquire{
    width:177px;
    height: 55px;
    background: url("../images/contact_green_btn.png") top no-repeat;
    display:inline-block;
    float: right;
    margin-top: 43px
}

.contact .contact_prevention{
    background: url("../images/contact_orange.png") repeat;
    padding: 40px 20px 30px 30px;
    position:relative;
}

.contact .contact_prevention:before{
    content: "";
    position:absolute;
    width:187px;
    height:152px;
    top:15px;
    right:30px;
    background: url("../images/request_book.png") no-repeat;
}

.contact .contact_prevention .text{
    width: 44%
}

.contact .contact_prevention p, .contact .contact_prevention h4{
    color: white;
}

.contact .contact_prevention h4{
    margin: 0 0 10px 0;
    font-weight: normal;
    font-size: 22px;
}

.contact .contact_prevention .order_pack{
    width:217px;
    height: 55px;
    background: url("../images/contact_orange_btn.png") top no-repeat;
    display: inline-block;
    float: right;
}

.contactbox .enquire:hover, .contactbox .order_pack:hover{
    background-position: bottom
}

#contact_popup{
    display:none;
    margin-top:20px;
}

.popup {
    z-index: 9;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    display: none;
}

.popup_inner {
    background: #fff;
    max-width: 640px;
    width: 70%;
    padding: 50px;
    position: relative;
    top: 10%;
    margin: auto;
    color: #999;
    font-weight: normal;
    border-radius: 15px;
    z-index: 11;
}

.popup_overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.75);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4C000000', endColorstr='#4C000000');
}

/* Contact Us popup form 
   ========================================================================== */
.popup_inner a.close {
    opacity: 1;
    display: block;
    width: 45px;
    height: 44px;
    overflow: hidden;
    text-indent: -100px;
    background: transparent url("../images/close.png") no-repeat top;
    position: absolute;
    right: 35px;
    top: 30px;
}

.popup_inner a.close:hover{
    background-position: bottom
}

#main iframe {
    border: 0 none;
}

#risk-test-result,
#risk-test-nextsteps,
body.contentpane form {
    border-radius:4px;
    background:white;
}

body.contentpane{
    background: none;
    overflow: hidden;
}

body.contentpane h3{
    margin: 0 0 15px 0;
    font-size: 22px;
}

body.contentpane .underline{
    padding-bottom: 20px;
    border-bottom: 2px solid #c6e29f
}

.contact .fancybox-close {
    top: 30px;
    right: 40px;
}

.bfQuickMode .bfPageIntro h3{
    padding-bottom: 20px;
    margin-top: 0;
    border-bottom: 4px solid #c6e29f;
}

.bfQuickMode .bfLabelLeft label{
    width: 120px;
    font-weight: bold;
    margin-right: 15px;
}

.bfQuickMode section.bfElemWrap {
    margin-bottom: 6px;
    float: left;
    overflow:visible;
}

.bfQuickMode input[type="text"], .bfQuickMode textarea{
    box-sizing: border-box;
    line-height: 45px;
    padding-left: 12px;
    background-color: #f0f0f0;
    border: 2px solid #e5e5e5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.bfQuickMode textarea:focus, .bfQuickMode input[type='text']:focus, .bfQuickMode input[type='password']:focus, .bfQuickMode select:focus {
    border-color: #c6e29f;
}

.bfQuickMode textarea{
    line-height: 22px;
}

/*.bfQuickMode select{
    box-sizing: border-box;
    line-height: 45px;
    padding: 0 12px;
    background-color: #f0f0f0;
    border: 2px solid #c6e29f;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 45px
}*/

/* Select replacement */
.bfQuickMode .selecter .selecter-options {
    padding: 10px 0;
    background-color: #ffffff;
}

.bfQuickMode .selecter .selecter-selected{
    line-height: 45px;
    box-sizing: border-box;
    border: 2px solid #e5e5e5;
    width: 470px;
}

.bfQuickMode .selecter .selecter-item {
    background-color: #ffffff;
    border: none;
}

.bfQuickMode .selecter .selecter-item.selected {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
}

.bfQuickMode input[type='text'] {
    height: 51px;
}

.bfQuickMode textarea{
    min-height:150px;
} 

.bfQuickMode section input[type='text'], .bfQuickMode section textarea, .bfQuickMode section select{
    width: 470px;
}

.bfQuickMode .bfCaptcha img#ff_capimgValue{
    width: 180px;
}

.bfQuickMode .bfNextButton, .bfQuickMode .bfSubmitButton, .bfQuickMode .bfCancelButton {
    background: #8dc63f;
    color: white;
    border: 0 none;
     -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size:24px;
    padding: 12px 30px;
    text-transform:capitalize;
    cursor: pointer;
}

.bfQuickMode .bfNextButton:hover, .bfQuickMode .bfSubmitButton:hover, .bfQuickMode .bfCancelButton:hover {
    background: #679146
}

.contact_us.bfQuickMode .bfSubmitButton{
    clear:both;
}
<<<<<<< HEAD
/* ==========================================================================
   Fancybox
   ========================================================================== */

.fancybox-overlay .fancybox-skin{
    padding:40px !important;
    background-color:#ffffff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.fancybox-overlay .fancybox-opened .fancybox-outer {
    box-shadow: none;
    background: transparent;
}
body.contentpane .item-page{
    overflow: hidden;
}
.fancybox-overlay .fancybox-close {
    top: -20px;
    right: -20px;
    position: absolute;
    top: 30px;
    right: 40px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 8040;
    background: transparent url("../images/close.png") no-repeat;
    background-position:top left;
}
.fancybox-overlay .fancybox-close:hover{
    background-position:bottom left;
}

/* specific fancybox styles for the Risk Test */
.risktest.fancybox-skin { /*resets padding for fancybox wrapper for AUSDRISK test (as other fancyboxes may have padding on separate pages)*/
    padding: 0 !important;
    background:none !important;
}
.risktest .fancybox-close {
    top: -20px;
    right: -20px;
}

/* ==========================================================================
   Risk Test Articles
   ========================================================================== */
/* Landing Page
   ========================================================================== */
#risk-test-intro{
    -webkit-border--radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width:100%;
    overflow: hidden;
}
#risk-test-intro .top{
    position:relative;
    overflow: hidden;
    background: url('/images/risk-assessment-survey/view_their_stories.png') 45px 155px no-repeat transparent
}
#risk-test-intro .top h1{
    padding-top:55px;
    text-align: center;
    font-size:40px;
    font-weight:normal;
    color:#464646;
    background-color:white;
    margin:0;
}
#risk-test-intro .top h1 strong{
    color:#f88d08;
}
#risk-test-intro .bottom{
    background-color: #f88d08;
    color:#ffffff;
    padding: 43px;
    overflow: hidden;
    height: 150px;
    box-sizing: border-box;
}
#risk-test-intro .count-container{
    float: left;
    width: 550px;
    margin-top:10px;
    vertical-align: middle;
    color: #ffffff;
}
#risk-test-intro .count-container .surveycount{
    float: left;
    font-size: 48px;
    font-weight: bold;
    line-height: 48px;
}
#risk-test-intro .count-container p{
    float: left;
    width: 180px;
    margin-left: 20px;
    margin-right:20px;
    font-size: 18px;
    line-height: 22px;
    color:#ffffff;
}
#risk-test-intro .count-container .facebook-share{
    float:left;
    margin-top: 5px;
}
.facebook-share{
    display:inline-block;
    width:107px;
    height:34px;
    background-image: url(../images/facebook_share_sprite.png);
    background-repeat:no-repeat;
    background-position:top left;
    text-indent:-8888px;
}
.facebook-share:hover{
    background-position:bottom left;
}
#risk-test-intro a.check-risk{
    width:266px;
    height:63px;
    float:right;
    background:url('/images/risk-assessment-survey/checkmyrisk_button_sprite.png') top left no-repeat transparent;
    text-indent: -8888px;
}
#risk-test-intro a.check-risk:hover{
    background-position:bottom;
}
#risk-test-intro .bottom .right p{
    width:267px;
    float:right;
    margin-top:20px;
    margin-bottom: 0;
    line-height:18px;
    font-size: 14px;
}
#risk-test-intro .profile{
    position:absolute;
    bottom: 0;
}
#risk-test-intro .hover-content{
    padding:20px 27px 10px;
    position:absolute;
    top: -15px;
    width: 405px;
    background-color:#fdfffa;
    border: 6px solid #e9f5df;
    -webkit-border--radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
#risk-test-intro .profile > img{
    position: absolute;
    bottom: 0;
}
#risk-test-intro .hover-content:before, #risk-test-intro .hover-content:after{
    content: " ";
    width: 0;
    height: 0;
    position: absolute;
    border: solid transparent;
}
#risk-test-intro .left-arrow.hover-content:before{
    border-width:24px;
    top: 63px;
    right:100%;
    border-right-color:#e9f5df;
}
#risk-test-intro .left-arrow.hover-content:after{
    border-width:15px;
    top: 72px;
    right:100%;
    border-right-color:#fdfffa;
}
#risk-test-intro .right-arrow.hover-content:before{
    border-width:24px;
    top: 63px;
    left:100%;
    border-left-color:#e9f5df;
}
#risk-test-intro .right-arrow.hover-content:after{
    border-width:15px;
    top: 72px;
    left:100%;
    border-left-color:#fdfffa;
}

#risk-test-intro .hover-content img{
    float:left;
    width:70px;
    height:70px;
}
#risk-test-intro .hover-content h4{
    color:#36383c;
    font-family: 'Montserrat', sans-serif;
    font-weight:normal;
    font-size:24px;
    margin-top:15px;
    margin-bottom:20px;
    float:right;
    width:320px;
}
#risk-test-intro .hover-content p{
    color:#454545;
    font-size:14px;
    line-height:16px;
    float:right;
    width:320px;
}
#risk-test-intro area:focus{
    outline:none;
}
#risk-test-intro #map-wrap{
    position: relative;
    height: 316px;
    background:white;
}
#risk-test-intro #map{
    left: 103px;
    width:765px;
    height:316px;
    position:absolute;
    z-index:2;
}
#risk-test-intro #people{
    left: 103px;
    width:765px;
    height:316px;
    position:absolute;
    background:url('/images/risk-assessment-survey/people.png') top left no-repeat transparent;
    z-index:1;
}
#priya-bubble {
    position:absolute;
    left: 115px;
    top:-41px;
    display:none;
    z-index:100;
    width:384px;
    height:334px;
    background:url('/images/risk-assessment-survey/priya_bubble.png') top left no-repeat transparent;
}
#brendan-bubble {
    position:absolute;
    left: 257px;
    top: -41px;
    z-index:102;
    display:none;
    width:381px;
    height:334px;
    background:url('/images/risk-assessment-survey/brendan_bubble.png') top left no-repeat transparent;
}
#bridget-bubble {
    position:absolute;
    left: -55px;
    top: -41px;
    z-index: 103;
    display:none;
    width:381px;
    height:336px;
    background:url('/images/risk-assessment-survey/bridget_bubble.png') top left no-repeat transparent;
}
#barry-bubble {
    position:absolute;
    display:none;
    left: 240px;
    top: -41px;
    z-index:104;
    width:381px;
    height:336px;
    background:url('/images/risk-assessment-survey/barry_bubble.png') top left no-repeat transparent;
}
#kim-bubble {
    position:absolute;
    left: 506px;
    top: -41px;
    z-index:105;
    display:none;
    width:341px;
    height:334px;
    background:url('/images/risk-assessment-survey/kim_bubble.png') top left no-repeat transparent;
}
/* Results Pages
   ========================================================================== */
#risk-test-result.low-risk,
#risk-test-result.medium-risk{
	text-align:center;
}

#risk-test-result{
	    padding:40px;
}
#risk-test-result #score-range{
    position:relative;
    text-align:center;
}
#risk-test-result .surveyscore{
    position: absolute;
    top: 14px;
    left: 197px; /*188px*/
    font-size: 20px;
    color: #F8FBF5;
    font-weight: bold;
}
#risk-test-result #risk-info{
    position:relative;
}
#risk-test-result #risk-info h4{
    color:#000000;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}
#risk-test-result #risk-info p{
    color:#444444;
}
#risk-test-result #risk-info p a{
    font-weight:bold;
}
#risk-test-result #share{
    overflow:hidden;
}
#risk-test-result #share p{
    float:left;
    font-size:13px;
    line-height: 34px;
    color:#000000;
    margin-bottom: 0;
}
#risk-test-result #share p a{
    color: #8dc63f;
    text-decoration: none;
    font-weight: bold;
}
#risk-test-result #share .facebook-share{
    float:right;
}
#risk-test-result hr{
    border-top: 5px solid #ececec;
    margin-top: 30px;
    margin-bottom: 30px;
}
/* quit smoking content is conditional, generated in 'survey smoker' module */
/* module now moved up to main result content - no longer at bottom and right-aligned 
#risk-test-result .quit-smoking{
    border-top: 5px solid #ececec;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 30px;
}
#risk-test-result .quit-smoking p{
    text-align:right;
    font-size:13px;
    color:#000000;
    margin-bottom:0;
}
*/
/* high and medium risk specific */
#risk-test-result .next-steps{
    position:absolute;
    width:286px;
    height:55px;
    background:url('/images/risk-assessment-survey/nextsteps_button_sprite.gif') top left no-repeat transparent;
    text-indent: -8888px;
    top:70px;
    right:0;
}
#risk-test-result .next-steps:hover{
    background-position:bottom;
}
#risk-test-result.medium-risk #risk-info p,
#risk-test-result.high-risk #risk-info p{
    width:530px;
}
#risk-test-result.high-risk #risk-info p span{
    color:#f88d08;
    font-weight:bold;
}
/* 'Next Steps' Page - high risk results contact form (breezing form)
   ========================================================================== */
#risk-test-nextsteps{
    padding:40px;
}
#risk-test-nextsteps h2{
    margin-top: 0;
}
.contentpane iframe{
    border: none !important;
}
.contentpane #thankyou-message{
    padding:40px;
}
.risk-test-contact.bfQuickMode input[type='text']:focus {
    border-color: #f88d08;
}
.risk-test-contact.bfQuickMode section input[type='text']{
    width:350px;
}
.risk-test-contact.bfQuickMode .bfLabelLeft label{
    width:160px;
}
.risk-test-contact.bfQuickMode section.bfElemWrap{
    width:100%;
}
.risk-test-contact.bfQuickMode .bfSubmitButton{
    margin-left: 390px;
    float: left;
    margin-top: 10px;
    background-color:#f88d08;
}
.risk-test-contact.bfQuickMode .bfSubmitButton:hover{
    background-color:#f57b20;
}
.formError{
    z-index:99999;
}
.formError .formErrorContent,
.formError .formErrorArrow div,
.ff_elem654formError .formErrorContent,
.ff_elem654formError .formErrorArrow div,
.ff_elem659formError .formErrorContent,
.ff_elem659formError .formErrorArrow div,
.ff_elem664formError .formErrorContent,
.ff_elem664formError .formErrorArrow div
{
    background-color:#f88d08;
}
.home-3 #home-content .ezblog-latestpost .mod-post-image img {
display: block;
margin: 0 auto;
float: none;
}

.font-resizer a.link_top{
width: 58px;
background: none;
text-indent: 0;
margin-top: 0;
line-height: 50px;
text-decoration: none;
height:100%;
color:#939393;
font-weight:bold;
font-size:20px;
  padding-right: 5px;
}
.bfquiz_plus .suppressed.itemWrap{
min-height: auto;
}


/* ==========================================================================
   Order Product Form
   ========================================================================== */
form.orderform .bfElemWrap > .radio_label {
    background-image: none;
    margin-left: 0;
    padding: 0;
    width: auto;
    margin-right: 30px;
}

form.orderform .bfElementGroupNoWrap {
    width: auto !important;
}

.bfLabelLeft .bfElementGroupNoWrap label {
    margin: 0px 20px 10px 0px;
    padding: 6px 0px 5px 39px;
}

form.orderform input[type="text"], form.orderform input[type="email"], textarea {
    box-sizing: border-box;
    line-height: 30px;
    height: 36px;
    padding-left: 12px;
    background-color: #f0f0f0;
    border: 2px solid #e5e5e5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 100%;
}

form.orderform .bfQuickMode .bfLabelLeft label {
    line-height: 26px;
}

form.orderform .bfNoSection section.bfElemWrap {
    margin-bottom: 6px;
    float: left;
    overflow: visible;
    padding: 5px 0 10px;
    width: 47%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin-right: 5%;
}

form.orderform .bfNoSection section.bfElemWrap:nth-child(odd) {
    margin-right:0;
}

form.orderform:before {
    content: "";
    background-image: url(../images/required_asterix.png);
    width: 20px;
    height: 30px;
    position: absolute;
}

form.orderform #bottom {
    clear: both;
}

form.orderform  #bottom  section.bfElemWrap {
    width:60%;
    margin:0;
}


form.orderform  #bottom input[type="text"]{
    width: auto;
}

form.orderform .bfSubmitButton {
    background-color: #f88d08 !important;
    display:inline-block;
    padding: 0 30px;
    line-height: 36px;
    border: 0;
    margin-left: 10px;
    color: #ffffff;
    font-weight: bold;
    background-color: #f88d08;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-decoration:none;
    font-size: 13px;

}

#content-top .joomla_add_this{width:250px;}
.home-3 #home-content .blog_last .ezblog-latestpost .mod-post-image img{display: block;
margin: 0 auto;
float: none;}

.progress-meter {
	position: relative;
	padding-bottom: 10px;
    margin-bottom:10px;
}
.progress-meter h1 {
    color:#f88d08;
    text-align:center;
    padding:0; margin:0;
    margin-bottom:10px;
}
.progress-meter > span {
    height:20px;
	display: block;
	   -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
	    -moz-border-radius-bottomright: 20px;
	    border-radius:20px;
    background-color: #8dc63f;
	background-color: rgb(141,198,63);
    position: relative;
	overflow: hidden;
}
.slide-desc-bg { background-color:transparent;}
