@charset "UTF-8";

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #969696;
}

#ControlBar_ControlPanel #ControlBar{
	z-index: 9999;
}

/* DNN Body */
#Body {
    /* CSS3 */
    background: #F3F3F3; /* Old browsers */
    min-height: 1px;
}

/*------------------------------------------------*/
/* FONT STYLE */
/*------------------------------------------------*/
body, th, td, table, h1, h2, h3, h4, h5, h6,
.Head, .SubHead, .SubSubHead,
.Normal, .NormalBold, .NormalRed, .NormalTextBox, .NormalDisabled,
a:link, a:visited, a:hover, input, .CommandButton {
    font-family: Arial, Helvetica, sans-serif;
}

em {
    font-style: italic;
    letter-spacing: 0;
}

strong {
    font-weight: bold;
}

small {
    font-size: 12px;
    letter-spacing: 0;
}

#bold {
    font-weight: bold;
}
.bold {
    font-weight: bold;
}


/*------------------------------------------------*/
/* HEADER STYLE */
/*------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 26px;
}

h2, h2 .Head {
    font-size: 18px;
}

h3, h3 .Head {
    font-size: 18px;
    color: #666;
}

h4, h4 .Head {
    font-size: 16px;
    color: #666;
}

h5, h5 .Head {
    font-size: 14px;
    color: #666;
}

h6, h6 .Head {
    font-size: 13px;
    color: #666;
}

/*------------------------------------------------*/
/* ANCHOR STYLE */
/*------------------------------------------------*/
a, a:link, a:visited, a:active {
    color: #3B96B6;
    text-decoration: none;
}

    a:hover {
        color: #D00;
        text-decoration: none;
    }

/* DNN Specific Selectors 
-------------------------------------*/
.CommandButton {
    font-size: 13px;
    color: #3d3d3d;
    font-weight: bold;
}

    .CommandButton:hover {
        color: #007cae;
    }

a.CommandButton:link {
    font-size: 13px;
    text-decoration: none;
    color: #3d3d3d;
    font-weight: bold;
}

a.CommandButton:hover {
    text-decoration: underline;
    color: #007cae;
}

/*------------------------------------------------*/
/* PARAGRAPH STYLE */
/*------------------------------------------------*/
p {
    margin: 0 0 10px 0;
}

hr {
    clear: both;
    height: 0;
    border: solid #c0c0c0;
    border-width: 1px 0 0;
    margin: 5px 0 5px 0;
}

/*------------------------------------------------*/
/* IMAGE STYLES */
/*------------------------------------------------*/
img {
    border: 0;
}

/* Image Align Left 
    -------------------------------------*/
