/************************************************************************************
RESET
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
}

img, fieldset {
	border: 0;
}

/* set image max width to 100% */
img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/
/* Interstate Fonts embeded */

@font-face {
	font-family: "InterstateLight";
	font-style: normal;
	font-weight: normal;
	src:url("../font/Interstate-Light.ttf") format("truetype"),
		url("../font/Interstate-Light.otf") format("woff"),
		url("../font/Interstate-Light.eot") format("embedded-opentype");
}

@font-face {
	font-family: "InterstateRegular";
	font-style: normal;
	font-weight: normal;
	src: url("../font/Interstate-Regular.ttf") format("truetype"),
		 url("../font/Interstate-Regular.otf") format("woff"),
		 url("../font/Interstate-Regular.eot") format("embedded-opentype");
		 /*url("../font/Interstate-Regular.woff") format("woff");*/
}
@font-face {
	font-family: "InterstateBold";
	font-style: normal;
	font-weight: normal;
	src: url("../font/Interstate-Bold.ttf") format("truetype"),
		 url("../font/Interstate-Bold.eot") format("embedded-opentype"), 
		 url("../font/Interstate-Bold.woff") format("woff");
}
html{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	background: url(../img/background.png) repeat;
	font: .81em/150% Arial, Helvetica, sans-serif;
	color: #000;
	background-attachment: fixed;
}
a {
	color: #026acb;
	outline: none;
}
a:hover {
	text-decoration: underline;
}
p {
	margin: 0 0 1.2em;
	padding: 0;
}

/* list */
ul, ol {
	margin: 1em 0 1.4em 0;
	padding: 0;
	line-height: 140%;
}
li {
	padding: 0;
	list-style: none;
}


/* ui-multiselect-menu*/
.ui-multiselect-menu li{
	margin: 0 0 1em 0;
	padding: 0;
	list-style: none;
}


/* headings */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.4em;
	margin: 20px 0 .4em;
	color: #000;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.6em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.2em;
}
h5 {
	font-size: 0.9em;
}
h6 {
	font-size: 1em;
}

/* reset webkit search input styles */
input[type=search] {
	-webkit-appearance: none;
	outline: none;
}
input[type="search"]::-webkit-search-decoration, 
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}
input[type="button"] {
	height: 30px;
	padding: 0 20px;
}
input[type="file"] {
	width: 250px;
}

/************************************************************************************
STRUCTURE
*************************************************************************************/
#pagewrap {
	width: 100%;
	margin: 0 auto;
	background: url(../img/mainpage_bg1.png) 0 bottom repeat-x #ffffff;
}

/************************************************************************************
HEADER
*************************************************************************************/

/* site logo */
#site-logo {
	position: absolute;
}
#site-logo a {
	font: bold 30px/100% Arial, Helvetica, sans-serif;
	color: #000;
}

/* site description */
#site-description {
	font: italic 100%/130% "Times New Roman", Times, serif;
	color: #000;
	position: absolute;
	top: 55px;
}

/************************************************************************************
MAIN NAVIGATION
*************************************************************************************/

#main-nav {
	width: 90%;
	font-size: 1.1em;
	margin: 10px auto;
	padding: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #da4f49;
	*background-color: #bd362f;
	background-repeat: repeat-x;
	border-radius: 5px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	border: 1px solid #cccccc;
	background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
}
#main-nav > li {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
	transition: box-shadow .3s linear;
}
#main-nav > li:hover a,
#main-nav > li:focus a{
	color:#FF6;
	transition:all .3s ease-in;
	border-bottom: 3px solid #fff;
	padding-top: 8px;
	box-shadow:0 1px 7px rgba(0,0,0,0.3);
}
#main-nav > li:active,
#main-nav > li.active{
  color: #ffffff;
  background: #bd362f;
  background-image: linear-gradient(to bottom, #bd362f, #BC0600);
  *background-color: #a9302a;
  
  transition: box-shadow .3s ease-in;
	-webkit-box-shadow: inset 0px -2px 8px 0px rgba(0, 0, 0, 0.35);
	box-shadow: inset 0px -2px 8px 0px rgba(0, 0, 0, 0.35); 
}
#main-nav > li.disabled,
#main-nav > li[disabled] {
  cursor: not-allowed;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
#main-nav > li.disabled a{ cursor:not-allowed; }

#main-nav > li:active,
#main-nav > li.active {
  background-color: #942a25 \9;
}


