@charset "UTF-8";
body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: Trebuchet, 'Trebuchet MS', Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4;
	background-color: #D7D7D7;
	background-image: url(../images/bg_tmch_1.png);
	background-repeat: repeat-x;
	background-position: 0px 0px;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 10px;
	padding-left: 10px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

p {
	margin-bottom: 0;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #002675;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #001C62;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 980px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}


/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar {
	width: 263px;
	padding: 0px;
	position: relative;
	left: 657px;
	top: 41px;
	height: 1px;
}
.content {
	float: left;
	padding: 0;
	width: 649px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #ADB96E;
	color: #FFF;
}

/* ~~ The footer ~~ */

#footer-wrapper {
	background-image: url(../images/dot_16px_30t.png);
	background-repeat: repeat;
	background-position: 0px 0px;
    background-color: #A7A7A7;
}
.footer {
	 background-image: url("../images/main_darkgrey_bg.png");
    background-position: 0 0;
    background-repeat: repeat-y;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
}
.footer a:link,
.footer a:visited {
	font-size: 11px;
	text-transform: uppercase;
	color: #666;
	text-decoration: none;
}
p.footnote {
	font-size: 9px;
	color: #999;
}
.footer .button1 {
	margin-top: 0px;
	margin-left: 10px;
	float: right;
}
.footer .button1 a:link,
.footer .button1 a:visited {
	color: #FFF;
	width: 60px;
	font-size: 12px;
	height: 12px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.footer .item {
	padding-right: 6px;
	padding-left: 6px;	
}


.region-bottom {
}

.footer {
	padding: 10px 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

#block-menu-menu-footer-menu ul.menu li a:link, #block-menu-menu-footer-menu ul.menu li a:visited {
    color: #EFEFEF;
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
}

#block-menu-menu-footer-menu ul {
    margin: 0;
    padding: 0;
}

#block-menu-menu-footer-menu ul.menu li {
    display: inline-block;
    list-style: none inside none;
    margin: 0 20px 0 0;
    padding: 0;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.clearleft { 
	clear: left;
}

#header-wrapper {
	background-color: #2A8FC5;
	background-image: url(../images/headerwrapper_tmch_home_bg_1.png);
	background-repeat: repeat-x;
	background-position: 0px 0px;
	border-bottom: 1px solid #A3DE00;
}

.secure-home #header-wrapper {
	background-color: #2A8FC5;
	background-image: url(../images/headerwrapper_tmch_home_bg_1.png);
	background-repeat: repeat-x;
	background-position: 0px -136px;
	border-bottom: none;
}

.not-front #header-wrapper {
	background-color: #2A8FC5;
	background-image: url(../images/headerwrapper_tmch_home_bg_1.png);
	background-repeat: repeat-x;
	background-position: 0px -330px;
}
.not-front.not-logged-in.public.section-contract #header-wrapper {
	background-color: #2A8FC5;
	background-image: url(../images/headerwrapper_tmch_reg_bg_2.png);
	background-repeat: repeat-x;
	background-position: 0px 0px;
}
.header {
	background-color: #2A8FC5;
	background-image: url(../images/header_tmch_mark_bg.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 132px;
}

.role-agent .header {
	background-color: #2A8FC5;
	background-image: url(../images/header_tmch_agent_bg.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 132px;
}

.role-holder .header {
	background-color: #2A8FC5;
	background-image: url(../images/header_tmch_markholder_bg.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 132px;
}

.not-front.not-logged-in.public.section-contract .header {
	background-color: #BDB86C;
	background-image: url(../images/header_tmch_contract_bg_2.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 132px;
}

.role-validator .header {
	background-color: #000;
	background-image: url(../images/header_tmch_validator_bg.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 132px;
}

.logo {
	float: right;
	margin-top: 6px;
	margin-right: 64px;
	margin-left: 20px;
}
.userinfo {
	background: rgba(255, 255, 255, 0.6);
	border-radius: 0px 0px 12px 12px;
	-moz-border-radius: 0px 0px 12px 12px;
	-webkit-border-radius:0px 0px 12px 12px;
	padding-top: 16px;
	padding-right: 12px;
	padding-bottom: 12px;
	padding-left: 12px;
	font-size: 11px;
	margin-left: 64px;
	width: 378px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #C8DEF4;
	border-bottom-color: #C8DEF4;
	border-left-color: #C8DEF4;
	overflow: hidden;
}

.userinfo .info {
	display: inline-block;
	float: left;
	margin-right: 6px;
}

#sitesearch-wrapper {
	display: none;
	/* background-image: url(../images/dot_16px_30t.png);
	background-repeat: repeat;
	background-position: 0px 0px;
	height: 32px; */
}
#search-block-form {
	text-align: right;
	margin-right: 10px;
	margin-left: 0px;
	float: right;
	width: 320px;
}
#edit-search-block-form--2 {
	display: inline-block;
	float: left;
	width: 230px;
}

#block-search-form input.form-submit {
    float: left;
    margin-top: 6px;
    padding: 3px;
}
.form-submit,
.form-submit-2,
a.button2:link,
a.button2:visited,
div.basket input,
.page-tmch-mark-basket #main .basket input {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-color: #E4E4E4 #D2D2D2 #B4B4B4;
	border-image: none;
	border-radius: 20px 20px 20px 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-style: solid;
	border-width: 1px;
	color: #000000;
	cursor: pointer;
	font-size: 11px;
	font-weight: normal;
	letter-spacing: 0.02em;
	background-color: #E6E6E6;
	-moz-box-shadow: 2px 2px 3px #888;
	-webkit-box-shadow: 2px 2px 3px #888;
	box-shadow: 2px 2px 3px #888;
	margin-right: 6px;
	padding-top: 2px;
	padding-right: 14px;
	padding-bottom: 2px;
	padding-left: 14px;
	display: inline-block;
	word-break: keep-all !important;
}

