﻿/* `Widths
----------------------------------------------------------------------------------------------------*/

.input_tiny {
	width: 50px;
}

.input_small {
	width: 100px;
}

.input_medium {
	width: 150px;
}

.input_large {
	width: 200px;
}

.input_xlarge {
	width: 250px;
}

.input_xxlarge {
	width: 300px;
}

.input_full {
	width: 100%;
}

/*
	Added via JS to <textarea> and class="input_full".
	Applies to IE6, IE7. Other browsers don't need it.
*/
.input_full_wrap {
	display: block;
	padding-right: 8px;
}

/* `UI Consistency
----------------------------------------------------------------------------------------------------*/

::-moz-focus-inner {
	border: 0;
}

input[type=search]::-webkit-search-decoration {
	display: none;
}

input,
button,
select,
textarea {
	margin: 0;
	vertical-align: middle;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
	-webkit-appearance: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	background: #1C5B86 none;
	/*background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #ddd));
	background: -moz-linear-gradient(top center, #fff 0%, #ddd 100%);*/
	border: 1px solid;
	border-color: #7f9db9;
	cursor: pointer;
	color: #fff;
	font: 1em/1.2 Arial, sans-serif;
	outline: 0;
	overflow: visible;
	padding: 3px 10px 4px;
	width: auto;

	/* IE7 */
	*padding-top: 2px;
	*padding-bottom: 0px;
}

button:hover,
input[type=reset]:hover,
input[type=submit]:hover,
input[type=button]:hover
{
  background: #1C5B86 url(../Img/layout/button_blue.png) repeat-x;
}

button {
	/* IE7 */
	*padding-top: 1px;
	*padding-bottom: 1px;
}

button[disabled],
input[type=reset][disabled],
input[type=submit][disabled],
input[type=button][disabled] {
	color: #888;
}

table.rcTable
{
  width: 100%;
}

html body table.rcTable td.rcInputCell input
{
  font: 0.93em/1.88em 'Arial', 'Liberation Sans', FreeSans, sans-serif !important;
}

html body div .RadInput_Default .riTextBox,
html body table.rcTable td.rcInputCell input,
textarea,
select,
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] 
{
	-webkit-appearance: none;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #EFF1F3;
	border: 1px solid;
	border-color: #7f9db9;
	color: #333;
	outline: 0;
	padding: 2px 3px;
	font-size: 1em;
	font-family: Arial, sans-serif;
	height: 2em;

	/* IE7 */
	*padding-top: 2px;
	*padding-bottom: 1px;
	*height: auto;
}

/*
	Separate rule for Firefox.
	Cannot stack with WebKit's.
*/
input.placeholder_text,
textarea.placeholder_text {
	color: #888;
}

::-webkit-input-placeholder {
	color: #888;
}

textarea[disabled],
select[disabled],
input[type=date][disabled],
input[type=datetime][disabled],
input[type=datetime-local][disabled],
input[type=email][disabled],
input[type=month][disabled],
input[type=number][disabled],
input[type=password][disabled],
input[type=search][disabled],
input[type=tel][disabled],
input[type=text][disabled],
input[type=time][disabled],
input[type=url][disabled],
input[type=week][disabled] {
	background-color: #eee;
	color: #888;
}

button:focus,
button:active,
input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
	-moz-box-shadow: #7f9db9 0 0 3px;
	-webkit-box-shadow: #7f9db9 0 0 3px;
	box-shadow: #7f9db9 0 0 3px;

	/* for Opera */
	z-index: 1;
}

.is_webkit select {
	/* Tweaks for Safari + Chrome. */
	background-image: url(../Img/layout/select_arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 20px;
}

textarea,
select[multiple] {
	height: auto;
}

select[multiple],
.is_webkit select[multiple] {
	background-image: none;
	padding: 0;
}

textarea {
	overflow: auto;
	resize: vertical;
	width: 100%;
}

optgroup {
	color: #000;
	font-style: normal;
	font-weight: normal;
}

/* `IE6
----------------------------------------------------------------------------------------------------*/

/*
	Everything below this line is for IE6.
	Delete it if you don't support it! :)

	Classes are added dynamically via JS,
	because IE6 doesn't support attribute
	selectors: .ie6_button, .ie6_input, etc.

	Note: These style rules are somewhat
	duplicated because IE6 bombs out when
	it sees attribute selectors. Example:

	.ie6_button {
		This works in IE6.
	}

	.ie6_button,
	input[type=submit] {
		This doesn't work.
	}
*/

.ie6_button,
* html button {
	background: #1C5B86 none;
	border: 0 solid #7f9db9;
	cursor: pointer;
	color: #fff;
	font: bold 1em/1.2 Arial, sans-serif;
	padding: 4px 10px 2px;
	overflow: hidden;
	width: auto;
	font-weight: normal;
}

* html button {
	padding-top: 1px;
	padding-bottom: 1px;
}

.ie6_input,
* html textarea,
* html select {
	background: #EFF1F3;
	border: 1px solid #7f9db9;
	color: #333;
	padding: 2px 3px 2px;
	font-size: 1.1em;
	font-family: Arial, sans-serif;
	vertical-align: top;
}

* html div.form .grid_2 { width: 90px !important;}
* html div.form .grid_3 { width: 150px !important; }
* html div.form .grid_4 { width: 210px !important; }
* html div.form .grid_5 { width: 270px !important; }
* html div.form .grid_6 { width: 330px !important; }
* html div.form .grid_7 { width: 390px !important; }
* html div.form .grid_8 { width: 450px !important; }
* html div.form .grid_9 { width: 510px !important; }
* html div.form .grid_10 { width: 570px !important; }

* html select {
	margin-top: 1px;
}

.placeholder_text,
.ie6_input_disabled,
.ie6_button_disabled {
	color: #888;
}

.ie6_input_disabled {
	background: #eee;
}