/*--------------------------------
  Input Type: TEXT 
---------------------------------*/
/*Begin: EFN#116 | remove HTC behavior and added similar css properties | 30 Jan 15, Fr | 10:45*/
input.text {
    border:1px solid #CCCCCC;
    font-size:12px;
    color:#363636;
    background-color:#FFFFFF;
    border-radius:2px;
    padding:5px;
    -webkit-transition: border-color .218s;
    -moz-transition: border .218s;
    -o-transition: border-color .218s;
    transition: border-color .218s;
	}
	
input.text:active, input.text:hover, input.text:focus {
    color:#3369E8;
    border:1px solid #3369E8;
	}

input.text:disabled {
    color:#CCCCCC;
    border:1px solid #DDDDDD;
    pointer-events:none;
	}
/*End: EFN#116 | remove HTC behavior and added similar css properties | 30 Jan 15, Fr | 10:45*/

/*Begin: EFN#116 | for input with preset number and currency | 03 Apr 15, Fr | 16:24*/
input[preset='Numbers'], input[preset='Currency'] {
    text-align:right;
}
/*End: EFN#116 | for input with preset number and currency | 03 Apr 15, Fr | 16:24*/

/*Begin: EFN#116 | css properties for input calendar  | 09 Feb 15, Mo | 17:52*/
input.calendar, input.calendartime {
    border:1px solid #CCCCCC;
    font-size:12px;
    color:#363636;
    background-color:#FFFFFF;
    border-radius:2px;
    padding:5px 20px 5px 5px;
    cursor:pointer;
    -webkit-transition: border-color .218s;
    -moz-transition: border .218s;
    -o-transition: border-color .218s;
    transition: border-color .218s;
    background-image: url(/EnterprisePoseidon/images/htc/calendar/htcCalendar.gif);
    background-position: 98% center;
    background-repeat:no-repeat;
	}
	
input.calendar:active, input.calendar:hover, input.calendar:focus, input.calendartime:active, input.calendartime:hover, input.calendartime:focus {
    color:#3369E8;
    border:1px solid #3369E8;
	}
	
input.calendar:disabled, input.calendartime:disabled {
    color:#CCCCCC;
    border:1px solid #DDDDDD;
    background-image: url(/EnterprisePoseidon/images/htc/calendar/htcCalendarOff.gif);
    background-position: 98% center;
    background-repeat:no-repeat;
    pointer-events:none;
}
/*End: EFN#116 | css properties for input calendar  | 09 Feb 15, Mo | 17:52*/

/*--------------------------------
  Input Type: TEXTSELECT
---------------------------------*/
/*Begin: EFN#116 | remove HTC behavior and added similar css properties | 26 Mar 15, Th | 12:19*/
input.txtSelect {
    border:1px solid #CCCCCC;
    font-size:12px;
    color:#363636;
    background-color:#FFFFFF;
    border-radius:2px;
    padding:5px 25px 5px 13px;
    cursor:pointer;
    -webkit-transition: border-color .218s;
    -moz-transition: border .218s;
    -o-transition: border-color .218s;
    transition: border-color .218s;
    background-image: url(/EnterprisePoseidon/images/htc/htcSelect.Arrow.png);
    background-position: 95% center;
    background-repeat: no-repeat;
	}
	
input.txtSelect:active, input.txtSelect:hover, input.txtSelect:focus {
    color:#3369E8;
    border:1px solid #3369E8;
	}

input.txtSelect:disabled {
    color:#CCCCCC;
    border:1px solid #DDDDDD;
    pointer-events:none;
	}
/*End: EFN#116 | remove HTC behavior and added similar css properties | 26 Mar 15, Th | 12:19*/
	
/*--------------------------------
  Input Type: TEXTAREA 
---------------------------------*/
/*Begin: EFN#116 | remove HTC behavior and added similar css properties | 30 Jan 15, Fr | 10:56*/
/* Begin: EFN#120 | Added width and height attributes. | 14 Apr 2015 Tue | 14:00 */
textarea.tarea {
    width:100%;
    height:50px;
    border:1px solid #CCCCCC;
    font-size:12px;
    color:#363636;
    background-color:#FFFFFF;
    border-radius:2px;
    padding:5px;
    resize:none;
    -webkit-transition: border-color .218s;
    -moz-transition: border .218s;
    -o-transition: border-color .218s;
    transition: border-color .218s;
	}
	