.userinfo a.button2:link,
.userinfo a.button2:visited {
	margin-top: 10px;
	float: left;
}

.form-submit:hover,
a.button2:hover,
div.basket input:hover,
.page-tmch-mark-basket #main .basket input:hover  {
	background-color: #666;
	color: #FFF;
}

.userinfo a:link,
.userinfo a:visited {
	text-decoration: none;	
}
#main-wrapper {
	background-image: url(../images/dot_16px_30t.png);
	background-repeat: repeat;
	background-position: 0px 0px;
}
#main-wrapper .container {
	background-image: url(../images/main_tmch_trade_bg.png);
	background-repeat: repeat-y;
	background-position: 0px 0px;
	width: 920px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 40px;
	padding-top: 10px;
}
.sitesearch {
	background-image: url(../images/main_tmch_trade_bg.png);
	background-repeat: repeat-y;
	background-position: 0px 0px;
	width: 920px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 4px;
	height: 34px;
	padding-top: 4px;
}
.sidebar .main-annex {
	border-radius: 0px 20px 20px 0px;
	-moz-border-radius: 0px 20px 20px 0px;
	-webkit-border-radius: 0px 20px 20px 0px;
	background-color: #FFF;
	display: block;
	width: 250px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 13px;
	padding-bottom: 10px;
	padding-left: 0px;
	font-size: 11px;
}
#main {
	margin-top: 0px;
	width: 629px;
	margin-left: 0px;
	padding: 14px;
	border-radius: 0px 0px 20px 20px;
	-moz-border-radius: 0px 0px 20px 20px;
	-webkit-border-radius: 0px 0px 20px 20px;
	overflow: hidden;
}

.logged-in #main {
	background-color: #FFF;
}

.logged-in #main {
	min-height: 750px !important;
	/* tijdelijk hoogte geven want te weinig content min-height: 840px !important;  */
}
#ticker-wrapper {
	background-color: #94D800;
	background-image: url(../images/dot_16px_30t.png);
	background-repeat: repeat;
	background-position: 0px 0px;
}
.ticker {
	background-image: url(../images/ticker_tmch_trade_bg.png);
	background-repeat: repeat-y;
	background-position: 0px 0px;
	width: 920px;
	padding-left: 30px;
	padding-right: 30px;
	color: #999;
	height: 32px;
	background-color: #94D800;
	padding-top: 6px;
	padding-bottom: 6px;
	overflow: hidden;
}
.ticker h3 {
	font-size: 11px;
	line-height: 11px;
	text-transform: uppercase;
	color: #FFF;
	letter-spacing: 0.5em;
	margin: 0px;
	padding: 0px;	
}
.ticker .tickeritems {
	width: 786px;
	float: left;
	background-color: #C9F527;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 2px;
	padding-bottom: 0px;
	padding-left: 2px;
}
.tickeritems .tickerdot {
	display: inline;
	font-weight: bold;
	color: #000;
}
.ticker a.more:link,
.ticker a.more:visited {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	background-color: #E6E6E6;
	border-color: #E4E4E4 #D2D2D2 #B4B4B4;
	border-image: none;
	border-radius: 20px 20px 20px 20px;
	border-style: solid;
	border-width: 1px;
	box-shadow: 2px 2px 3px #888888;
	color: #000000;
	cursor: pointer;
	display: inline-block;
	font-size: 11px;
	font-weight: normal;
	letter-spacing: 0.02em;
	margin-right: 6px;
	padding: 2px 14px;
	text-decoration: none;
}