#main-nav li:first-child {
	margin-left: 10px;
}
#main-nav a {
	line-height: 100%;
	font-weight: bold;
	color: #fff;
	display: block;
	padding: 11px 15px;
	text-decoration: none;
	text-shadow: 1px 1px 0 rgba(0,0,0,.5);
}
#main-nav a:hover {
}

/************************************************************************************
CONTENT
*************************************************************************************/
#content {
	background: #fff;
	margin: 10px 0 30px;
	padding: 20px 5%;
	width: 90%;
	float: right;
	/* box shadow */
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	box-shadow: 0 1px 3px rgba(0,0,0,.4);
	-pie-box-shadow: 0 1px 3px rgba(0,0,0,.4);
	behavior: url(PIE-1.0.0/PIE.htc);
	/* rounded corner */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/* post */
.post {
	margin-bottom: 20px;
	padding: 20px 20px 30px;
}

#content h3{
	margin: 0 0 5px;
	padding: 2px 0 0;
	color: #666;
	border-bottom: dotted 1px #333;
	font-size: 16px;
}

.questionTip{
	margin-bottom: -5px;
	margin-left: 5px;
}

/************************************************************************************
SIDEBAR
*************************************************************************************/


/************************************************************************************
FOOTER
*************************************************************************************/
#footer {
	color: #333333;
	font-size: 85%;
	width:90%;
	max-width:1300px;
	margin:0 auto;
}

/************************************************************************************
CLEARFIX
*************************************************************************************/
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-block; }
.clearfix { display: block; zoom: 1; }





/************************************************************************************
bookmark
*************************************************************************************/
.float_right{ 
	text-align: right; 
	float: right;
	padding-left: 20px;
}

.align_right 
{
    text-align: right;
    float: right;
}

#bookmark{
	border-left: 1px solid #bd362f;
	border-right: 1px solid #bd362f;
	border-top: 1px solid #AF2227;
	border-bottom: 1px solid #802420;
	position: fixed;
		top:133px;
		left:-51px;

		border-radius:7px 7px 0 0;
		-webkit-transform: rotate(90deg);	
		font-family:"InterstateLight";
		padding:8px 25px 15px 25px;
		margin-bottom: 10px;	
	
		color: #ffffff;
		font-size: 13px;
		font-weight:bold;
	line-height: 100%;
	*	line-height: 130%;
	
		-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 1px 1px 3px rgba(51, 51, 51, 0.5);
	   	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 1px 1px 3px rgba(51, 51, 51, 0.5);
	        	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 1px 1px 3px rgba(51, 51, 51, 0.5);
		-webkit-transition: background 1s ease, color 1s ease;
		-moz-transition: background 1s ease, color 1s ease;
		-o-transition: background 1s ease, color 1s ease;
		-ms-transition: background 1s ease, color 1s ease;
		transition: background 1s ease, color 1s ease, left .5s ease;
	
	background-color: #DC0000;
	*	background-color: #DC0000;
		background-repeat: repeat-x;
		z-index: 2;
	background-image: linear-gradient(to bottom, #DC0000, #CE0000);
}
#bookmark:hover{
	left:-44px;
	transition:left .5s ease;
}
#bookmark a, #bookmark a:active, #bookmark a:hover, #bookmark a:visited{
	color:#fff;
	text-decoration: none;
}

#bookmark_content{
	top:97px;
	left:-150px;
	position: fixed; 
	background: #EEAFAF;
	/* box shadow */
	
	-moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 1px rgba(0,0,0,.4);
	z-index:1;

	border-radius:0 3px 3px 0;
	transition:left .8s ease;
}
#bookmark_content.open{
	left:28px;
}

#bookmark_content a{
	color: #fff;
}

#bookmark_content ul, #bookmark_content li{
	margin: 0;
}
#bookmark_content ul li > a{
	max-width:100px;
	width:100px;
	overflow:hidden;
	display:inline-block;
	text-overflow: ellipsis;
}	
#bookmark_content li {
	padding: 10px 5px 10px 10px;
	max-width:157px;
}
#bookmark_content li img{margin-left:2px;}

#bookmark_content li:hover{
	background: #DC0000;
}

/************************************************************************************
step1
*************************************************************************************/
.field_row li{ margin-bottom:13px; }
.field_row label {width:150px; text-align:right;display:inline-block;margin-right:15px; font-weight:bold; font-size:13px;}

#content ul.inputs li .label{ 
	display:inline-block; 
	width:10%;
	margin-right:10px;
	text-align: right;
}

#customer_name{
	width: 393px;
}