.imgLeft {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

/* Image Align Right 
    -------------------------------------*/
.imgRight {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

/* Image with border 
    -------------------------------------*/
.imgBorder {
    border: solid 3px #fff;
}

/* Polaroid Image Style 
    -------------------------------------*/
.imgPolaroid {
    color: #a6a6a6;
    font-size: 12px;
    text-align: left;
    padding: 13px 13px 17px 13px;
    background-color: #fff;
    box-shadow: 0 1px 2px #ccc;
}

    .imgPolaroid img {
        margin-bottom: 12px;
    }

/*------------------------------------------------*/
/* lIST STYLE */
/*------------------------------------------------*/


/* Ordered List */
ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
    vertical-align: top;
}

ol ol {
    margin-top: 8px;
    margin-left: 30px;
}

    ol ol li {
        list-style-type: lower-roman;
    }

    ol ol ol li {
        list-style-type: lower-alpha;
    }

ol ul li {
    list-style-type: lower-roman;
}

/*------------------------------------------------*/
/* TABLE STYLE */
/*------------------------------------------------*/

/* Default Table Style */
table.tableDefault {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
}

    table.tableDefault th,
    table.tableDefault td {
        font-size: 12px;
        padding: 8px;
    }

    table.tableDefault th {
        font-weight: bold;
        text-align: left;
        border-bottom: solid 2px #aaa;
        background-color: #d7d7d7;
    }

    table.tableDefault td {
        border-bottom: solid 1px #d9d9d9;
    }

    table.tableDefault tr:nth-child(odd) {
        background: #transparent;
    }

    table.tableDefault tr:nth-child(even) {
        background: #e3e4e6;
    }

.tableDefault tbody tr:hover td {
    color: #111;
}

/*------------------------------------------------*/
/* FORM STYLE
/*------------------------------------------------*/
input[type="text"], select, textarea, input[type="search"], input[type="password"] {
	
    padding:0px;
    border: 1px solid #bfbfbf;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 13px;
	outline: 0;
	behavior:url(/PIE.htc);
}

input[type="text"]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder{
color:#A4A4A4;
}

/*------------------------------------------------*/
/* BUTTONS STYLE */
/*------------------------------------------------*/
/* Primary Style Button (blue)*/
button.primaryButton,
a.primaryButton {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #3B96B6;
    background: -moz-linear-gradient(top, #1aa0c9 0%, #1aa0c9);
    background: -webkit-gradient(linear, left top, left bottom, from(#1aa0c9), to(#1aa0c9));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffffff;
    -moz-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    -webkit-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

/* Secondary Style Button (darkgray) */
button.secondaryButton,
a.secondaryButton {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #666;
    background: -moz-linear-gradient(top, #8a8a8a 0%, #8a8a8a);
    background: -webkit-gradient(linear, left top, left bottom, from(#8a8a8a), to(#8a8a8a));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffffff;
    -moz-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    -webkit-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

/* Alternative Style Button (darkgray with arrow) */
button.altButton,
a.altButton {
    display: inline-block;
    padding: 9px 32px 9px 22px;
    margin-bottom: 5px;
    background: #484848 url('images/arrow.png') no-repeat 87% center;
    background: url('images/arrow.png') no-repeat 87% center, -moz-linear-gradient(top, #3d3d3d 0%, #3d3d3d);
    background: url('images/arrow.png') no-repeat 87% center, -webkit-gradient(linear, left top, left bottom, from(#3d3d3d), to(#3d3d3d));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffbf00;
    -moz-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 0px rgba(255,255,255,0);
    -webkit-box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 0px rgba(255,255,255,0);
    box-shadow: 0px 0px 0px rgba(000,000,000,0), inset 0px 0px 0px rgba(255,255,255,0);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

a.dnnPrimaryAction {
    color: #efefef;
}

a.dnnSecondaryAction {
    color: #555;
}

button.primaryButton:hover,
button.secondaryButton:hover,
a.primaryButton:hover,
a.secondaryButton:hover {
    cursor: pointer;
    cursor: hand;
    background-image: none;
    background-color: #D00;
}

button.altButton:hover,
a.altButton:hover {
    cursor: pointer;
    cursor: hand;
    background: #D00 url('images/arrow.png') no-repeat 87% center;
}
/*------------------------------------------------*/
/* Buttons
/*------------------------------------------------*/
.buttonContent
{
	float:left;
	cursor:pointer;
}
.purpleBtnLeft, .purpleBtnRight, .purpleBtnBg 
{
	float:left;
}
.purpleBtnLeft
{
	width:3px;
	height:35px;
	background: url('/ImageFile/purpleBtnLeft.png') no-repeat;
}
.purpleBtnRight
{
	width:2px;
	height:35px;
	background: url('/ImageFile/purpleBtnRight.png') no-repeat;
}
.purpleBtnBG
{
	height:25px;
	padding:7px 20px 8px 20px;
	color:white;
	font-weight:700;
	font-size:16px;
	font-family:"Arial";
	background: url('/ImageFile/orangeBtnBG.png') repeat-x;
}

/*------------------------------------------------*/
/* SITE SPACING
/*------------------------------------------------*/
.spacingTop {
    margin-top: 10px;
}

 .spacingRight {
    margin-right: 30px;
}

.spacingBottom {
    margin-bottom: 30px;
}
.spacingBottom>div{
    margin-bottom: 20px;
}

.spacingLeft {
    margin-left: 30px;
} 

/*------------------------------------------------*/
/* SITE STRUCTURE */
/*------------------------------------------------*/
#siteWrapper
{
background: #F3F3F3;
}

#userControls {
    height: 32px;
}

.wrapper {
    margin: 0 Auto;
    width: 1011px;
}

/*------------------------------------------------*/
/* SEARCH */
/*------------------------------------------------*/
.searchOuter
{
	float:left;
}
.searchWrapper
{
}
.header_select {
float:left;
background:url('/ImageFile/select_down_arrow.png') no-repeat 175px 15px, white;
overflow:hidden;
height:32px;
margin-top:20px;
width: 190px;
border: 2px solid #acacac;
border-left:none;
border-radius: 0px !important;
-moz-border-radius: 0px !important;
-webkit-border-radius: 0px !important;
font-size: 12px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.topSearchBtn
{
	padding-top:20px;
	float:left;
	padding-left:10px;
}
.searchBar
{
	
}
.searchLeft
{
	margin-top:20px;
	float:left;
	width:3px;
	height:37px;
	background: white url('/ImageFile/search_left.gif') no-repeat;
}
.searchBar input[type=text] {
	width: 413px;
	border-top: 2px solid #acacac;
	border-bottom: 2px solid #acacac;
	border-right: 2px solid #acacac;
	border-left: 2px solid #acacac;
	background-color: white;
	padding:9px;
	padding-top:8px;
	padding-left: 15px;
	font-size: 12px;
	margin-top:20px;
	
}

.searchBar .header_select select {
	float: left;
	width: 210px;
	background:transparent;
	padding:5px 0 5px 10px;
	height: 33px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border:0px;
}
/* Top Search */
.topSearch {
}
/* .topSearch .arrow{
	background: url('/images/arrow.png');
	width:10px;
	height:10px;
	float:left;
	margin-top:3px;
} */
.topSearch li {
	display: inline;
	float:left;
	padding-left:20px;
	font-size:12px;
}
.topSearch ul {
	display: block;
	list-style: none;
	padding-bottom:5px;
	float:left;
}
.topSearch ul a {
	text-decoration:underline;
}
.topSearch span {
	display:inline;
	position:relative;
	float:left;
	left:10px;
	
}
.topSearch span a {
	color:black;
	font-size:11px;
	padding-bottom:3px;
}

/*------------------------------------------------*/
/* LOGIN */
/*------------------------------------------------*/

/*------------------------------------------------*/
/* SITE HEADER */
/*------------------------------------------------*/
#siteHeadouter {
    /*background: #fff;*/
	background: #383838;
	min-width:1011px;
    /* CSS3 */
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index:999;
	background-image:url('Images/topbar_bg.jpg');
}

#siteHeadinner{
    padding: 0px 0;
	width:1000px;
}
div.siteHeaderWidth{
	width:1015px;
}
.searchBar {
    padding: 0px 0;
}

#logo {
    float: left;
	margin-top:3px;
}
/* Login Control */
#loginPanel {
	float:right;
	height:68px;
}

/* Language */
.language .language-object {

    margin: 0;
    padding: 0;
}

/*------------------------------------------------*/
/* NAVIGATION */
/*------------------------------------------------*/

/* Site Navigation */
#nav_top{
	font-family: 'Droid Sans', sans-serif;
    float: left;
    position: relative;
    top: 0px;
	margin-left:15px;
	z-index:100;
}

#nav {
	font-family: 'Droid Sans', sans-serif;
    float: right;
    position: relative;
    top: 0px;
}

#dnn_pnav{
float:left;
z-index:1000;
}

#dnn_pnav .topMenu_left{
background:url("Images/topMenu_left.png") no-repeat;
width:6px;
height:40px;
float:left;
/* transition decleration */
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; /* Firefox 4 */
    -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
    -o-transition: all ease-in 200ms; /* Opera */
    -ms-transition: all ease-in 200ms; /* IE9? */
}

#dnn_pnav .topMenu_right{
background:url("Images/topMenu_right.png") no-repeat;
width:16px;
height:40px;
float:left;
/* transition decleration */
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; /* Firefox 4 */
    -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
    -o-transition: all ease-in 200ms; /* Opera */
    -ms-transition: all ease-in 200ms; /* IE9? */
}

#dnn_pnav li {
position: relative;
list-style: none;
margin: 0;
}

#dnn_pnav li ul {
margin-left: 0;
}

#dnn_pnav > li {
float: left;
height: 40px;
padding-top: 0px;
margin-right: 8px;
margin-top:17px;
}

#dnn_pnav > li > a, #dnn_pnav > li > span {
display: block;
border:1px solid #050507;
border-bottom:2px;
float:left;
font-size: 16px;
font-weight: bold;
color: #fff;
width:75px;
text-decoration: none;
background:url("Images/topMenu_drop.png")no-repeat 110px 17px, #464646;
padding:12px 40px 0 20px;
height:30px;
/* transition decleration */
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms; /* Firefox 4 */
    -webkit-transition: all ease-in 200ms; /* Safari and Chrome */
    -o-transition: all ease-in 200ms; /* Opera */
    -ms-transition: all ease-in 200ms; /* IE9? */
}

#dnn_pnav > li > span {
cursor: default;
}

#dnn_pnav > li:hover > .topMenu_left, #dnn_pnav > li.active > .topMenu_left{
background:url("Images/topMenuHover_left.png") no-repeat;
height:51px;
}

#dnn_pnav > li:hover > .topMenu_right, #dnn_pnav > li.active > .topMenu_right{
background:url("Images/topMenuHover_right.png") no-repeat;
height:51px;
}

#dnn_pnav > li.active > a {
background:url("Images/topMenu_drop.png")no-repeat 110px 17px, url("Images/topMenuHover_bg.png")repeat-x;
color: BLACK;
padding:12px 40px 15px 20px;
height:30px;
border:none;
}

#dnn_pnav > li:hover > a {
background:url("Images/topMenu_drop.png")no-repeat 110px 17px, url("Images/topMenuHover_bg.png")repeat-x;
color: BLACK;
padding:12px 40px 15px 20px;

height:30px;
border:none;
}

#dnn_pnav > li:hover > a:active {
color: BLACK;
}

#dnn_pnav > li:hover > span {
color: BLACK;
}

/* Secondary level */
#dnn_pnav > li ul { /* Styles for all sub levels */
display: none;
position: absolute;
z-index: 2;
width: 300px;
padding: 0;
background: #F0F0F0;
border-bottom:1px solid #C9C9C9;
border-left:1px solid #C9C9C9;
border-right:1px solid #C9C9C9;
/* CSS3 */
border-radius: 0px;
-webkit-animation-duration: .05s;
-webkit-animation-delay: .05s;
-webkit-animation-timing-function: ease;
-webkit-animation-fill-mode: both;
-moz-animation-duration: .05s;
-moz-animation-delay: .05s;
-moz-animation-timing-function: ease;
-moz-animation-fill-mode: both;
-ms-animation-duration: .05s;
-ms-animation-delay: .05s;
-ms-animation-timing-function: ease;
-ms-animation-fill-mode: both;
animation-duration: .05s;
animation-delay: .05s;
animation-timing-function: ease;
animation-fill-mode: both;
}

#dnn_pnav > li:hover > ul {
        display: block;
}