.ticker a.more:hover  {
	background-color: #C9F527;
}

.labl {
	display: inline-block;
	font-size: 10px;
	text-transform: uppercase;
	color: #666;
	margin-right: 4px;
	margin-left: 4px;
}
.userinfo .labl {
	color: #FFF;
	float: left;
	margin-left: 0px;
	font-size: 11px;
}
.userinfo p {
	margin-bottom: 6px;
}
.tabsregion {
	height: 40px;
}
.tab1selected,
.tab2selected,
.tab4selected,
.tab3selected {
	height: 30px;
	background-color: #FFF;
	background-image: url(../images/tabselected_1.png);
	background-repeat: no-repeat;
	background-position: center 0px;
	float: left;
	padding-top: 10px;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 40px;
	letter-spacing: 0.3em;
    border-right: 1px solid #CCCCCC;
}

.tab1selected,
.tab2selected,
.tab4selected,
.tab3selected {
	border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
}

.tab1selected a:link,
.tab2selected a:link,
.tab4selected a:link,
.tab3selected a:link,
.tab1selected a:visited,
.tab2selected a:visited,
.tab4selected a:visited,
.tab3selected a:visited {
	color: #2E8BD7;
	font-size: 20px;
	text-transform: uppercase;
	text-decoration: none;
}
.tab1, 
.tab2,
.tab4,
.tab3 {
	height: 30px;
	background-color: ;
	background-repeat: no-repeat;
	background-position: center 0px;
	padding: 0 40px;
	margin-top: 10px;
	float: left;
	background-color: #31A4D8;
	letter-spacing: 0.2em;
    border-right: 1px solid #CCCCCC;
}
.tab1 {
	border-radius: 10px 0px 0px 0px;
	-moz-border-radius: 10px 0px 0px 0px;
	-webkit-border-radius: 10px 0px 0px 0px;
}
.tab3 {
	border-radius: 0px 10px 0px 0px;
	-moz-border-radius: 0px 10px 0px 0px;
	-webkit-border-radius: 0px 10px 0px 0px;
}

.tab4 a:link, 
.tab3 a:link, 
.tab2 a:link, 
.tab1 a:link,
.tab4 a:visited, 
.tab3 a:visited, 
.tab2 a:visited, 
.tab1 a:visited {
	color: #FFF;
	font-size: 20px;
	text-transform: uppercase;
	text-decoration: none;
}
.button1,
.login .btn,
.contractform input.button,
#main input.button,
#main .form-submit,
.editbutton {
	margin-bottom: 10px;
}
.button1 a:link, 
.button1 a:visited, 
.login .btn,
.contractform input.button,
#main input.button,
#main .form-submit,
.editbutton a:link,
.editbutton a:visited,
.page-tmch-mark-basket #main input.button1,
.page-contract input[type="submit"] {
	border-color: #E4E4E4 #D2D2D2 #B4B4B4;
	border-image: none;
	border-radius: 7px 7px 7px 7px;
	-moz-border-radius: 7px 7px 7px 7px;
	-webkit-border-radius: 7px 7px 7px 7px;
	border-style: solid;
	border-width: 1px;
	color: #000000;
	letter-spacing: 0.02em;
	-moz-box-shadow: 4px 4px 4px #888;
	-webkit-box-shadow: 4px 4px 4px #888;
	box-shadow: 4px 4px 4px #888;
	background-image: url(../images/button1_bg_1.png);
	background-repeat: repeat-x;
	background-position: 0px center;
	padding: 10px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFF;
	font-weight: bold;
	background-color: #31A4D8;
	vertical-align: middle;
}
.button1 a:link,
.button1 a:visited,
.editbutton a:link,
.editbutton a:visited {
	display: block;
}
#main input.button,
#main .form-submit {
	display: inline-block;
}
.sidebar .block .button1 {
	margin-top: 6px;
	margin-left: 5px;
}
#main-wrapper #sidebar-right .block .button1 a:link,
#main-wrapper #sidebar-right .block .button1 a:visited {
	width: 205px;
	font-size: 14px;
	height: 16px;
	padding-top: 4px;
	padding-bottom: 4px;
	display: block;
}
.sidebar .button1 {
	margin-top: 6px;
	margin-left: 21px;
}
#main .form-submit {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	margin-right: 0px;
	margin-left: 0px;
	height: 46px;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
}
.button1 a:visited {
	color: #FFF;
}
.button1 a:hover,
#main .form-submit:hover,
#main .btn:hover,
.editbutton a:hover,
.page-contract input[type="submit"]:hover {
	background-color: #21508F;
	background-image: none;
	-moz-box-shadow: 4px 4px 4px #31A4D8;
	-webkit-box-shadow: 4px 4px 4px #31A4D8;
	box-shadow: 4px 4px 4px #31A4D8;
}
.sidebar .main-annex .button1 {
	margin-bottom: 20px;
	margin-left: 0px;
}
.editbutton {
	width: 200px;
}

