
/*
* {
    padding: 0;
    margin: 0;
}
*/
body {
    padding: 0;
    margin: 0;
	/*font-family: 'PerspectiveSansRegular', Verdana, Helvetica, sans-serif; */
    font-family: 'CabinRegular', Verdana, Helvetica, sans-serif;
    font-size: 13px;
	color: #383838;
    line-height: 1.35em;
}
body.live {
	background-color: #ffffff;
}

table { border-collapse: collapse; }
td { vertical-align: top; }
td, li, p, .txt {          
	font-size: 13px;
    font-family: 'CabinRegular', Verdana, Helvetica, sans-serif;
	color: #383838;
    line-height: 1.35em;
}
ul { margin-top: .2em; }
hr {
    border: 0px; /* Firefox / Opera */
 	border-top: solid 1px #CECECE;
 	border-bottom: transparent;
}
form { margin: 0px; padding: 0px; }

h1, h2, h3, h4, h5 { margin: 0; }
p, .txt {
	padding: 0px;
	margin-top: 2px;
	margin-bottom: 8px;
	line-height: 1.6em;
}
.small { font-size: 11px; }
a, a:visited, a:active { text-decoration:underline; color: #363636; }
a:hover { color: #333; }
a img { border: 0; }

.note {
  	padding: 1px;
	margin: 2px 0;
  	color: #0033ff;
	background: #fff;
	font-size: 11px; 
}
p.note { margin: 8px 0; }


.clearer {
  	clear: both; 
	height: 0px;
	overflow: hidden;
} 
div.shitIE {
  	font-size: 0.01em;
}
/** ************************************************************************ ** 
 *   TABLE LISTINGS 
 ** ************************************************************************ **/
table.tab-valuelist { border: 1px solid #CFCFCF; margin: 10px 0; width: auto; }
table.tab-valuelist th, table.tab-valuelist td { border: 1px solid #CFCFCF; padding: 2px 3px; }

/** ************************************************************************ ** 
 *   SOME SPECIALS 
 ** ************************************************************************ **/
/**
 * Link with dotted borders top and bottom 
 */
a.superLink { 
    padding: 3px 5px; border-top: 1px dotted #666; border-bottom: 1px dotted #666; 
    line-height: 1.2em; font-size: 12px; font-weight: bold; color: #333; text-decoration: none;
}
/**
 * Right floating edit option 
 */
.editlink-right { float: right; margin-top: 24px; font-size: 12px; }

/** ****************************************************************** **
 ** MESSAGES :: new msg-block + msg-error, msg-info, msg-warn, msg_ok 
 ** ****************************************************************** **/ 
.msg-block { 
    position: relative;
    margin: 10px 0;
    padding: 5px 10px;
    min-height: 40px;
    background: #F7F7F7;
    border-left-width: 40px;
    border-left-style: solid;
    /*border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;*/
}
.msg-block .ico { position: absolute; left: -35px; top: 4px; z-index: 50; }
.msg-info { border-left-color: #FFB340; }
.msg-ok { border-left-color: #8CD966; background-color: #DCF4D1; }
.msg-warn { border-left-color: #668CD9; background-color: #D1DCF4; }
.msg-error { border-left-color: #FF4040; background-color: #FFC5C5; }
.msg-block h2, .msg-block h3 { padding-top: 0; }
.msg-error h2, .msg-error h3 { color: #cc0000; }

/**
 * form error message 
 */
.error {
	font-size: 12px;
	color: #ff0000;
}

/** ************************************************************************ ** 
 *   TOGGLE NEXT DIV  
 ** ************************************************************************ **/

.toggleNextDiv { cursor: pointer; position: relative; }
.toggleNextDiv .toggle-icon { 
    position: absolute;
    top: 2px;
    right: 0;
    width: 94px;
    height: 28px;
    background-image: url(../images/but/ico_toggle_hide.gif);
    background-repeat: no-repeat;
}
.toggleNextDiv.isHidden .toggle-icon {
    background-image: url(../images/but/ico_toggle_show.gif);
}
.langDE .toggleNextDiv .toggle-icon {
    background-image: url(../images/but/ico_toggle_hide_de.gif);
}
.langDE .toggleNextDiv.isHidden .toggle-icon {
    background-image: url(../images/but/ico_toggle_show_de.gif);
}

/** ************************************************************************ ** 
 *   FORMS  
 ** ************************************************************************ **/

/** Common rules, positioning left/right */
.buttons { height: 30px; margin: 5px 0 20px 0; }
.buttons .but-right { float: right; }

/** Big Button */
button.bigBut, a.bigBut {
    width: 200px; border-top: 0; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; border-left: 0; padding: 0 10px; 
    background: #F5F5F5; cursor: pointer;
    font-size: 32px; color: #FF390C; font-family: 'CabinRegular', Verdana, Helvetica, sans-serif; line-height: 1.6em; font-weight: normal;
}
a.bigBut { width: 180px; display: inline-block; text-decoration: none; }
/** Standard Button */
button.stdBut, a.stdBut {
    border-top: 0; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc; border-left: 0; padding: 3px 6px;
    background: #FF390C; cursor: pointer;
    font-size: 16px; color: #ffffff; font-family: 'CabinRegular', Verdana, Helvetica, sans-serif; line-height: 1.2em; font-weight: normal;
}
a.stdBut { display: inline-block; text-decoration: none; }
/**
 * Common button hover styles 
 */
button.aas-but:hover, a.aas-but:hover {
    border-top: 1px solid #ccc;
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid #ccc;
}
button.aas-but:active, a.aas-but:active {
    border-top: 1px solid #333;
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid #333;
}