#dnn_pnav > li > ul { /* styles specific to secondary level */
    top: 50px;
    left: -1px;
    padding: 0px;
}



#dnn_pnav > li ul a, #dnn_pnav > li ul span {
	border-bottom:1px solid #C9C9C9;
    display: block;
    padding:10px 20px;
    color: #4d4d4d;
	margin:0 5px;
    font-size: 12px;
    font-weight: BOLD;
    text-decoration: none;
    /* transition decleration */
    transition: all ease-in 100ms;
    -moz-transition: all ease-in 100ms; /* Firefox 4 */
    -webkit-transition: all ease-in 100ms; /* Safari and Chrome */
    -o-transition: all ease-in 100ms; /* Opera */
    -ms-transition: all ease-in 100ms; /* IE9? */
}

#dnn_pnav > li ul .last_topmenu a, #dnn_pnav > li ul .last_topmenu span {
	border-bottom:0px;
}

#dnn_pnav > li ul span {
    color: #666;
    cursor: default;
}

#dnn_pnav ul li:last-child > a {
}

#dnn_pnav > li > ul li:hover > a {
    color: #F05A1E;
    background: #F0F0F0;
}

/* Tertiary level */
#dnn_pnav li ul li ul {
    left: 300px;
    top: 0px;
    padding: 0px 0px;
    border-left: 1px solid #ddd;
}


/*------------------------------------------------*/
/* BREADCRUMBS */
/*------------------------------------------------*/
#Breadcrumb {
    padding-top: 20px;
    padding-bottom: 12px;
    margin-bottom: 25px;
    border-bottom: solid 1px #c0c0c0;
}

    #Breadcrumb img {
        margin-left: 10px;
        margin-right: 10px;
    }

    #Breadcrumb a.breadcrumbLink:link,
    #Breadcrumb a.breadcrumbLink:visited {
        color: #666;
        font-size: 12px;
        font-weight: bold;
    }

    #Breadcrumb a.breadcrumbLink:hover {
        color: #3B96B6;
    }

/*------------------------------------------------*/
/* CONTENT PANES */
/*------------------------------------------------*/

.module_header{
color:#646464;
font-family:Rajdhani;
font-size:28px;
line-height:24px;
}

.module_side_header{
color:#8F8F8F;
font-family:Rajdhani;
font-size:24px;
line-height:20px;
}

.contentPane {	
float:left;
width:1011px;
}
.contentPane_left{
width:750px;
float:left;
}

.contentPane_right{
width:260px;
margin-left:1px;
float:left;
}

.second_menu_pane{
width:865px;
float:left;
}

.social_icon_group{
width:145px;
float:right;
}

.advFooter{
background: url("images/footer_top_bg.jpg") repeat-x scroll 0 0 rgb(255, 255, 255);
border: 1px solid rgb(211, 211, 211);
height: 95px;
padding: 15px 129px;
text-align: center;
width: 750px;
}
#middlePane
{
	background-color:white;
	border:1px solid silver;

}


/* Content Pane - Home */
.midTopPane {
	float:left;
	width:980px;
	margin-left:15px;
}

.midTopPane2 {
	float:left;
	width:980px;
	margin-left:15px;
}

.mecMidTopPane {
	float:left;
	width:980px;
	margin-left:15px;
}

#midCenterPane
{
	 background:url('images/showroom_bg.png') repeat scroll 0 0 white;
	 float:left;
	 margin-left:15px;
	 width:980px;
	 margin-bottom:15px;
}

.content_bg{
	background-color:#F8F8F8;
	width:980px;
	margin-left:15px;
	border:0px solid black;
}

.leftPane {
    float: left;
    width: 665px;
	margin-left:10px;
	margin-bottom:10px;
}
.leftPaneShowroom {
    float: left;
    width: 655px;
	margin-left:10px;
	margin-bottom:10px;
}
.leftPane2 {
    float: left;
    width: 410px;
	margin-left:20px;
}

.mid_pane_bg{
background-color:#F8F8F8;
float:left;
width:950px;
margin-left:15px;
padding:15px;
}

.mecLeftPane {
	float: left;
	width:180px;
	margin-left:15px;
	margin-top:20px;
}

.showRoomSidebarPane {
    float: right;
    width: 280px;
	margin-left:20px;
	margin-right:10px;
	margin-top:20px;
}

.sidebarPane {
    float: right;
    width: 300px;
	margin-left:20px;
	margin-right:10px;
	margin-top:5px;
	margin-bottom:10px;
}

.sidebarPane_reg {
    float: right;
    width: 300px;
	margin-left:20px;
	margin-right:25px;
	margin-top:75px;
}

.sidebarPane2 {
    float: right;
    width: 490px;
	margin-left:20px;
	margin-right:10px;
	margin-top:5px;
}

.mecRightPane{
	float:left;
	width:785px;
	margin-left:20px;
	margin-top:20px;
}
#mec3Col{
	float:left;
	width:990px;
	margin-left:15px;
}
.mec3Col{
	float:left;
	width:320px;
	margin-top:20px;
	margin-right:10px;
	margin-bottom:30px;
}


/* Content Pane - 2 columns */
.twoColRightPane {
    float: right;
    width: 260px;
}

.twoColLeftPane {
    float: left;
    width: 690px;
}

.leftPaneLowerLeft {
    float: left;
    width: 400px;
}

.leftPaneLowerRight {
    float: right;
    width: 260px;
}

/* Content Pane - 3 columns */
.threeColLeftPane,
.threeColCenterPane,
.threeColRightPane {
    float: left;
    width: 306px;
}

/* Content Pane - 3 columns Social */
.threeColSocialLeftPane {
    float: left;
    width: 110px;
}

.threeColSocialCenterPane {
    float: left;
    position: relative;
    width: 560px;
}

.threeColSocialRightPane {
    float: left;
    width: 250px;
}

/* Content Pane - Footer */
#footer {
    clear: both;
    height: 230px;
    margin-top: 70px;
	margin: 0 Auto;
    width: 1011px;
}

.footerPane {
width:1011px;
}

    .footerPane,
    .footerPane .Normal {
        color: #808080;
    }

.footerPaneRight {
    float: right;
}

/* Empty Panes */
.DNNEmptyPane {
    width: 0;
    margin: 0;
	height: 0;
	padding: 0;
	margin: 0;
}

    .DNNEmptyPane.rightTwoCol + div {
        width: 100%;
    }

/* -------------------------------------------------------------------------
tab menu 
*/

div#header_nav{
height:36px;
margin-top:15px;
}

div#header_nav ul, div#header_nav ul#nav li{
float:left;
}

div#header_nav ul#nav{
background:white url('/images/nav_bg.jpg') repeat-x;
padding-top:0px;
padding-right:0px;
padding-bottom:0px;
position:relative;
height:35px;
font-family: 'Droid Sans Mono', sans-serif;
font-size:13px;
}

div#header_nav ul#nav li{
border-top:1px solid #d3d3d3;
border-right:1px solid #d3d3d3;
padding:7px 12px 7px 9px;
position:relative;
}

div#header_nav ul#nav li.new_li{
border-top:0px;
background:url('/images/menu_left.jpg') no-repeat left top;
}
div#header_nav ul#nav li.new_li:hover{
background:url('/images/menu_left_over.jpg') left top no-repeat #FFF;

}

div#header_nav ul#nav li.contact_li{
border-top:0px;
border-right:none;
background:url('/images/menu_right.jpg') no-repeat right top;
}

div#header_nav ul#nav li.contact_li:hover{
width:106px !important;
background:url('/images/menu_right_over.jpg') right top no-repeat #FFF;
}