.sidebar .main-annex .button1 a:link,
.sidebar .main-annex .button1 a:visited {
	font-size: 16px;
	font-weight: bold;
	width: 227px;
	padding: 10px;
	margin-top: 10px;
	margin-right: 0px;
	margin-left: 0px;
	height: 22px;
	display: block;
}
.logged-in .sidebar {
	margin-top: 40px;
}

div.basket {
	font-size: 12px;
	display: block;
	padding: 4px;
	margin-bottom: 10px;
	border: 1px solid #31A4D8;	
}

.basket h3 {
	font-size: 9px;
	text-transform: uppercase;
	color: #31A4D8;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;	
}
.basket table {
	width: 100%;
}
.basket tr {
	background-color: #F5F5F5;
    border-bottom: 1px solid #FFFFFF;
    height: 22px;
    vertical-align: top;
}
.boxresults {
	margin-bottom: 10px;
}
.boxresults p {
	display: block;
	background-color: #E6E6E6;
	margin-bottom: 2px;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 6px;
}
.boxresults .labl {
	text-align: right;
	width: 65px;	
}
.boxsort,
.boxfilter,
.boxsearch {
	background-color: #E6E6E6;
	border: 1px solid #CECECE;
	top: 6px;
	padding: 6px;
}
.boxsort,
.boxfilter {
	margin-bottom: 10px;
}
.boxsort h3,
.boxfilter h3,
.boxsearch h3 {
	font-size: 9px;
	text-transform: uppercase;
	color: #7C7C7C;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;	
}
.boxsearch input#keyword {
	width: 229px;
}

.page-contract input[type='checkbox'] {
	width: auto;
}

#main table,
#main #f-table {
	width: 630px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#main tbody {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	margin: 0;
	padding: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#main table tr.tableheader,
#main .f-tableheader {
	font-weight: bold;
	color: #000;
	background-color: #FFF;
	font-family: Trebuchet, 'Trebuchet MS', Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: left;
	padding-left: 4px;
	background-image: url(../images/theader_bg.png);
	background-repeat: repeat-x;
	background-position: 0px center;
	text-shadow: 1px 1px #FFF;
	vertical-align: middle;
	height: 28px;
}
#main tr {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	vertical-align: top;
	/* height: 22px; */
	background-color: #EBFDB7;
}

#main #recaptcha_table {
	width: 441px;
	border: 1px solid #FFFFFF !important;
}

#main #recaptcha_table tr {
    background-color: transparent;
}

#main table td {
	padding-right: 4px;
	padding-left: 4px;
	/* border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF; 
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC; */
}

#main table thead tr .per-mark,
#main table tbody tr .per-mark {
	padding-right: 0px;
	padding-left: 4px;
}

thead .tableheader th.tdmark {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#main table td .break,
#main table td.tdmark .tdmark,
#main table td.u-label .u-label,
#main table td.s-code .s-code,
#main table td.s-not .s-not,
#main table td.tmclaim-not .tmclaim-not {
	word-wrap: break-word;
	white-space: normal;
	display: inline-block;
}
#main table td.tdmark .tdmark {
	width: 191px;
}
#main table td.u-label .u-label {
	width: 191px;
}
#main table td.s-code .s-code {
	width: 46px;
}
#main table td.s-not .s-not {
	width: 66px;
}
#main table td.tmclaim-not .tmclaim-not {
	width: 73px;
}

#main .ww { /* word wrap */
 max-width: 135px;
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 white-space: normal;
}