.long_input{
	width:35%;
}



#filter_vendor{
	width: 120px;
}

#VID_list{
	height:105px; 
	margin-bottom: -85px;
}
	
.btn{
	border-left: 1px solid #2f96b4;
    border-right: 1px solid #2f96b4;
    border-top: 1px solid #2f96b4;
    border-bottom: 1px solid #1f6377;
    color: #fff;
	/* rounded corner */
	    -webkit-border-radius: 5px;
	    -moz-border-radius: 5px;
	    border-radius: 5px;
	    cursor: pointer;
	    margin: 0 5px;
	    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #49afcd;
	*    background-color: #2f96b4;
	    background-repeat: repeat-x;
	    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    display: inline-block;
    padding: 5px 12px;
    line-height: 20px;
    background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
}

.btn:hover,
/*.btn:focus,*/
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
	transition: background-color 0.3s linear;
	color: #ffffff;
	background: #5bc0de;
	*background: #2a85a0;
}

.btn:active,
.btn.active {
  background-color: #24748c \9;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #006dcc;
  *background-color: #0044cc;
  background-repeat: repeat-x;
      background-image: linear-gradient(to bottom, #0088cc, #0044cc);
    border-left-color: #0044cc;
    border-right-color: #0044cc;
    border-top-color: #0044cc;
    border-bottom-color: #002a80;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  color: #ffffff;
  background-color: #0044cc;
  *background-color: #003bb3;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #003399 \9;
}

#btnBack, #btnNext{ float:right; }


.hasDatepicker{ 
	width: 89px;
}
.hasDatepicker + img{
	vertical-align:middle;	
} 
#ui-datepicker-div{
	z-index: 10 !important;
}

.Channel, .Vender, .VID{
	position: relative;
	display: inline-table;
	padding-bottom: 10px;
}

.VID #VID_listAll{
	padding-left: 140px;
	word-break: break-all;
}

/************************************************************************************
step2
*************************************************************************************/
.condition{float: left; width: 20%;}

.pmac_widget.custom-state-active { background: #eee; }
.pmac_widget li { /*width: 340px; margin: 0 0.4em 0.4em 0;*/ margin: 0.4em; padding:5px; }
/*.pmac_widget li h5 { margin: 0; cursor: move; text-align: left; font-weight: normal; padding-left: 10px;}*/
.pmac_widget .ui-widget-header { margin: 0; cursor: move; text-align: left; font-weight: normal; padding-left: 10px;}
.pmac_widget .not_allowed h5 { cursor: not-allowed; }
.pmac_widget li a { float: right; }
.pmac_widget li a.ui-icon-zoomin { float: left; }
.pmac_widget li img { cursor: pointer; }
.pmac_widget .ui-widget-header{ padding:0; }
.pmac_widget .ui-widget-content{  }
.pmac_widget .ui-widget-detail{ padding: 10px 5px;}
.pmac_widget input[type=text] {width: 100px;}
.pmac_widget select{width: 105px;}

.condition{margin-top: 20px;}
.condition > .ui-state-default { 
	height: 100%;
	margin: 3px 0 10px;
	background-color: #eee;
	border: 0;
	padding-bottom: 10px;
	transition:height .3s ease-out;
} * html .ui-state-default { height: 18em; } /* IE6 */
.condition > .ui-state-default ul.ui-sortable{
	/*height:0;
	overflow:hidden;*/
	display:none;
	
}
.condition > .ui-state-default ul.ui-sortable.extend{ display:block; }
	
.condition > #general_condition ul.ui-sortable{ display:block; }

.condition > #general_condition h4:after,  .condition > #general_condition.ui-state-default h4:after{ 
	-webkit-transform:rotate(180deg);
}
.condition > #general_condition.ui-state-default h4.collapsed:after{	-webkit-transform:rotate(360deg);  }

.condition > .ui-state-default h4 { 
	line-height: 16px; margin: 0 0 0.4em; font-size: 0.9em; padding: 5px 0 5px 10px; background: #ccc !important; 
	font-family:"Interstate", Ariel, Verdana, sans-serif;
	cursor:pointer;
}
.condition > .ui-state-default h4:after { 
	background: url(../img/menu_arrow.png) no-repeat;
	-webkit-transform:rotate(180deg);
	content:"";
	width:9px;
	height:5px;
	float:right;
	margin:5px 10px 0 0;
}
.condition > .ui-state-default h4.collapsed:after{
	-webkit-transform:rotate(360deg);
}