textarea.tarea:active, textarea.tarea:hover, textarea.tarea:focus {
    color:#3369E8;
    border:1px solid #3369E8;
	}

textarea.tarea:disabled {
    color:#CCCCCC;
    border:1px solid #DDDDDD;
    pointer-events:none;
	}
	
/*textarea.tarea:-moz-read-only {
    background-color:inherit;
}

textarea.tarea:read-only { 
    background-color:inherit;
}*/
/* End: EFN#120 | 14 Apr 2015 Tue | 14:00 */
/*End: EFN#116 | remove HTC behavior and added similar css properties | 30 Jan 15, Fr | 10:56*/

/*--------------------------------
  Input Type: BUTTON 
---------------------------------*/
/*Begin: EFN#116 | remove HTC behavior and added similar css properties | 30 Jan 15, Fr | 09:55*/
input.button {
    color: #6E6E6E;
    font-size:12px;
    font-weight:lighter;
    text-decoration: none;
    padding:5px 10px;
    -webkit-transition: border-color .218s;
    -moz-transition: border .218s;
    -o-transition: border-color .218s;
    transition: border-color .218s;
    background-color:#FFFFFF;
    border: solid 1px #CCCCCC;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
	}

input.button:hover, input.button:focus {
    color:#3369E8;
    border:1px solid #3369E8;
    cursor:pointer;
    -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2); 
	-webkit-box-shadow:0 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
	}
	
input.button:active {
    color:#3369E8;
    cursor:pointer;
    background-color:#CCCCCC;
    box-shadow:1px 1px 1px 1px #999999 inset;
	}

input.button:disabled {
    color:#CCCCCC !important;
    border:1px solid #DDDDDD !important;
    pointer-events:none !important;
	}
/*End: EFN#116 | remove HTC behavior and added similar css properties | 30 Jan 15, Fr | 09:55*/

/*---------------------------------------
  Input Type: CLEAR
----------------------------------------*/
input.buttonClear {
	color:#0066CC; 
	background-color:#FFFFFF; 
	border:1px solid #99CCFF; 
	padding:0px;
	/*BEHAVIOR: url("/EnterprisePoseidon/lib/htc/Input.htc"); EFN#116 | commented as not needed anymore for cross-browser integrationc | 16 Nov 15, Mo | 15:58*/
	}

input.buttonClearOver {
	color:#0066CC; 
	background-color:#EDF1FE; 
	border:1px solid #99CCFF; 
	padding:0px;
	/*BEHAVIOR: url("/EnterprisePoseidon/lib/htc/Input.htc"); EFN#116 | commented as not needed anymore for cross-browser integrationc | 16 Nov 15, Mo | 15:58*/
	}
	
input.buttonClearOff {
	color:#99CCFF; 
	background-color:#FFFFFF; 
	border:1px solid #D5EAFF; 
	padding:0px;
	/*BEHAVIOR: url("/EnterprisePoseidon/lib/htc/Input.htc"); EFN#116 | commented as not needed anymore for cross-browser integrationc | 16 Nov 15, Mo | 15:58*/
	}

/*---------------------------------------
  Input Type: RESET
----------------------------------------*/
input.buttonReset {
	font-weight:bold;
	color:#336699; 
	background-color:#D2E1F0; 
	border:1px solid #336699; 
	padding:0px;
	/*BEHAVIOR: url("/EnterprisePoseidon/lib/htc/Input.htc"); EFN#116 | commented as not needed anymore for cross-browser integrationc | 16 Nov 15, Mo | 15:58*/
	}

input.buttonResetOver {
	font-weight:bold;
	color:#336699; 
	background-color:#EDF1FE; 
	border:1px solid #336699; 
	padding:0px;
	/*BEHAVIOR: url("/EnterprisePoseidon/lib/htc/Input.htc"); EFN#116 | commented as not needed anymore for cross-browser integrationc | 16 Nov 15, Mo | 15:58*/
	}
	