#main tr.even {
	background-color: #D7F3A1;	
}

#main tr.status-3 td, 
#main tr.status-2 td, 
#main tr.status-1 td {
	background-color: #EDEDED;
	color: #707070;
}

#main tr.status-3 td.status-3, 
#main tr.status-2 td.status-2, 
#main tr.status-1 td.status-1 {
	background-color: #CCC;
	color: #000000;
	background-image: url('../images/diagonals_white_1.png');
	background-repeat: repeat;
	background-position: 0px 0px;
}

.page-tmch-mark-basket #main .basket {
	padding: 10px;
	margin-bottom: 10px;
	border: 2px solid #CCC;
}

.page-tmch-mark-basket #main .basket table {
	width: 600px;
}

.page-tmch-mark-basket #main .basket table tr td {
	background-color: #EBEBEB;
	color: #000000;
	background-image: url('../../images/diagonals_white_1.png');
	background-repeat: repeat;
	background-position: 0px 0px;
}

.page-tmch-mark-basket #main form.basket table tr td:nth-child(1) {
	width: 20px;
	background-image: url(../../images/line_grey_1.png);
	background-repeat: repeat-y;
	background-position: center 0px;
	background-color: #FFF;
}

#main td.status1, 
#filter .status1,
#main td.status2, 
#filter .status2   {
	background-color: #D7D7D7;
	color: #FFF;
	background-image: url('../images/ch_new.png');
	background-repeat: no-repeat;
	background-position: 1px 1px;
	padding-left: 26px;
	height: 22px;
}
/* #main td.status2, 
#filter .status2  {
	background-color: #F0000F;
	
} */
#main td.status4, 
#filter .status4  {
	background-color: #C00;
	color: #FFF;
	background-image: url('../images/ch_noncompliant.png');
	background-repeat: no-repeat;
	background-position: 1px 1px;
	padding-left: 26px;
	height: 22px;
}
#main td.status5, 
#filter .status5  {
	background-color: #3D7CFF;
	color: #FFF;
	background-image: url(../images/ch_reprocess.png);
	background-repeat: no-repeat;
	background-position: 1px 1px;
	padding-left: 26px;
	height: 22px;
}
#main td.status3, 
#filter .status3  {
	background-color: #85D000;
	color: #FFF;
	background-image: url(../images/ch_approved.png);
	background-repeat: no-repeat;
	background-position: 1px 1px;
	padding-left: 26px;
	height: 22px;
}
#main td.status6, 
#filter .status6  {
	background-color: #AFAFAD;
	color: #FFF;
	background-image: url(../images/ch_denied.png);
	background-repeat: no-repeat;
	background-position: 1px 1px;
	padding-left: 26px;
	height: 22px;
}
#main td.status7, 
#filter .status7  {
	background-color: #C00;
	color: #FFF;
	background-image: url(../images/ch_expired.png);
	background-repeat: no-repeat;
	background-position: 1px 1px;
	padding-left: 26px;
	height: 22px;
}
#main td.status8, 
#filter .status8  {
	background-color: #AFAFAD;
	color: #FFF;
	background-image: url(../images/ch_deactivated.png);
	background-repeat: no-repeat;
	background-position: 1px 1px;
	padding-left: 26px;
	height: 22px;
}
.sidebar .block {
	width: 240px;
	margin-left: 21px;
	padding: 0;
	border: 1px solid #A3DE00;
	background-color: #FFF;
	border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	-webkit-border-radius: 0px 0px 10px 10px;
	margin-bottom: 10px;
}
.sidebar .block h2 {
	text-transform: uppercase;
	color: #FFF;
	background-color: #A3DE00;
	letter-spacing: 0.5em;
	margin-bottom: 5px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 15px;
	font-size: 14px;
	line-height: 14px;
	vertical-align: baseline;
}
.sidebar .block ul li h3 {
    background-color: #4AACE5;
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 0;
    padding: 5px 5px 5px 15px;
    text-shadow: 1px 1px #000000;
    vertical-align: top;
}
.sidebar .block ul {
	list-style-position: inside;
}
.sidebar .block ul li {
	list-style-position: inside;
	color: #A3DE00;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-right: 5px;
	padding-left: 5px;
	list-style-type: none;
}
.sidebar .block ul li:last-child {
	border-bottom-style: none;
}
.sidebar .block ul li p {
	color: #000;
	padding: 0;
	margin-bottom: 0;
}