div#header_nav ul#nav li:hover{
background-color:white;
color:black !important;
font-weight:bold;
}

div#header_nav ul#nav li ul{
position:absolute;
top:-9999px;
left:-9999px;
border-left:1px solid #d3d3d3;
border-right:1px solid #d3d3d3;
border-bottom:1px solid #d3d3d3;
background-color:white;
}

div#header_nav ul#nav li ul, div#header_nav ul#nav li ul li{
float:none;
}

div#header_nav ul#nav li:hover ul{
position:relative;
top:14px;
left:-28px;
width:100%;
padding:0px;
padding-bottom:10px;
width:113px;
padding-top:10px;
z-index:9999;
}

div#header_nav ul#nav li:hover ul li{
border:none;
}

div#header_nav ul#nav li:hover ul li a:hover{
color:#bd117a;
font-weight:bold;
}

div#header_nav ul#nav li a{
text-decoration:none;
color:#bebebe;
font-weight:normal;
}

div#header_nav ul#nav > li:hover > a{
color:black;
font-weight:bold;
}

div#header_nav ul#nav li a img{
margin-right:5px;
}

	
/* Copyright
    -------------------------------------*/
#copyright {
    font-size: 12px;
    color: #a6a6a6;
    margin-bottom: 25px;
}

    #copyright a:link,
    #copyright a:visited {
        font-size: 12px;
        color: #a6a6a6;
    }

    #copyright a:hover {
        color: #D00;
    }

    #copyright a.DNNMobileLink {
        color: #666;
        font-weight: bold;
    }

        #copyright a.DNNMobileLink:hover {
            color: #D00;
        }

/*------------------------------------------------*/
/* SOCIAL STYLE */
/*------------------------------------------------*/
/* ----------------------------------*/
/* DNN Module: Console */
/* ----------------------------------*/
.threeColSocial .console {
    width: 250px;
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.threeColSocial .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    width: 250px;
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.threeColSocial .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url('images/arrow.png') 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.threeColSocial .console-none div div {
    display: none;
}

.threeColSocial .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}

/* ----------------------------------*/
/* DNN Module: ViewProfile Image */
/* ----------------------------------*/
#UserProfileImg img {
    width: 100px;
    height: auto;
    border: solid 3px #fff;
}

.threeColSocial .UserProfileControls ul {
    margin: 15px 0;
}

    .threeColSocial .UserProfileControls ul li {
        list-style-type: none;
        margin-bottom: 3px;
    }

/* ----------------------------------*/
/* DNN Module: Member Directory (Send A Message, Follow, Subscribe) */
/* ----------------------------------*/
.threeColSocialRightPane .DnnModule #mdMemberList {
    margin: 0 0 30px 0;
}

.threeColSocialRightPane #mdMemberList ul {
    margin: 10px 0 0 0;
}

.threeColSocialRightPane #mdMemberList li {
    margin-bottom: 0;
    -size: 12px;
    font-weight: bold;
    list-style-type: none;
}

.threeColSocialRightPane #mdMemberList > li {
    width: 216px;
    margin: 0;
    padding: 6px 17px;
    background: #d7d7d7;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transition: background 0.15s ease-in-out;
    -moz-transition: background 0.15s ease-in-out;
    -o-transition: background 0.15s ease-in-out;
    -ms-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3);
}

    .threeColSocialRightPane #mdMemberList > li:hover {
        z-index: 2; /*bring current li to top for tooltip */
        background: #d7d7d7;
        -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3), inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.3), inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    }

/* ----------------------------------*/
/* DNN Module: ViewProfile (Activity Feed) */
/* ----------------------------------*/
.threeColSocial .journalTools {
    max-width: 560px;
}

.threeColSocial .journalrow {
    padding-bottom: 10px;
    border-bottom: solid 1px #c0c0c0;
    margin-bottom: 20px;
}

.threeColSocial .journalfooter {
    padding: 0;
    margin: 0;
}

.threeColSocial .journalrow div.journalitem p.journalfooter {
    font-size: 12px;
    padding: 0;
    margin-bottom: 0;
}

.threeColSocial .journalrow div.journalitem ul.jcmt {
    font-size: 12px;
}

.threeColSocial .journalrow div.journalitem .likes {
    padding: 2px 5px;
    background-color: #dbdbdb;
}

#journalEditor #journalContent .juser, .journalrow .juser {
    border: none;
    color: #3B96B6;
    background-color: transparent;
}

/* ----------------------------------*/
/* DNN Module: ViewProfile (Message) */
/* ----------------------------------*/
.threeColSocial #UserDisplayNameHeader h2 {
    padding-bottom: 10px;
    border-bottom: solid 1px #c0c0c0;
}

/* dnnAdminTabNav Style*/
.threeColSocial #smMainContent .ui-corner-all {
    border-radius: 0;
}

.threeColSocial ul.dnnAdminTabNav {
    height: 38px;
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #c0c0c0;
}

    .threeColSocial ul.dnnAdminTabNav li {
        margin-right: 1px;
    }

        .threeColSocial ul.dnnAdminTabNav li a {
            padding: 10px 15px;
            margin-bottom: 0px;
            border: none;
            background: #d7d7d7;
            -webkit-border-radius: 1px 1px 0px 0px;
            border-radius: 1px 1px 0px 0px;
            -webkit-border-radius: 0px;
            border-radius: 0px;
            color: #666;
            font-size: 12px;
            font-weight: bold;
            text-shadow: none;
        }

            .threeColSocial ul.dnnAdminTabNav li a:hover {
                background: #484848;
                color: #eee;
            }

        .threeColSocial ul.dnnAdminTabNav li.ui-tabs-active a {
            padding: 10px 15px;
            margin-top: 0px;
            background: #484848;
            color: #eee;
        }

