html {
	background-color: #EDEDED;
}

body, input, textarea, button, select, th, td {
	font-family: sans-serif;
	font-size:12px;
	color:#303743;
	line-height:14px;
}
.box dt {
	float:left;
	clear: both;
	/*width:150px;*/
	width:172px;
	padding:5px;
	font-weight:bold;
	line-height:26px;
	box-sizing: border-box;
}

.box dt.box-title {
	width: 100%;
	box-sizing: border-box;
	
	border-bottom: 1px solid #000;
	background-color: #FFF;
	color: #333;
	font-size: 14px;
}

.box dt.box-title .toggle {
	float: right;
	line-height: 26px;
}

.box dd {
	float:left;
	/*width:650px;*/
	width:850px;
	padding:5px;
	background-color:#FFFFFF;
	margin-left: 0;
	color: #303743;
	box-sizing: border-box;
}
/*.box dd input.wetextinput {
	width:95%;
}
.box dd .weEditmodeStyle input.wetextinput {
	width:auto;
}*/
.box,
.info-box {
	float:left;
	/*width:802px;*/
	width:1024px;
	clear:both;
	margin:5px;
	border:1px solid #3b6598;
	/*background-color:#bbb;*/
	background-color: #325e94;
	color: #fff;
	box-sizing: border-box;
}

.info-box {
	font-style: italic;
	padding:10px;
	text-align: center;
}

.info-box.warn {
	background-color: #f24a1d;
	font-weight: bold;
}

ul, ol {
	padding:0 0 16px 24px;
	margin:0;
}
p {margin:0;padding:0 0 16px 0;}



table.block-table {
	width: 100%;
	margin: 1em 0;
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
}


table.block-table > tbody > tr > th:first-child,
table.block-table > tr > th:first-child{
	width: 150px;
	font-weight: bold;
	text-align: left;
	border-right: 1px dotted #ddd;
}

table.block-table > tbody > tr > td,
table.block-table > tbody > tr > th,
table.block-table > tr > td,
table.block-table > tr > th{
	padding: 0.5em 0;
	vertical-align: top;
}

table.block-table > tbody > tr > td,
table.block-table > tr > td {
	padding-left: 1em;
}

table.block-table > tbody > tr+tr > td,
table.block-table > tbody > tr+tr > th,
table.block-table > tr+tr > td,
table.block-table > tr+tr > th{
	border-top: 1px dotted #ddd;
}

table.block-table > tr.seperator > td,
table.block-table > tbody > tr.seperator > td{
	height: 0;
	line-height: 0;
	border-top: none;
	padding: 1em 0;
}
table.block-table > tr.seperator > td:before,
table.block-table > tbody > tr.seperator > td:before {
	content: '';
	display: block;
	border-top:  1px dotted #555 ;
}


table.block-table > tr.seperator+tr > td,
table.block-table > tbody > tr.seperator+tr > td,
table.block-table > tr.seperator+tr > th,
table.block-table > tbody > tr.seperator+tr > th {
	border-top: none;
}



/** Form fields **/
input,
label,
select,
button,
textarea {
    margin: 0;
    border: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    background: none;
    line-height: 1.3;
    border-radius: 0;
}

input,
textarea {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}


input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
    width: 100%;
    padding: 5px;
    line-height: 1.2;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.we_blockControls select {
	width: auto;
}


/* Inputs with controls */
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=number],
input[type=time],
input[type=week],
select {
    padding-right: 10px;
}

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
input[type=checkbox],
input[type=radio],
textarea,
select {
    border-width: 1px;
    border-style: solid;
		border-color: #aaa;
}

input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=range]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus,
textarea:focus,
select:focus {
	border-color: #333;
}

dd.date input,
dd.date select {
	width: auto;
}
td.date input,
td.date select {
	width: auto;
}

/* Textarea
-----------------------------------------------*/
textarea {
    /* Move the label to the top */
    vertical-align: top;
    /* Turn off scroll bars in IE unless needed */
    overflow: auto;
	width: 100%;
	background-color:#fff;
	max-width: 100%;
	resize: vertical;
	min-height: 80px;
}

/* Selects
-----------------------------------------------*/

select[multiple] {
    /* Move the label to the top */
    vertical-align: top;
}