.sidebar .block ul li a:link,
.sidebar .block ul li a:visited {
	color: #000;
	text-decoration: none;
	display: block;
	list-style-position: inside;
	list-style-type: disc;
	padding-left: 10px;
}

.sidebar .block ul li a:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #31A4D8;
}

.closecontent {
	clear: both;
	height:0;
	font-size: 1px;
	line-height: 0px;}

/** FRONTPAGE and not-logged-in **/

body.front {
	background-image: url(../images/bg_tmch_1.png);
	background-repeat: repeat-x;
	background-position: 0px 350px;
}

.front .logo {
	float: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
.front .header {
	background-color: #004183;
	background-image: url(../images/header_tmch_securehome_bg.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 304px;
}
.front .header .button1 a:link,
.front .header .button1 a:visited {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 20px;
	width: 217px;
	padding: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	height: 40px;
	position: relative;
	top: 380px;
	left: 690px;
}
.front #main {
	height: auto;
	min-height: 100px !important;
	background-color: transparent;
}
.front #main-wrapper .container,
.not-logged-in #main-wrapper .container {
	background-image: url(../images/main_tmch_home_bg.png);
	background-repeat: repeat-y;
	background-position: 0px 0px;
	width: 920px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 14px;
	height: auto;
}
.front .sidebar .button1 {
	margin-left: 5px;
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 20px;
}
.front .sidebar .button1 a:link,
.front .sidebar .button1 a:visited {
	width: 220px;
}
.front .sidebar .block {
	margin-left: 5px;
	font-size: 14px;
}
.front .sidebar .block .button1 {
	margin-left: 5px;
	margin-bottom: 5px;
}
.front #textbox {
  	column-count: 2;
  	column-gap: 10px;
	column-rule-width: 1px;
	column-rule-style: solid;
	column-rule-color: #666;
	-moz-column-count: 2;
    -moz-column-gap: 10px;
    -moz-column-rule: 1px solid;
	-moz-column-rule-color: #666;
}
.front #shoutbox {
	background-color: #CCC;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
	text-align: center;
}
/* tandc */

.tandctext {
	margin-bottom: 10px;
}
.tandctext p,
.tandctext li {
	font-size: 11px;
	margin-bottom: 4px;
	margin-top: 0px;	
}

.tandctext ul,
.tandctext ol {
	margin-top: 0px;
	margin-bottom: 0px;
   padding-bottom: 0;
    padding-top: 0;
}

.tandctext ul li,
.tandctext ol li {
	padding-left: 10px;
	list-style-position: outside;
	margin-left: 10px;
}

.tandctext ul li {
	list-style-type: circle;	
}

.tandctext ol li {
	list-style-type: decimal;
}

.tandctext ol ol li {
	list-style-type: lower-roman;
	margin-left: 10px;
}

.tandctext h2 {
	font-size: 15px;
	margin-bottom: 4px;
	margin-top: 12px;	
}

.tandctext h3 {
	font-size: 13px;
	margin-bottom: 4px;
	margin-top: 8px;	
}

.tandctext .todo {
	color: #F00;	
}
/* form-pages */

.section-contract #nextsteps,
#main .message {
	font-size: 15px;
	padding: 6px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #1D9BD2;
	border-right-color: #1D9BD2;
	border-bottom-color: #1D9BD2;
	border-left-color: #1D9BD2;
	margin-bottom: 10px;
}

.contractform,
.contract,
.mark,
.financial,
.page-contract form  {
	background-color: #E8E8E8;
	padding: 10px;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	margin-bottom: 10px;
	clear: left;
}
.contractform ul,
.contract ul,
.mark ul,
.financial ul
  {
	list-style-position: outside;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.contractform li,
.contract li,
.mark ul li,
.financial ul li  {
	list-style-position: outside;
	list-style-type: none;
	background-color: #F3F3F3;
	display: block;
	padding: 2px;
	margin-bottom: 1px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
li input {
	width: 200px;
}
input#new_holder,
input#label_sunrisecode,
input#label_ipclaim {
	width:auto;
}
.contractform .street2 label,
.contract li.street2 label,
.mark ul li.street2 label,
.contractform .street3 label,
.contract li.street3 label,
.mark ul li.street3 label  {
	/* color: #F3F3F3; */
	display: none;
}

#contract_street2,
#contract_street3 {
	margin-left: 189px;
}


li.street input,
li.street2 input,
li.street3 input,
li.email input,
li.ulabel input {
	width: 280px;
}