/* Message & Notification number block*/
.threeColSocial .dnnAdminTabNav a span {
    display: inline;
    min-height: 12px;
    padding: 2px 6px;
    margin-right: 8px;
    background: rgb(59,150,182); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(59,150,182,1) 0%, rgba(35,125,155,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,150,182,1)), color-stop(100%,rgba(35,125,155,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Opera 11.10+ */
    background: linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px #666;
    -moz-box-shadow: 0px 1px 0px 0px #666;
    box-shadow: 0px 1px 0px 0px #666;
    color: #eee;
    font-weight: normal;
    font-size: 11px;
}

/* Compose new message link */
.threeColSocial .dnnFormExpandContent {
    position: absolute;
    top: -40px;
    right: 0;
    height: 20px;
    font-size: 12px;
}

    .threeColSocial .dnnFormExpandContent a.ComposeMessage {
        font-size: 12px;
    }

/* compose button */
.threeColSocial a.dnnPrimaryAction {
    display: inline-block;
    padding: 12px 20px;
    margin-bottom: 5px;
    background-color: #3B96B6;
    background: -moz-linear-gradient(top, #1aa0c9 0%, #1aa0c9);
    background: -webkit-gradient(linear, left top, left bottom, from(#1aa0c9), to(#1aa0c9));
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    border: 0px solid #ffffff;
    -moz-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    -webkit-box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    box-shadow: 0px 1px 3px rgba(240,240,240,0.5), inset 0px 0px 0px rgba(15,177,217,0);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(000,000,000,0), 0px 0px 0px rgba(255,255,255,0);
}

    .threeColSocial a.dnnPrimaryAction:hover,
    .threeColSocial a.dnnPrimaryAction:active {
        cursor: pointer;
        cursor: hand;
        background-image: none;
        background-color: #D00;
    }

/* Message Control (Select, Actions, Inbox, Sent, Archived)*/
.threeColSocial .DnnModule .messageControls .dnnButtonGroup {
    margin-right: 0px; /* fixed Archived Button spacinging issue */
}

.threeColSocial .messageControls {
    margin: 0;
    padding: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #c0c0c0;
}

    .threeColSocial .messageControls .messageFolders {
        float: right;
    }

/* number x-x of x */
.threeColSocial .messageFolders p {
    float: left;
    display: inline-block;
    padding: 8px 15px;
    margin: 0;
    color: #666;
    font-size: 12px;
}

    .threeColSocial .messageFolders p strong {
        color: #666;
        font-weight: bold;
    }

/* Messages / Notification Specific Button Styles
    -------------------------------------*/
/* Style for the Action menu bar*/
.threeColSocial .DnnModule-Messaging-Notifications .dnnTertiaryAction {
    width: auto!important;
    padding: 9px 10px;
    font-size: 12px;
}

/* Styles for select drop*/
.threeColSocial .DnnModule .selectDrop ul {
    top: 34px;
    min-width: 120px;
    padding: 10px 14px!important;
    border: 1px solid #c2c2c2;
    background: #e7e7e7;
    /*CSS3*/
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-radius: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .1);
}

/* Styles for select button on active state*/
.threeColSocial .selectDrop.active > a {
    background: #70b1c7;
    color: #eee;
    border-right: solid 0px #3B96B6;
    -webkit-box-shadow: inset 0px 1px 1px 0px #3B96B6;
    -moz-box-shadow: inset 0px 1px 1px 0px #3B96B6;
    box-shadow: inset 0px 1px 1px 0px #3B96B6;
}

/* when select drop down button is clicked toggle active class to show*/
.threeColSocial .selectDrop ul li {
    margin-bottom: 3px;
    font-size: 12px;
}

/* Remove corners and add dividers to buttons in button group */
.threeColSocial .dnnButtonGroup {
    background: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    list-style: none;
}

.threeColSocial ul.dnnButtonGroup > li {
    border-left: none;
}

.threeColSocial .dnnButtonGroup > li > a {
    border-left: 1px solid #ddd; /*light*/
    border-right: 1px solid #bbb; /*dark*/
    background-color: #d7d7d7;
    color: #666;
}

    /* Conversations button selected*/
    .threeColSocial .dnnButtonGroup > li > a.active {
        color: #eee;
        border-right: 1px solid #3B96B6;
        background-color: #70b1c7;
    }

    /* Actions button hover*/
    .threeColSocial .dnnButtonGroup > li > a.disabled:hover {
        color: #eee;
        border-left: 1px solid #3B96B6;
        background-color: #70b1c7;
    }

/* Select button hover */
.threeColSocial .alpha > a:hover {
    color: #eee;
    background-color: #70b1c7;
    border-right: 1px solid #3B96B6;
}

/*First Button styles of a button group */
.threeColSocial .alpha > a,
.threeColSocial .alpha > a:hover,
.threeColSocial .alpha > a.active {
    border-left: 1px solid #70b1c7;
    /*CSS3*/
    -moz-border-radius-topleft: 0;
    -moz-border-radius-bottomleft: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
/*Last Button styles of a button group */
.threeColSocial .omega > a,
.threeColSocial .omega > a:active,
.threeColSocial .omega > a.active {
    border-right: 1px solid #70b1c7;
    /*CSS3*/
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

/* Archive Button */
.threeColSocial a.dnnSecondaryAction.ArchiveItems span {
    display: none; /* hide Archive text*/
}

.threeColSocial a.dnnSecondaryAction.ArchiveItems {
    height: 18px;
    min-width: 15px;
    margin-left: 5px;
    background: #d7d7d7 url('images/icon_bin.png') no-repeat center center;
    border-radius: 0;
    -webkit-box-shadow: none;
    text-shadow: none;
    box-shadow: none;
    color: #666;
    border: none;
}

    .threeColSocial a.dnnSecondaryAction.ArchiveItems:hover {
        background: #70b1c7 url('images/icon_bin.png') no-repeat center center;
    }

/*Archive, Sent, Archived buttons Hover*/
.threeColSocial .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
    background-color: #70b1c7;
    color: #eee;
}

/* Messages / Notification List Item
    -------------------------------------*/
/* Listing Styles */
.threeColSocial .smListings {
    font-size: 12px;
}

.threeColSocial .DnnModule .smListings ul {
    margin: 0;
}

.threeColSocial .smListings > ul > li {
    padding-top: 10px;
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #c0c0c0;
}

    .threeColSocial .smListings > ul > li.active {
        background: #f4f4f4; /* background color for active list items*/
    }

    .threeColSocial .smListings > ul > li:last-child {
        border-bottom: none;
    }

.threeColSocial .smListings [class^="ListCol-"] {
    padding: 1% 1% 1% 0;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-1 {
    min-width: 20px; /* Main message list: Checkbox column width on */
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-2 {
    min-width: 65px; /* Main message list: Avatar column width AND Drilldown message list: Message info column width*/
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-3 {
    width: 56%; /* Main message list: Message info column width AND Drilldown message list: Time column width */
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-4 {
    font-size: 11px; /* Main message list: Time column */
}

.threeColSocial .smTimeStamped {
    font-size: 11px;
}

.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-1 {
    min-width: 65px; /* Drilldown message list: Avatar column width*/
}

.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-2 {
    width: 56%; /* Drilldown message list: Message info column width*/
}

.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-3 {
    float: right; /* Drilldown message list: Time column */
    width: 25%;
    font-size: 12px;
}

.threeColSocial .hoverControls a {
    font-size: 12px; /* All lists: Archive & Reply links */
    font-weight: bold;
}

.threeColSocial .DnnModule-Messaging-Details .smListings .meta {
    margin-bottom: 5px; /* Drilldown message list: UserName link */
}

    .threeColSocial .DnnModule-Messaging-Details .smListings .meta a {
        font-weight: bold; /* Drilldown message list: UserName link */
    }

.threeColSocial .DnnModule-Messaging-Details .smListings .message {
    color: #999; /* Drilldown message list: Message text */
    margin: 0;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .subject {
    font-weight: bold;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .active .subject {
    font-size: 13px; /* All lists: unread message subject */
    margin-bottom: 3px;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .meta {
    margin-bottom: 8px; /* All lists: message From - Send to */
    line-height: 14px;
}

.threeColSocial .DnnModule-Messaging-Notifications .smListings .message {
    color: #999; /* All lists: Message text */
}

/*Column 3 Styles*/
.threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-3 ul li {
    margin-bottom: 0px; /* Drilldown message list: Time column */
}

    .threeColSocial .DnnModule-Messaging-Details .smListings .ListCol-3 ul li:first-child {
        color: #999; /* Drilldown message list: Time column */
    }

.threeColSocial .DnnModule-Messaging-Details .smListings .active .ActiveToggle:hover, .smListings .ActiveToggle {
    margin-left: 8px; /* Main message list: Time column-Mark as Read block */
    -webkit-box-shadow: 0px 1px 0px 0px #666;
    -moz-box-shadow: 0px 1px 0px 0px #666;
    box-shadow: 0px 1px 0px 0px #666;
}

    .threeColSocial .DnnModule-Messaging-Details .smListings .active .ActiveToggle, .smListings .ActiveToggle:hover {
        margin-left: 8px; /* Main message list: Time column-Mark as Read block hover */
        background: rgb(59,150,182); /* Old browsers */
        /*CSS3*/
        background: -moz-linear-gradient(top, rgba(59,150,182,1) 0%, rgba(35,125,155,1) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,150,182,1)), color-stop(100%,rgba(35,125,155,1))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Opera 11.10+ */
        background: linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* W3C */
        -webkit-box-shadow: 0px 1px 0px 0px #666;
        -moz-box-shadow: 0px 1px 0px 0px #666;
        box-shadow: 0px 1px 0px 0px #666;
    }
/*Column 4 Styles*/
.threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-4 ul li {
    margin-bottom: 0px; /* All lists: Time column */
}

    .threeColSocial .DnnModule-Messaging-Notifications .smListings .ListCol-4 ul li:first-child {
        color: #999; /* All lists: Time column */
    }

.threeColSocial .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle:hover, .smListings .ActiveToggle {
    margin-left: 8px; /* Main message list: Time column-Mark as Read block */
    -webkit-box-shadow: 0px 1px 0px 0px #666;
    -moz-box-shadow: 0px 1px 0px 0px #666;
    box-shadow: 0px 1px 0px 0px #666;
}

    .threeColSocial .DnnModule-Messaging-Notifications .smListings .active .ActiveToggle, .smListings .ActiveToggle:hover {
        margin-left: 8px; /* Main message list: Time column-Mark as Read block hover*/
        background: rgb(59,150,182); /* Old browsers */
        /*CSS3*/
        background: -moz-linear-gradient(top, rgba(59,150,182,1) 0%, rgba(35,125,155,1) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(59,150,182,1)), color-stop(100%,rgba(35,125,155,1))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* Opera 11.10+ */
        background: linear-gradient(top, rgba(59,150,182,1) 0%,rgba(35,125,155,1) 100%); /* W3C */
        -webkit-box-shadow: 0px 1px 0px 0px #666;
        -moz-box-shadow: 0px 1px 0px 0px #666;
        box-shadow: 0px 1px 0px 0px #666;
    }

.threeColSocial .DnnModule-Messaging-Notifications .notificationControls {
    font-weight: bold; /* Main notifications list: Follow back & Dismiss links */
}

/* Message Header (subject & back button)
    -------------------------------------*/
.threeColSocial .messageHeader {
    padding: 0;
    margin: 0;
}

    .threeColSocial .messageHeader p {
        font-size: 13px;
        color: #666;
        float: left;
    }

        .threeColSocial .messageHeader p strong {
            color: #333;
        }

    .threeColSocial .messageHeader .returnLink {
        font-size: 12px;
        font-weight: bold;
    }

/* Show Previous Repies 
    -------------------------------------*/
.threeColSocial .morePrevMsgButton {
    color: #666;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    border: solid 1px #c0c0c0;
    background: #d7d7d7;
    -webkit-box-shadow: inset 0px 0px 3px 0px #ccc;
    -moz-box-shadow: inset 0px 0px 3px 0px #ccc;
    box-shadow: inset 0px 0px 3px 0px #ccc;
}

/* Reply Form
    -------------------------------------*/
.threeColSocial textarea#replyMessage {
    width: 94%;
    height: 75px;
    color: #666;
    border: 1px solid #c0c0c0;
    background: #f4f4f4;
}

    .threeColSocial textarea#replyMessage:focus,
    .threeColSocial textarea#replyMessage:active {
        color: #666;
        background: #fff;
    }

/*------------------------------------------------*/
/* GENERIC CLASSES
    /*------------------------------------------------*/

/* Clear-fix for floated elements 
    -------------------------------------*/
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}

.left {
    float: left;
}

.right {
    float: right;
}

/*------------------------------------------------*/
/* HOMEPAGE */
/*------------------------------------------------*/

/* Welcome Message*/
.content_intro {
    padding-top: 30px;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

    .content_intro h1 span {
        font-weight: normal;
    }

    .content_intro a {
        font-size: 14px;
    }

/* Featured Product */
.content_featured {
    color: #999;
    vertical-align: top;
}

    .content_featured h2 .TitleH2 {
        display: block;
        margin-bottom: 30px;
    }

    .content_featured .normal {
        font-weight: normal;
    }

    .content_featured img {
        margin-bottom: 25px;
    }

    .content_featured a.primaryButton {
        margin-left: 25px;
    }

/* News */
.content_newslist ul {
    margin: 0;
}

    .content_newslist ul li {
        list-style-type: none;
        margin-bottom: 30px;
    }

        .content_newslist ul li.last {
            margin-bottom: 0;
        }

        .content_newslist ul li img {
            float: left;
            margin-right: 20px;
            margin-bottom: 20px;
        }

        .content_newslist ul li h5 {
            margin-bottom: 5px;
        }

        .content_newslist ul li span,
        .content_newslist ul li strong {
            color: #a6a6a6;
        }

        .content_newslist ul li p {
            margin-top: 12px;
            margin-bottom: 12px;
        }

/* newslist with small thumbnail*/
.smallThumbnail img {
    width: 80px;
}

/* Ads 
    -------------------------------------*/
/* Ads - Copy Block Style */
.adContent {
    position: absolute;
    padding: 20px;
    background-color: #000;
    opacity: 0.7;
    color: #eee;
}

    .adContent h2 {
        margin-bottom: 5px;
        color: #eee;
        font-weight: normal;
    }

/* Ads - Style One: 400x270 */
.content_adstyleOne {
    position: relative;
    width: 400px;
    height: 270px;
    margin-right: 5px;
    color: #eee;
}

    .content_adstyleOne .adContent {
        bottom: 0;
        right: 0;
    }

/* Ads - Style Two: 570x130 */
.content_adstyleTwo {
    position: relative;
    width: 570px;
    height: 130px;
    margin-bottom: 10px;
}

    .content_adstyleTwo .adContent {
        top: 0;
    }

/* Footer 
    -------------------------------------*/
ul.footerlinks {
    margin: 0;
}

.footerlinks li {
    list-style: none;
    margin-bottom: 8px;
}

    .footerlinks li a:link,
    .footerlinks li a:visited {
        color: #808080;
    }

    .footerlinks li a:hover {
        color: #D00;
    }

ul.footerConnect {
    margin: 0px;
}

    ul.footerConnect li {
        display: inline-block;
        list-style-type: none;
        margin-right: 10px;
    }

/*------------------------------------------------*/
/* ABOUT US */
/*------------------------------------------------*/
/* Team 
    -------------------------------------*/
.content_team ul {
    margin: 0px;
}

    .content_team ul li {
        display: inline-block;
        width: 110px;
        margin-right: 30px;
        margin-bottom: 40px;
        text-align: center;
        list-style-type: none;
    }

        .content_team ul li.last {
            margin-right: 0;
        }

        .content_team ul li .teampic {
            width: 110px;
            height: 147px;
            margin-bottom: 15px;
            background-color: #bfbfbf;
        }

        .content_team ul li img {
            width: 110px;
            max-width: 110px;
            max-height: 147px;
        }

        .content_team ul li span {
            display: block;
            font-weight: bold;
            white-space: nowrap;
        }

/*------------------------------------------------*/
/* OUR PRODUCTS */
/*------------------------------------------------*/
.content_products ul {
    margin: 0;
}

    .content_products ul li {
        display: inline-block;
        width: 31%;
        margin-right: 30px;
        margin-bottom: 45px;
        vertical-align: top;
        list-style-type: none;
    }

        .content_products ul li.last {
            margin-right: 0;
        }

        .content_products ul li img {
            margin-bottom: 25px;
        }

/*------------------------------------------------*/
/* CONTACT US */
/*------------------------------------------------*/
/* One Column Form
-------------------------------------*/
.form_oneCol label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.form_oneCol input, .form_oneCol textarea {
    width: 94%;
}

/* Dealer Form 
    -------------------------------------*/
.form_dealer input {
    width: 200px;
    margin-bottom: 5px;
}

/*------------------------------------------------*/
/* Slide jquery
/*------------------------------------------------*/
#container {
    position: relative;
    z-index: 0;
    width: 1011px;
    padding: 0px;
    margin: 0 auto;
}

#example {
    position: relative;
    width: 1011px;
    height: 380px;
}

/* Slide -*/
#slides {
    position: absolute;
    z-index: 9;
    top: 0px;
    left: 0px;
}

.slides_container {
    display: none;
    position: relative;
    width: 1011px;
    overflow: hidden;
}

    .slides_container a {
        display: block;
        width: 1011px;
        height: 380px;
    }

        .slides_container a img {
            display: block;
        }

/* Next/Prev buttons 
    -------------------------------------*/
#slides .next, #slides .prev {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 9px;
    left: 12px;
    padding: 0;
    z-index: 12;
}

#slides .prev {
    background: transparent url('images/left-arrow.png') center center no-repeat;
}

#slides .next {
    left: 96px;
    background: transparent url('images/right-arrow.png') center center no-repeat;
}

/* Page link -*/
.pagination_wrap {
    display: inline-block;
    position: absolute;
    z-index: 10;
    bottom: 0;
    right: 0;
    width: 128px;
    height: 40px;
    opacity: 0.8;
    background-color: #222;
}

.pagination {
    position: absolute;
    z-index: 11;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 15px 40px;
}

    .pagination li {
        float: left;
        margin: 0 3px;
        list-style: none;
    }

        .pagination li a {
            float: left;
            display: block;
            width: 9px;
            height: 0;
            padding-top: 8px;
            background-image: url(images/pagination.png);
            background-position: 0 0;
            overflow: hidden;
        }

        .pagination li.current a {
            background-position: 0 -9px;
        }

		
#Enq_logo{
float:left;
}
div.enquiry_botton_area{

}
div.enquiry{
float:left;
margin-left:0px;
margin-right:10px;
margin-top:20px;
}
div.noEnquiryMessage{
margin:20px;
min-width:160px;
height:45px;
overflow:hidden;
font-weight:bold;
text-align:center;
}
div.enquiry_product_count{
position:relative;
float:left;
color:#FFF;
top:27px;
left:144px;
font-weight:bold;
width:15px;
text-align:center;
overflow:hidden;
}
#ubm_S_Logo{
float:left;
padding-left:12px;
padding-top:8px;
}

