@charset "utf-8";

/*Login 画面用のCSS ↓*/
* {
	font-family: '游ゴシック', 'Yu Gothic','Avenir-Light';
	/* paddingとborderの幅をwidth、heightに含める(計算しやすくするため) */
	box-sizing: border-box;
}

body {
	color: #000000;
	background-color: #DFEAEE;
	margin-top: 3px;
	margin-bottom: 5px;
	margin-left: auto;
	margin-right: auto;
	font-size: 11pt;
	width: 1630px;
}

.templateBodyPanel {
	
	/* ボディー部分のパネル */
	width: 1620px;
	background-color: #EBF6F9;
	color: #C0C0C0;
	border-width: 1px;
	border-style: solid;
	padding: 1px;
}

.loginTitlePanel {
	/* 画面タイトル */
	display:inline-block;
	*display:inline; /* IE互換モード対応 */
	*zoom:1; /* IE互換モード対応 */
	box-sizing:border-box;
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left:10px;
	margin-bottom:0px;
	width:100%;
	
	background-color:#376092;
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#87B0E2', endColorstr='#376092', GradientType=0)";
	
	color:white;
	font-weight:bold;
}

.loginPanel {
	margin-top: 250px;
	margin-left: auto;
	margin-right: auto;
	width: 800px;
	background-color: #7070BA;
	height: 300px;
	color: #C0C0C0;
	border-width: 1px;
	border-style: solid;
}

.loginIdPanel {
	margin-top: 80px;
	margin-left: 110px;
	color: #FFFFFF;
}

.heightFull {
	/*ログイン画面の大枠として使用想定*/
	height: 950px;
}

input[type="text"], input[type="password"] {
	border-width: 1px;
	border-style: solid;
	border-color: #C0C0C0;
	font-size: 11pt;
	color: #000000;
	background-repeat: repeat-x;
	background-position: 1px 1px;
	background-image: none;
	background-color: #FFFFFF;
	height: 21px;
	outline: none !important;
	/*rounding four of corner*/
	-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px; 
	-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;
	-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;-khtml-border-bottom-left-radius:3px;border-bottom-left-radius:3px;
	-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;-khtml-border-bottom-right-radius:3px;border-bottom-right-radius:3px;
}

input[type="submit"] {
	height: 23px;
	border: 1px solid #505050 !important;
	font-size: 11pt !important;
	font-family: '游ゴシック', 'Yu Gothic','Avenir-Light' !important;
	font-weight: normal !important;
	color: #FFFFFF !important;
	background-position: top left !important;
	background-color: #333377 !important;
	background-size: 0px !important;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	outline: none !important;
	-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;-khtml-border-top-left-radius:3px;border-top-left-radius:3px;
	-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;-khtml-border-top-right-radius:3px;border-top-right-radius:3px;
	-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;-khtml-border-bottom-left-radius:3px;border-bottom-left-radius:3px;
	-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;-khtml-border-bottom-right-radius:3px;border-bottom-right-radius:3px;
}

input[type="submit"]:hover {
	border-color: #F0F0F0 !important;
	background-position: bottom left !important;
	background-color: #5C7BE1 !important;
	background-size: 0px !important;
}

/*h_messagesの定義*/
ul.msgs {
	padding-left: 0px;
	padding-top: 0px;
}

li.msg-err, li.msgs-err, li.msg-inf, li.msgs-inf, li.msg-wrn, li.msgs-wrn, li.msg-ok, li.msgs-ok {
	background-color:#B9CDE5;	
	display: block;
	padding-bottom:2px;
	padding-top:2px;
	padding-right: 2px;
	padding-left: 20px;
	vertical-align: top;
	background-repeat: no-repeat;
	background-position: left center;
}

li.msg-err, li.msgs-err {
	background-image: url(/medx1/img/msgerror.png);
	color: #FF0000;
}

li.msg-inf, li.msgs-inf {
	background-image: url(/medx1/img/msginfo.png);
	color: #000000;
}

li.msg-wrn, li.msgs-wrn {
	background-image: url(/medx1/img/msgwarn.png);
	color: #CC8100;
}