li.ulabel.required input,
li.tablelabel input {
	width: auto;
}

li.postalcode input,
li.phone input,
li.fax input,
li.vat input,
li.courtvalidated_referencenumber input,
li.trademark_applicationnr input,
li.trademark_registrationnr input,
li.trademark_goodsandservicesclassification input {
	width: 120px;
}
li.courtvalidated_protectiondate input,
li.trademark_applicationdate input,
li.trademark_registrationdate input,
li.treatyorstatute_registrationdate input,
li.treatyorstatute_executiondate input,
li.trademark_expirationdate input,
li.mark_expirationdate input
{
	width: 75px;
}
#mark_courtvalidated_country_id,
.mark_trademark_trademarkregion_id,
.contract_country_id {
	width: 300px;
}
.contractform li.street,
.contract li.street,
.mark ul li.street,
.contractform li.street2,
.contract li.street2,
.mark ul li.street2 {
	margin-bottom: 0px;
}
.contractform li label,
.contract li label,
.mark li label {
	font-size: 10px;
	text-transform: uppercase;
	color: #000;
	text-align: right;
	display: inline-block;
	width: 180px;
	margin-right: 5px;
}

.other_label li label {
	vertical-align: top;
	margin-top: 5px;
}

.contractform #contract_vat:after
 {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

#vatinput {
	font-size: 10px;
}

.upload li label {
	text-align: right;
	display: inline-block;
	width: auto;
	margin-right: 5px;
    padding-left: 5px;
}

li input#file_upload_general_file {
	width: 400px;
	display: block;
	clear:left;
}

.contractform h3,
.mark h3 {
	font-size: 14px;
	color: #333;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 10px;
	text-shadow:#FFFFFF 1px 1px;	
}

.mark .renew,
.mark .upload,
.mark .label,
.mark .udrp,
.mark #holdertemplate,
.contract .appuser {
	display: block;
	padding: 6px;
	margin-top: 0px;
	margin-bottom: 10px;
	border: 2px solid #CCCCCC;	
}
.mark #holdertemplate .holdercontact {
	display: block;
	padding: 6px;
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #CDCDCD;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.mark .mark,
.contract .contract {
	border-radius: 0px 0px 0px 0px;
}
.mark .holder {
	padding: 0px;
	margin: 0px;
}
li.required label {
	font-weight: bold;
	color: #000;
}
.required .requiredstar {
	color: #F00;
}
form input.span4 {
	margin-right: 6px;
	margin-bottom: 4px;
	display: inline-block;
	width: 130px;
}
.legend {
	color: #FFF;
	display: inline-block;
	padding-top: 0px;
	padding-right: 9px;
	padding-bottom: 2px;
	padding-left: 9px;
	background-image: url(../images/info_legend_link_1.png);
	background-repeat: no-repeat;
	background-position: center center;
	font-weight: bold;
	font-size: 13px;
    cursor: help;
}
.legend:hover {
	color: #FFF;
	background-image: url(../images/info_legend_hover_1.png);
	background-repeat: no-repeat;
	background-position: center center;
}

/* new mark page */
.page-mark-addmark #main {
    border-radius: 0 20px 20px 20px;
    min-height: 300px;
}

/* page login */

body.page .sidebar-right {
	display: none;
}
body.page #main {
	width: 893px;
}
.public .login {
	background-color: #A3DE00;
	padding: 10px;
	border-radius: 12px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	float: right;
	margin-right: 20px;
	width: 340px; /* was 253px; */
}

.public .login legend,
.public .login .alert {
	overflow: visible;
}

.public .login .userid,
.public .login .password,
.public .login .btn {
	clear: both;
}
.public .login .btn {
	margin-left: 10px;
}

.public .login .userid,
.public .login .password {
	width: 220px;
	font-size: 10px;
	text-transform: uppercase;
	display: inline-block;
}
.public .login .userid input,
.public .login .password input {
	width: 210px;
}
.public .contractform {
	float: left;
	width: 580px;
}
.public #main .or {
	width: 251px;
	color: #000;
	float: left;
	margin-right: 20px;
}

.section-contract #main-wrapper #main .or {
	width: 585px;
}

/* account */
/* .info {
	padding: 0px;
	margin-bottom: 10px;
	border: 1px solid #999;
} */

.info h2 {
	padding: 6px;
	margin-bottom: 6px;
	font-size: 12px;
	text-transform: uppercase;
	color: #999;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

.financial .detail {
	margin-bottom: 16px;
}

#main .info table {
	width: 620px;
}