input.buttonResetOff {
	font-weight:bold;
	color:#A9C6E2; 
	background-color:#E8EFF7; 
	border:1px solid #A9C6E2; 
	padding:0px;
	/*BEHAVIOR: url("/EnterprisePoseidon/lib/htc/Input.htc"); EFN#116 | commented as not needed anymore for cross-browser integrationc | 16 Nov 15, Mo | 15:58*/
	}

/*---------------------------------------
  Input Type: SET DEFAULT 
----------------------------------------*/
input.buttonDefault {
	font-weight:bold;
	color:#336699; 
	background-color:#D2E1F0; 
	border:1px solid #336699; 
	padding:0px;
	/*BEHAVIOR: url("/EnterprisePoseidon/lib/htc/Input.htc"); EFN#116 | commented as not needed anymore for cross-browser integrationc | 16 Nov 15, Mo | 15:58*/
	}

input.buttonDefaultOver {
	font-weight:bold;
	color:#336699; 
	background-color:#EDF1FE; 
	border:1px solid #336699; 
	padding:0px;
	/*BEHAVIOR: url("/EnterprisePoseidon/lib/htc/Input.htc"); EFN#116 | commented as not needed anymore for cross-browser integrationc | 16 Nov 15, Mo | 15:58*/
	}
	
input.buttonDefaultOff {
	font-weight:bold;
	color:#A9C6E2; 
	background-color:#E8EFF7; 
	border:1px solid #A9C6E2; 
	padding:0px;
	/*BEHAVIOR: url("/EnterprisePoseidon/lib/htc/Input.htc"); EFN#116 | commented as not needed anymore for cross-browser integrationc | 16 Nov 15, Mo | 15:58*/
	}

/*-------------------------------------------
  Input Type: Single and Multiple CHECKBOX 
--------------------------------------------*/
input.sCbox {
	border:0px; 
	background-color:transparent;
	height:17px;
	width:17px;
	}

input.mCbox {
	border:0px; 
	background-color:#CCCCCC;
	height:17px;
	width:17px;
	}


/* --- Begin: EFN#116 | radio/checkbox element | 14 Jan 15, We | 15:31 --- */
label.customcheckbox, label.customradio {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding-left: 20px;
	margin-right: 10px;
}

/* --- Begin: EFN#118 | checkbox default color | 25 Feb 15, We | 09:44 --- */
label.customcheckboxdefault, label.customradiodefault{
    color: #AD533D !important;
}
/* --- End: EFN#118 | checkbox default color | 25 Feb 15, We | 09:44 --- */

input.customradio[type=radio],
input.customcheckbox[type=checkbox] {
	display: none;
}

label.customcheckbox:before, label.customradio:before{
	content: "";
	display: inline-block;
	width: 15px !important;
	height: 15px !important;
	margin-right: 5px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
    -webkit-transition: border-color .218s;
    -moz-transition: border .218s;
    -o-transition: border-color .218s;
    transition: border-color .218s;
}

label.customcheckbox:hover:before, label.customradio:hover:before {
	border: 1px solid #3369E8;
}

label.customcheckbox:hover, label.customradio:hover {
	color: #3369E8;
}

label.customradio:before {
	border-radius: 8px;
}

label.customcheckbox:before {
	border-radius: 3px;
}

input.customradio[type=radio]:checked + label.customradio:before {
    content: "\2022";
    color: #363636;
    font-size: 20px;
	text-align: center;
    line-height: 10px;
}

input.customcheckbox[type=checkbox]:checked + label.customcheckbox:before {
	content: "\2713";
	font-size: 15px;
	color: #FF0000;
	text-align: center;
    line-height: 15px;
}

input.customcheckbox[type=checkbox]:disabled + label.customcheckbox:before, input.customradio[type=radio]:disabled + label.customradio:before {
    color:#CCCCCC;
    background-color:#F8F8F8;
    border:1px solid #DDDDDD;
    pointer-events:none;
}

input.customcheckbox[type=checkbox]:disabled + label.customcheckbox, input.customradio[type=radio]:disabled + label.customradio {
    color:#CCCCCC !important;
    pointer-events:none;
}
/* --- End: EFN#116 | radio/checkbox element | 14 Jan 15, We | 15:31 --- */