div.enquiry_ul_box{
display:none;
z-index:999;
position:absolute;
min-height:55px;
margin-top:15px;
padding:10px 0px;
width:235px;
background:url('images/enquiry_basket_popout.png');
}

ul.enquiry_ul{
margin:0px;
padding:0px;
border:0px;
}

ul.enquiry_ul li{
border-top:1px dotted #bebebe;
float:left;
}

ul.enquiry_ul li.enquiry_first{
border:none;
}

ul.enquiry_ul li img{
float:left;
position:static !important;
}
ul.enquiry_ul li img.btnRemove{
float:right;
margin-right:20px;
cursor:pointer;
}

ul.enquiry_ul li img.enquiry_image{
padding:10px;

}

ul.enquiry_ul li span{
font-weight:bold;
padding:12px 5px;
position:static !important;
font-size:14px;
float:left;
width:150px;
}

a.view_all {
	width:235px;
    float: left;
    font-size: 14px;
    font-weight: bold;
    padding: 20px 0px;
	text-align:center;
}

/* ####END TOP BAR/HEADER CSS ######*/

div.header_bottom img{
float:left;
}

div.header_bottom div.subscribe_box input.email_input{
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
width:170px;
height:28px;
float:left;
behavior:url('/PIE.htc');
margin:0px 6px 0 15px;
}