#main table.detail tr {
	background-color: transparent;
	height: auto;
	vertical-align: top;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-family: Trebuchet,'Trebuchet MS',Arial,Helvetica,sans-serif;
}

#main .contract.info table tr td:nth-child(1) { 
	width: 90px; 
}

#main .contract.info table tr td .button1 { 
	width: 90px; 
}

/* niceclass-special */
#niceclassification {
	background: #FFF;
	padding: 6px;
	border: 1px solid #94D800;
	font-size: 11px;
	position: absolute;
	z-index: 15;
	left: 5%;
	top: 5%;
	margin: 0 0 0 0;
	width: 90%;
	height: 90%;
	overflow: auto;
	display: none;
	-moz-box-shadow: 10px 10px 15px #888;
	-webkit-box-shadow: 10px 10px 15px #888;
	box-shadow: 10px 10px 15px #888;

}
#niceclassification table {
	background-color: #FFF;
}
#niceclassification tr {
	vertical-align: top;
}
#niceclassification tr.odd {
	background-color: #E5E5E5;
}
#niceclassification tr.even {
	background-color: #CCC;
}
#niceclassification td.tdcheckbox {
	width: 20px;
}
#niceclassification .tdclassnr {
	width: 55px;
}
#niceclassification .tddescript {
	width: auto;
}

.swornstatementbox {
	font-size: 10px;
	line-height: 12px;
	font-weight: normal;
	color: #666;
	text-decoration: none;
	margin-bottom: 14px;
}

.swornstatementbox input {
	line-height: 12px;
	padding: 0px;
	height: 10px;
	width: 10px;
	margin-top: 0px;
	margin-right: 6px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #000;
}

#copybar {
	display: block;
	background-color: #FFF;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 120px;
	background-image: url(../images/copy_icon_1.png);
	background-repeat: no-repeat;
	background-position: 50px 0px;
	cursor: pointer;
	box-shadow: 3px 3px #ccc;
	border-radius: 6px;
	margin-bottom: 10px;	
}

#copybar select {
	width: 360px;
}
/* general */

.or {
	border: 1px solid red;
	text: red;
	font-weight: bold;
	display: block;
	padding: 6px;
	margin-bottom: 10px;
}

hr {
}

/* usrreg */

.page- .button1.bcontractinfo a:link, 
.page- .button1.bcontractinfo a:visited,
.page-contract .button1.bcontractinfo a:link, 
.page-contract .button1.bcontractinfo a:visited,
.page-confirmtandc .button1.typetc a:link, 
.page-confirmtandc .button1.typetc a:visited,
.page-downloadcontract .button1.type2contract a:link, 
.page-downloadcontract .button1.type2contract a:visited,
.page-downloadproforma .button1.typeproforma a:link, 
.page-downloadproforma .button1.typeproforma a:visited,
.page-uploadcontract .button1.type2upload a:link, 
.page-uploadcontract .button1.type2upload a:visited,
.page-viewuploadcontract .button1.type2viewupload a:link, 
.page-viewuploadcontract .button1.type2viewupload a:visited {
	background-color: #E46D1B;
	background-image: none;
	background-position: 0 center;
	background-repeat: repeat-x;
	border-color: #E4E4E4 #D2D2D2 #B4B4B4;
	border-image: none;
	border-radius: 7px 7px 7px 7px;
	border-style: solid;
	border-width: 1px;
	box-shadow: 0px 0px 0px #FFF;
	color: #FFFFFF;
	font-weight: bold;
	letter-spacing: 0.02em;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: middle;
}

.logout {
	display: block;
	text-align: right;
	clear: both;
	margin-top: 10px;
	padding: 30px;
}

.logout a:link,
.logout a:visited {
text-decoration: none;
}

/* no display */
.page-mark-addmark .main-annex,
.not-logged-in #sitesearch-wrapper,
#ticker-wrapper {
	display: none;
}

.tablesorth {
        height: 20px !important;
}

#main .form-submit:disabled, .form-submit-2:disabled {
	background-image: none;
	background-color: #EEE;
	color: #FFF;
}

div.renewnotice {
	font-size: 12px;
	display: block;
	padding: 4px;
	margin-top: 10px;
	margin-bottom: 10px;
	border: 1px solid #ff0000;	
}

div select.priceselector option:nth-child(2), div select.priceselector option:nth-child(4) {
	color: #555
}