.condition > .ui-state-default h4 .ui-icon { float: left; }
.condition > .ui-state-default .ui-widget-header {border:none; background: none;}
.condition > .ui-state-default .ui-widget-detail { display: none; }
.condition > .ui-state-default .ui-widget-content {  
	width: auto;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin: 2px 6px;
	background-color:#ffffff;	
}
.condition > .ui-state-default .ui-widget-content:hover{
	background-color:#D0F1F9;	
}

.condition > .ui-state-default a{display:none;}
.condition > .ui-state-default li{width: 170px;}
.ui-sortable-placeholder { border: 1px dotted black; visibility: visible !important; height: 50px !important; box-shadow:none !important; border: 1px dashed #999 !important; text-align:center; font-size:16px;  }
.ui-sortable-placeholder:after {content:"Drop Here!!"; line-height:150%;}
.ui-sortable-placeholder * { visibility: hidden; }
#estimation{
	margin-left: 10px;
	font-size: 1.1em;
}

.incexc {
	float: right;
	min-width: 600px;
	width: 80%;
}

.ExcWidget {
	margin-left: 20px; 
}

.port {
	float: right;
	width: 41%;
	min-height: 600px;
	border: 1px dashed #999;
	box-shadow: inset 0 0 20px #ccc;
	padding: 0 20px;
	margin-top: 23px;
	border-radius: 5px;
}

.port h4{
	font-size:20px;
	font-weight:normal;
	font-family:"Interstate", Ariel, Verdana, sans-serif;
	color:#666;
	text-align:center;
	margin:10px 0;
}
.port .ui-widget-content{
	border: 1px solid #999; box-shadow:0 4px 12px #ccc; margin-bottom:13px; border-radius:5px;
	padding:0px;
}
.port h5.ui-widget-header{
	padding:6px;
	border-radius:5px 5px 0 0;
	border:0;
	border-bottom:1px solid #999;
}
.ui-slider-horizontal {
	width: 90%;
	margin: 5px auto 5px;
}
.ui-multiselect { margin: 5px 0; }

/************************************************************************************
step3
*************************************************************************************/
#SearchButton{
	height: 26px;
	border-radius: 0 5px 5px 0;
	margin: 0 0 0 -3px;
	cursor: pointer;
	color: #06c;
	box-shadow: inset 0 -3px 8px #ccc;
}

/************************************************************************************
step4
*************************************************************************************/
#content-left{
	float:left;
	width: 60%;
}

#content-right{
	float: right;
	width: 39%;
}
#content-right ul.inputs li{
	margin-bottom:10px;	
}

#content-right ul.inputs li .label{ 
	width: 110px; 
	display:inline-table; 
	text-align: left;
}

#content-right ul.inputs li .label_title{ 
	width: 110px; 
	display:inline-table; 
	text-align: left;
}

#content-right ul.inputs li .label_content{ 
	width: 200px; 
	display:inline-table; 
	text-align: left;
}

#content-right ul.inputs li .label_second{ 
	margin-left: 115px;
}

#content-right select{
	width: 145px;
	margin-right:-10px;
}

#template_URL{
	width: 100%;
}
/*
#content-left .mobile-template{
	margin: 20px auto;
	height: 760px;
	width: 400px;
	background: url(../img/mobile_template_background.png) no-repeat;
}

#notify_title{
	padding: 116px 0 0 50px;
	color: #fff;
	font-weight: bold;
}

#notify_header{
	padding: 33px 0 0 100px;
	color: #fff;
	font-weight: bold;
	width: 250px;
}

#notify_content{
	padding: 5px 0 0 100px;
	color: #fff;
	font-weight: bold;
	width: 250px;
}
*/

#metro_editor{
	width: 390px;
	min-height: 140px;
	background: url(../img/win10_toast_background.png) repeat;
	background-size: 390px 130px;

}

.metro_toast_icon {
	background: url(../img/win10_toast_icon_info.png) no-repeat;
	background-size: 30px 30px;
	background-position: 19px 14px;
	width: 64px;
	height: 30px;
}

#metro_toast_title{
	width: 290px;
	max-width: 290px;
	padding-top: 8px;
	color: #fff;
	font-size: 1.2em;	
	white-space : nowrap;
	text-overflow : ellipsis;
	overflow : hidden;
}

#metro_toast_message {
	margin: 0px;
	padding: 0px;
	color: #999;
	width: 300px;
	font-size: 1.2em;
	word-wrap: break-word;
	overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 4; 
   line-height: 20px;        
   max-height: 80px;      
   min-height: 40px;
}