div.header_bottom div.subscribe_box input.image_input{
margin:0px 3px;
float:left;
}

div.header_bottom div.subscribe_box{
margin-left:15px;
margin-top:30px;
width:250px;
float:left;
}

div.header_bottom div.subscribe_box input{

}

div#header_nav ul#social_media{
float:right;
}

ul#social_media{
padding:0px;
margin-top:4px;
margin-right:15px;
}

ul#social_media li{
float:right;
}

ul#social_media li a{
margin-right:5px;
}

div.trends_blogs_header{
position:relative;
margin-top: 20px;
}

div.trends_blogs{
border-bottom:1px solid #eeeeee;
width:650px;
margin:20px 0 25px 0;
float:left;
}

div.trends_blogs div{
float:left;
}

/*div.trends_blogs div.trends_blogs_left, div.trends_blogs div.trends_blogs_right{
margin-top:15px;
}*/

div.trends_blogs div.trends_blogs_left{
border-right:1px solid #eeeeee;
padding:10px 12px;
width:300px;
float: left;
}
div.trends_blogs div.trends_blogs_left img{
max-width:300px;
}
div.trends_blogs div.trends_blogs_left h1{
font-weight:bold;
font-size:21px;
margin:10px 0px 5px;
}

div.trends_blogs div.trends_blogs_left span.date{
color:#B4B4B4;
}

div.trends_blogs div.article_summary{
line-height:19px;
font-size:12px;
max-width:300px;
text-align:justify;
}


div.trends_blogs span.more{
color:#F05A1E;
font-weight:bold;
}

div.trends_blogs div.trends_blogs_right{
width:300px;
float: left;
}

div.trends_blogs_right div.trends_blogs_item{
margin-top:10px;
margin-left:15px;
}

div.trends_blogs_right div.trends_blogs_item div.trends_blogs_item_title img{
float:left;
}

div.trends_blogs_right div.trends_blogs_item div.trends_blogs_item_title h2{
margin-bottom:5px;
float:left;
width:310px;
}

div.trends_blogs_right div.trends_blogs_item div.trends_blogs_item_title span.date{
float:left;
width:335px;
color:#B4B4B4;
}

div.trends_blogs_right div.trends_blogs_item p{
/*margin-top:10px;*/
float:left;
}

/*footer*/

.footer_0{
width:100%;
}

.footer_0_top, .footer_0_bottom{
padding:20px;
}

.footer_0_top{
background:white url('../images/footer_0_top_bg.jpg') repeat-x;
width:970px;
border:1px solid #d3d3d3;
}

.footer_0_middle{
width:1011px;
position:relative;

}

.footer_0_middle ul{
float:left;
width:220px;
padding:15px;
border:1px solid #d3d3d3;
position:relative;
height:370px;
background-color:#e3e3e3;
}

