/* style.css */

* {
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html { font-size: 100%; /* IE hack */ }
body { font-size: 0.8333em; } /* => 1em = 10pt (X*0.8333=10 => X=12) */

* { font-family: arial; }

body {
	background: #ffffff url(../gfx/background.png) no-repeat;
}

div,table {
	margin: 0px;
	padding: 0px;
}

table {
	font-size: 12px;
	font-family: arial, verdana, helvetica;
	border: outset 0px;
	border-spacing: 2px;
}

td {
	margin: 0px;
	padding: 0px;
}

button, input[type="reset"], input[type="submit"], input[type="button"] {
    white-space: nowrap;
    border-color: #bbb;
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    padding: 3px 7px;
    font-size: 11px;
    background: #e8e8e8; /* for non-css3 browsers */
    background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#e0e2e1)); /* for webkit browsers */
    background: -moz-linear-gradient(top,  #fcfcfc,  #e0e2e1); /* for firefox 3.6+ */
}

button:hover, input[type="reset"]:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: #cccccc; /* for non-css3 browsers */
    background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#e0e2e1)); /* for webkit browsers */
    background: -moz-linear-gradient(top,  #fcfcfc,  #e0e2e1); /* for firefox 3.6+ */
}

button[disabled], input[type="reset"][disabled], input[type="submit"][disabled], input[type="button"][disabled] {
    color: #B1ADA7;
    border-color: #cccccc;
    background-color: #cccccc;
}

+button[disabled]:hover, input[type="reset"][disabled]:hover, input[type="submit"][disabled]:hover, input[type="button"][disabled]:hover {
    color: #B1ADA7;
    border-color: #cccccc;
    background: #e8e8e8; /* for non-css3 browsers */
    background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#e0e2e1)); /* for webkit browsers */
    background: -moz-linear-gradient(top,  #fcfcfc,  #e0e2e1); /* for firefox 3.6+ */
}

/* TODO: Move below styles to another place? */
#body {
	position: relative;
	height: 100%;
	top: 10px;
	right: 0px;
	left: 0px;
	bottom: 0px;
}

#content {
	overflow: auto;
	height: 100%;
	left: 0px;
	bottom: 0px;
	top: 0px;
	position: relative;
}


#ui-datepicker-div {
	display: none;
}