.metro_toast_close {
	background: url(../img/win10_toast_close.png) no-repeat;
	background-size: 16px 16px;
	background-position: right top;
	width: 20px;
	height: 20px;
	
}


.metro_toast_banner_area {
	text-align: center;
}

#metro_toast_banner {
	max-width: 340px;
	height: auto;
	max-height: 200px;
	margin: 10px;
}

.metro_toast_button_area {
	text-align: right;
	padding: 8px 8px 16px 0px;
}

#metro_toast_button {
	background: url(../img/win10_toast_button.png) repeat;
	min-width: 100px;
	max-width: 174px;
	padding: 8px 16px 8px 16px;
	color: #999;
	font-size: 1.2em;	
	white-space : nowrap;
	text-overflow : ellipsis;
	overflow : hidden;
	float: right;
	text-align: center;
}




#variable_dialog th, #variable_dialog td, #more_detail_dialog th, #more_detail_dialog td{
	padding: 0 5px;
	text-align: left;
	font-size: 0.9em;
}

.ui-state-highlight{
	background: #ccc !important;
	border: 1px solid #000 !important;
}

.webStore{
	padding-left: 143px;
}

.webStore_m{
	padding-left: 126px;
}
/************************************************************************************
banner 
*************************************************************************************/

#banner_dialog{
	overflow-x: hidden;
}

.ui-widget-overlay{
	background: #000;
	opacity: 0.6;
}

.banner_template{
	width: 245px;
	padding: 5px 10px;
	border: 1px solid #000;
	display: inline-block;
	margin: 5px;
}

/************************************************************************************
my campaign
*************************************************************************************/

#filter_VID_list{
	height:68px; 
	margin-bottom: -45px;
}
/*
#my_campaign_nav {
	font-size: 1.1em;
	margin-left: 0;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background: #618f29;
	color: #fff;
	float: left;
}
#my_campaign_nav li {
	padding: 5px 15px;
	margin: 0;
	list-style: none;
	float: left;
	position: relative;
}

#my_campaign_nav a {
	line-height: 100%;
	color: #fff;
	display: block;
	padding: 3px 0px;
	text-decoration: none;
}
#my_campaign_nav li:hover {
	color: #fff;
	background: #474747;
}
*/
.right_link{
	width: 25%;
	text-align: right;
	float: right;
	margin: 20px 0;
	font-size:15px;
}

.align_center 
{
    text-align: center;
}

/*.dataTable{
    border: 1px solid black;
    table-layout: fixed;
    width: 200px;
}*/

.moreDetailContent
{
    position: absolute;
    top: 20px;
    bottom: 0px;
    width: 96%;
    overflow-y:auto;
    border: 1px solid green;
}

.dataColumn {
    /*border: 1px solid black; */
    overflow: hidden;
    width: 300px;
    word-break: break-all; word-wrap:break-word;
}

.galleryview_title{
    font-weight: bold;
}

#dtMoreDetailIn th, #dtMoreDetailEx th{
	padding-left: 20px;
	width: 280px;
	font-weight: normal;
}

/************************************************************************************
step_line
*************************************************************************************/

#step_line {
	display: inline-block;
	margin-left: 20px;
}
.step_line {
	list-style: none;
	margin: 0;
}
.yarnlet {
	display: inline;
}
.yarnlet a,
.yarnlet a:link,
.yarnlet a:visited {
	display: inline-block;
	font-size: 12px;
	margin-left: -16px;
	padding: 7px 17px 11px 25px;
	position: relative;
	text-decoration: none;
	vertical-align: top;
}

.yarnlet a {
	background-image: url(../img/status_bar.png);
	background-repeat: no-repeat;
	color: #333;
	background-position: 100% 0;
}
.yarnlet:hover a {
	color: #b17243;
}
.yarnlet:active a {
	background-position: 100% 0;
	color: #333;
}
.yarnlet .left-yarn {
	background: url(../img/status_bar.png) no-repeat;
	margin-left: -27px;
	padding: 8px 6px 11px 4px;
	z-index: 11;
}

.yarnlet .yarn_first{
	background: url(../img/status_bar.png) no-repeat;
	background-position: 0% -96px;
	margin-left: -27px;
	padding: 8px 6px 11px 4px;
	z-index: 11;
}

.yarnlet:nth-child(1) a{z-index: 9;}
.yarnlet:nth-child(2) a{z-index: 8;}
.yarnlet:nth-child(3) a{z-index: 7;}
.yarnlet:nth-child(4) a{z-index: 6;}