ul, li, a {
    border: 0 none;
    font: inherit;
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

.footer_0_middle ul a.view_all{
position:absolute;
bottom:5px;
right:10px;
color:#F05A1E;
font-size:12px;
font-weight:bold;
}

.footer_0_middle ul ul{
width:90%;
margin-left:19px;
border:none;
}

.footer_0_middle ul li.header{
font-weight:bold;
font-size:12px;
background-image:none !important;
padding:0px !important;
}

.footer_0_middle ul li{
margin-bottom:10px;
padding-top:6px;
}

.footer_0_middle ul.upcoming li{
padding-top:15px;
}

.footer_0_middle ul.latest_tweets li{
margin-top:15px;
}

.footer_0_middle ul.latest_tweets li.header{
margin:0px;
}

.footer_0_middle ul.latest_tweets li{
padding:6px 0px 0px 25px;
}

.footer_0_middle ul.latest_showroom li.withpic{
height:55px;
float:left;
width:100%;
}

.withpic img{
max-height:60px;
vertical-align: middle;
}
.withpic div.footerGallery{
background: white;
float: left;
height: 60px;
line-height: 55px;
overflow: hidden;
text-align: center;
width: 60px;
}


.footer_0_middle ul.latest_showroom li a{
padding:10px;
width:140px;
float:left;
}

/* .footer_0_middle ul.what_is{
border:none !important;
} */

.footer_0_middle ul.what_is p{
line-height:18px;
font-size:12px;
}

.footer_0_middle ul.what_is li{
list-style-type:disc;
}

.footer_0_middle ul.what_is li.header{
list-style-type:none;
}

.footer_0_bottom{

background-color:white;
width:968px;
text-align:center;
}

.footer_0_middle a, .footer_0_middle ul li a{
color:#0366ae;
text-decoration:none;

}

.footer_0_middle ul li, .footer_0_middle ul li a{
font-size:12px;
}

.footer_0 ul.latest_tweets li{
background:url('images/small_twitter.png') no-repeat;
}

.footer_0_bottom ul{

}

.footer_0_bottom ul.footer_0_ul_1 {
padding-top: 20px;
width: 100%;
float: left;
}

.footer_0_bottom ul.footer_0_ul_2{
margin-bottom: -30px;
}

.footer_0_bottom ul li{
padding:0px 5px;
}

.footer_0_bottom ul li{
display: inline;
}

.footer_0_bottom ul li a{
font-size:12px;
text-decoration:none;
color:black;
margin-left:10px;
}

#language_li{
position:relative;
}

#language_li ul{
position:absolute;
top:-9999px;
left:-9999px;
}

#language_li:hover ul{
position:absolute;
top:28px;
left:-16px;
z-index:20;
}

div#top_bar ul li#language_li ul li{
padding:0px !important;
}
.language{
	margin-top:2px;
	width:auto; /*320px*/
}
div.withMargin{
margin-top:20px;
}
.loginedMessage{
	margin-top:2px;
	color:white;
	font-weight:bold;
	font-size:12px;
	height:16px;
	overflow:hidden;
	color:#F05A1E;
}
.language ul, .language li{
	float:left;
	margin:0px 4px;
}
div#content h1.placeholder{
color:#bebebe;
font-size:19px;
float:left;
margin:0px;
padding:0px;
}

.dropdown dt {float:left;}
.dropdown dd, .dropdown dt, .dropdown ul { margin:0px; padding:0px; }
.dropdown dd { position:relative; }
.dropdown a, .dropdown a:visited { color:#FFF; text-decoration:none; outline:none;}
.dropdown a:hover { color:#000;}
.dropdown dt a:hover { color:#000;}
.dropdown dt {background:url(images/lan_bg.png) repeat-x; width:80px; height:27px;}
.dropdown dt a {background:url(images/arrow_down.png) no-repeat scroll 85% 50%; display:block; padding-right:10px; width:80px;}
.dropdown dt a span {cursor:pointer; display:block; padding:5px;}
.dropdown dd ul { background:#808080 none repeat scroll 0 0; border:1px solid #3F3F3F; color:#C5C0B0; display:none;
 left:2px; padding:5px 0px; position:absolute; top:27px; width:auto; min-width:70px; list-style:none;}
.dropdown span.value { display:none;}
.dropdown dd ul li a { padding:5px; display:block;}
.dropdown dd ul li a:hover { background-color:#d0c9af;}
.lang_left{background:url(images/lan_bg_left.png); width:3px; height:27px; float:left;}
.lang_right{background:url(images/lan_bg_right.png); width:3px; height:27px; float:left;}

.loginGroup{
width:auto;
height:25px;
padding-top:0px;
}
/*background:url('images/login_head_bg.png') no-repeat;*/
.loginGroup a{
float:left;
padding-left:6px;
padding-top:4px;
font-size:12px;
height:25px;
color:white;
min-width:55px;
font-weight:normal;
margin-right:6px;
}
/*background:url('images/MEC_btnBG.png') no-repeat;*/
.loginGroup a.loginedMEC{
float:left;

}

div.language div.language-object select.Language_DropList{
margin:0px;
padding:4px;
border:0px;
background:transparent;
color:white;
height:31px;
width:120px;
-webkit-appearance: none;
float:left;
font-weight:bold;
padding-left:10px;
}
div.language-object{
width: 95px;
height: 31px;
overflow: hidden;
background: url(/ImageFile/arrow_down_lang.png) no-repeat 75px 12px ,#828282;
float:left;
}
div.language-object select.Language_DropList option{
background:#828282;
}

div#alert_Message{
width:430px;
height:auto;
float:left;
background:white;
}
div#alert_Message div{
float:left;
}
div#alert_Message div.alert_Message_header{
background:url('/portals/0/images/company_profile/bgg.png') repeat-x;
width:100%;
height:30px;
padding:5px 0 0 15px; 
color: white;
font-size: 16px;
font-weight: bold;
}
div#alert_Message div.alert_Message_content{
margin: 20px 0;
padding: 0 10px;
text-align: center;
font-weight: bold;
}
div#alert_Message div.alert_Message_BTN{
width:430px;
height:45px;
padding-top:20px;
background:#EBEBEB;
cursor:pointer;
}
div#alert_Message div.btn_small_gary_left{
background:url('/Css/btn_puzzle/smallGary_left.png') no-repeat;
width:4px;
height:30px;
margin-left:185px;
}
div#alert_Message div.btn_small_gary_right{
background:url('/Css/btn_puzzle/smallGary_right.png') no-repeat;
width:4px;
height:30px;
}
div#alert_Message div.alert_Message_OK{
background:url('/Css/btn_puzzle/smallGary_bg.png') repeat-x;
width:30px;
height:25px;
padding:5px 5px 0 5px;
color:white;
}
div.listBarTitle{
font-size:14px;
color:#F05A1E;
margin:20px;
margin-bottom:5px;
}
div div#btn_GoSearch{
float:right;
}
.ajax_loader {
background: url("ajax_loader.gif") no-repeat center 200px transparent;width:100%;height:100%;
}

/* Search dropdown autocomplete style /////////////////////////////////////// */
.tt-query {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
  color: #999
}

.tt-dropdown-menu {
  width: 440px;
  margin-top: 0px;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
     -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
          box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
  padding: 3px 20px;
  font-size: 12px;
  line-height: 24px;
}

.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #0097cf;
  cursor: pointer;

}

.tt-suggestion p {
  margin: 0;
}

.gist {
  font-size: 12px;
}

div.alert_Message{
width:430px;
height:200px;
float:left;
background:white;
}
div.alert_Message div{
float:left;
}
div.alert_Message div.alert_Message_header{
background:url('/portals/0/images/company_profile/bgg.png') repeat-x;
width:100%;
height:30px;
padding:5px 0 0 15px; 
color: white;
font-size: 16px;
font-weight: bold;
}
div.alert_Message div.alert_Message_content{
text-align:center;
margin-top:40px;
width:430px;
height:60px;
font-weight: bold;
}
div.alert_Message div.alert_Message_BTN{
width:430px;
height:65px;
padding-top:20px;
background:#EBEBEB;
cursor:pointer;
}
div.alert_Message div.btn_small_gary_left{
background:url('/Css/btn_puzzle/smallGary_left.png') no-repeat;
width:4px;
height:30px;
margin-left:190px;
}
div.alert_Message div.btn_small_gary_right{
background:url('/Css/btn_puzzle/smallGary_right.png') no-repeat;
width:4px;
height:30px;
}
div.alert_Message div.alert_Message_OK{
background:url('/Css/btn_puzzle/smallGary_bg.png') repeat-x;
width:30px;
height:25px;
padding:5px 0 0 10px;
color:white;
}

body #dnn_pnav > li > ul.select-activated{
display: none;
}