.step_done a{
	font-weight: bold; 
	background-position: 100% -96px;
}

#breadcrumb li {
	margin: 0 10px 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
	padding: 0 3px;
	color: #666;
}

#breadcrumb {
	width: 90%;
	max-width: 1300px;
	line-height: 100%;
	text-decoration: none;
	/*background: #ccc url(../img/background.png); /* Old browsers */
	margin: 0 auto;
	/* rounded corner */
	font-size:14px;
}

/************************************************************************************
gallery
*************************************************************************************/

.gallery_view {
	border: 1px solid #ccc;
    display: inline-block;
    overflow: auto;
    overflow-y: auto;
    max-width: 100%;
    margin: 1em 0;
	padding: 1em 0;
	width: 100%;
    /*white-space: nowrap;*/
}

.gallery_view ul > li{
    display: inline-block;
    vertical-align: top;
	margin: 0 10px 30px 20px;
	padding:0 10px;
}
.gallery_view ul > li:hover{
	background-color:#E7F4FE;
}

.gallery_view ul, .gallery_view li{
	margin: 0;
}

.gallery_view p{
	line-height:220%;
	white-space: normal;
	margin: 0;
}


input[type=radio].regular-radio {
    -webkit-appearance: none;
    background-color: #fafafa;
    border: 1px solid #cacece;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
    padding: 9px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
	height:auto;
	margin-right:5px;
	vertical-align:middle;
}
 
input[type=radio].regular-radio:checked:after {
    content: ' ';
    width: 10px;
    height: 10px;
    border-radius: 5px;
    position: absolute;
    top: 4px;
    background: #069;
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3), inset 0px -1px 3px #09C;
    text-shadow: 0px;
    left: 4px;
    font-size: 32px;
}
 
input[type=radio].regular-radio:checked {
    background-color: #e9ecee;
    color: #99a1a7;
    border: 1px solid #adb8c0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1), inset 0px 0px 10px rgba(0,0,0,0.1);
}
 
input[type=radio].regular-radio:active, .regular-radio:checked:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}


.gallery_view p label{ font-weight:bold; vertical-align:middle; font-size:16px; font-family:"InterstateLight", Arial, Helvetica, sans-serif;  }

.gallery_view img{
	width: 300px;
}

.mobile_view img, .mobile_view p{
	width: 150px;
	margin: 0 20px;
}

.TemplateImage{
	width: 490px;
	height: 500px;
	overflow: scroll;
	overflow-x: scroll;
	overflow-y: scroll;
}

#expire_period_from, #expire_period_to, #Threshold, #seats_from, #seats_to, #activation_period_from, #activation_period_to, #subscription_period_from, #subscription_period_to
{
    width:50px;
    text-align:right;
}

#activation_period_slider .ui-slider-range, #expire_period_slider .ui-slider-range, #subscription_period_slider .ui-slider-range
{
    background-color: #729fcf;
}

#activation_period_slider .ui-slider-handle, #expire_period_slider .ui-slider-handle, #subscription_period_slider .ui-slider-handle
{
    border-color: #729fcf;
background: #fff;
box-shadow: inset 0 -2px 6px #999;
}

#divLoading 
{
    background:rgba(255,255,255,0.6) url(../img/ajax-loader.gif) no-repeat center center;
    height: 100px;
    width: 100px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    margin: -25px 0 0 -25px;
}

#estimation
{
    padding: 5px 30px 5px 0;
}

.estimation-note
{
    margin: 0 5px;
	color: #DC0300;
	
}

.estimation-note a:link,
.estimation-note a:visited {
	display: inline-block;
	text-decoration: none;
	color: #DC0300;
}



.SmallLoading
{
    background:rgba(255,255,255,0.6) url(../img/ajax-loader.gif) no-repeat center center;
    background-size: 20px 20px;
}


.TrendRed
{
    background: #da4f49;
    color: White;
}

.Timelinecss {
    display: inline-block;
    overflow: auto;
    overflow-y: auto;
    overflow-x: scroll;
	width: 100%;
    /*white-space: nowrap;*/
}


.div_timeline {
			float: left;
			margin: auto;
			border: 0px black solid;
			
}

#x-con-item-template 
{
    display:none;
}


.slideshow {
	position: relative;
	margin: auto;
	overflow: hidden;
	height: 400px;
	width: 800px;
}

.slideshow img {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		display: none;
		height: 400px;
	    width: 800px;
	}