@charset "utf-8";

#escpgm {
   -ms-user-select: none; /* IE 10+ */
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   user-select: none;
}

.selectable {
   -ms-user-select: auto;
   -moz-user-select: auto;
   -khtml-user-select: auto;
   -webkit-user-select: auto;
   user-select: auto;
}

/****************************

 メインレイアウト

 ****************************/
#escpgm {
	position: relative;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizein:border-box;
	margin: 0 auto;
	/*width:480px;
	height:450px;*/
	width:600px;
	height:720px;
	font-size:80%;
	text-align:center;
	background-color:#aaa;
	/*border: 1px solid #666;*/
	overflow:hidden;
	z-index: 1;
}
#escpgm > div,
#escpgm > div > div,
#escpgm > div > div > div {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizein:border-box;
}
#eg-ed-window {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	background-color:#fff;
	z-index: 2990;
}
#eg-ed-window img {
	width: 100%;
}

#eg-title-window {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	background-color:#fff;
	z-index: 1000;
}

#eg-door-window {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	background-color:#fff;
	z-index: 4000;
}

#eg-load-window {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	background-color:#999;
	z-index: 3000;
}

/* loader */
#eg-loader {
	position: absolute;
	top: 20%;
	left: 35%;
	width:30%;
	height:24%;
    border-radius: 50%;  /*CSS3で円を書く*/
    border: 8px solid #fff;  /*円に○の白枠をつける*/
    border-right-color: transparent; /*円の右にC状の空きをつける*/
	animation: spin 1s linear infinite; /*1秒毎にくるくる回転するアニメーション*/
}
@keyframes spin
{
    0% { transform: rotate(0deg);   opacity: 0.2; } /*0%の時は20％の透明度*/
    50%  { transform: rotate(180deg); opacity: 1.0; } /*50%の時は透明度なし*/
    100%   { transform: rotate(360deg); opacity: 0.2; } /*100%の時に20％の透明度に戻る*/

}
#eg-loading {
	position: absolute;
	top: 60%;
	left: 25%;
	font-size:300%;
	color:#fff;
}

#eg-menu-window {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	/*
	opacity: 0.9;
	background-color:#333;
	*/
	background: rgba(51,51,51, 0.9);
	z-index: 900;
}

#eg-dialog-window,
#eg-language-window,
#eg-sound-window,
#eg-backtitle-confirm-window {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	/*
	opacity: 0.9;
	background-color:#333;
	background: rgba(51,51,51, 0.9);
	*/
	background: rgba(255,255,255, 0);
	z-index: 1200;
}

#eg-message-window {
	position: relative;
	width:100%;
	height:12%;
	background-color:#99f;
	z-index: 100;
}

#eg-thanks-window {
	position: relative;
	width:100%;
	height:12%;
	font-size:28px;
	color:#f00;
	background-color:#fff;
	z-index: 100;
}

#eg-clear-window {
	position: relative;
	width:100%;
	height:100%;
	background-color:#fff;
	overflow:hidden;
	z-index: 100;
}

#eg-main-window {
	position: relative;
	width:100%;
	height:100%;
	background-color:#fff;
	overflow:hidden;
	z-index: 100;
}

/****************************

 ドアウインドウ

 ****************************/
#eg-door-left {
	position: absolute;
	top: 0;
	left: -50%;
	width:50%;
	z-index: 4000;
}
#eg-door-right {
	position: absolute;
	top: 0;
	left: 100%;
	width:50%;
	z-index: 4000;
}


/****************************

 共通（フィルターウインドウ）

 ****************************/

.eg-filter-window {
 	font-size:28px;
}

.eg-filter-window-caption {
 	font-size:2em;
	font-weight: bold;
	text-shadow:0px 0px 3px #ff6;
}

.eg-close-btn {
	width: 10%;
	height: 8%;
	border: 5px solid #f66;
	background-color: #000;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
  	border-radius: 30px;
  	font-size: 1.2em;
	color: #fff;
	cursor: pointer;
}

.eg-close-btn:hover {
	border-color: #f00;
	background-color: #999;
}


/****************************

 メイン画面（eg-main-window）

 ****************************/

#eg-dark-filter {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	background-color:#333;
	z-index: 250;
}

.eg-scene {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	overflow:hidden;
}

.eg-move-btn {
	font-size:48px;
	color: #666;
    text-shadow:0px 0px 3px #ff6;
	opacity: 0.6;
	z-index: 300;
}

.eg-move-btn:hover {
	opacity: 1;
}
#eg-move-0 {
	position: absolute;
	top: 0;
	left: 45%;
}
#eg-move-1 {
	position: absolute;
	top: 75%;
	left: 87%;
}
#eg-move-2 {
	position: absolute;
	top: 83%;
	left: 45%;
}
#eg-move-3 {
	position: absolute;
	top: 75%;
	left: 2%;
}
.eg-bgimg {
	top: 0;
    left: 0;
    z-index: 120;
    height: 100%;
}

/****************************

 数独

 ****************************/
#c-i-hide,#c-m-hide {
	position: absolute;
	width:98%;
	height:13%;
	background-color:#fff;
    z-index:160;
}
#c-i-hide {
	top: 0;
	left:0;
	font-size:28px;
	color:#f00;
	background-color:#fff;
}
#c-m-hide {
	top: 82%;
	left:0;
}
#c-i-area,#c-m-area {
	position: absolute;
	height:11.5%;
    border-radius: 5px;        /* CSS3草案 */
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 5px;   /* Firefox用 */
    z-index:140;
}
#c-i-area {
	top: 1.5%;
	left:1%;
	width:95%;
	border:solid 2px #00f;
}
#c-m-area {
	top: 82%;
	left:1%;
	width:95%;
	border:solid 2px #666;
}

#c-i-caption,#c-m-caption,#complate_count_caption,#complate_count,#eg-timer,#egnp-input-mode-off,#egnp-input-mode-on {
	position: absolute;
	font-size:16px;
    z-index:150;
}
#c-i-caption {
	top: 3%;
	left:2%;
	font-weight: bold;
}
#c-m-caption {
	top: 83%;
	left:2%;
}
/*
#egnp-input-mode-off,#egnp-input-mode-on {
	top: 3%;
	left:30%;
}
*/
#complate_count_caption {
	top: 3%;
	left:59%;
}
#complate_count {
	top: 3%;
	left:71%;
}
#eg-timer {
	top: 3%;
	left:80%;
}
#c-i1,#c-i2,#c-i3,#c-i4,#c-i5,#c-i6,#c-i7,#c-i8,#c-i9,
#c-m1,#c-m2,#c-m3,#c-m4,#c-m5,#c-m6,#c-m7,#c-m8,#c-m9 {
	position: absolute;
	width:9%;
	height:5%;
	border:solid 2px #f00;
	font-size:22px;
	color:#333;
	/*background-color:#ccf;*/
    border-radius: 5px;        /* CSS3草案 */
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 5px;   /* Firefox用 */

	padding-top:3px;
	border: 0 none;
	letter-spacing: 1px;
	text-transform: uppercase;
	-moz-box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 1px rgba(255,255,255,1);
	-webkit-box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 1px rgba(255,255,255,1);
	box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 1px rgba(255,255,255,1);



	cursor: pointer;
    z-index:150;
}




#egnp-input-mode-off, #egnp-input-mode-on {
	position: absolute;
	top:2.5%;
	height:3.5%;
	padding-top:0.4%;
	font-size:12px;
    border-radius: 5px;        /* CSS3草案 */
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 5px;   /* Firefox用 */
	cursor: pointer;
    z-index:150;
	left:30%;
	width:25%;
}
#egnp-input-mode-off {/* 同番連続入力ボタン */
	border:solid 2px #aaa;
	color:#fff;
	background-color:#aaa;
}
#egnp-input-mode-on {/* 同番連続入力ボタン */
	border:solid 2px #f00;
	color:#fff;
	background-color:#f00;
}
#egnp-input-mode-off:hover {
	color:#f00;;
}
#egnp-input-mode-on:hover {
	color:#ff0;;
}





#c-i1,#c-i2,#c-i3,#c-i4,#c-i5,#c-i6,#c-i7,#c-i8,#c-i9 {/*},#c-ia {*/
	top: 7%;
	background-color:#00f;
	color:#fff;
}

#c-m1,#c-m2,#c-m3,#c-m4,#c-m5,#c-m6,#c-m7,#c-m8,#c-m9,#c-ma {
	top: 87%;
	background-color:#99c;
	color:#fff;
}

#c-i1:hover,#c-i2:hover,#c-i3:hover,#c-i4:hover,#c-i5:hover,#c-i6:hover,#c-i7:hover,#c-i8:hover,#c-i9:hover,
#c-m1:hover,#c-m2:hover,#c-m3:hover,#c-m4:hover,#c-m5:hover,#c-m6:hover,#c-m7:hover,#c-m8:hover,#c-m9:hover
	{
	color:#f00;
	opacity: 0.8;
	box-shadow: none;
	-webkit-transition-duration: 200ms;
	transition-duration: 200ms;
	}

.yi1 {top:8%;}
.xi1 {left:2%;}
.xi2 {left:12%;}
.xi3 {left:22%;}
.xi4 {left:32%;}
.xi5 {left:42%;}
.xi6 {left:52%;}
.xi7 {left:62%;}
.xi8 {left:72%;}
.xi9 {left:82%;}
/*.xia {left:66%;}*/
/*
.yi1 {top:8%;}
.xi1 {left:2%;}
.xi2 {left:9.7%;}
.xi3 {left:17.1%;}
.xi4 {left:24.5%;}
.xi5 {left:31.9%;}
.xi6 {left:39.3%;}
.xi7 {left:46.7%;}
.xi8 {left:54.1%;}
.xi9 {left:61.5%;}
.xia {left:68.9%;}
*/

.ym1 {top:84%;}

/*
#c-i-undo,#c-m-undo {
	position: absolute;
	width:10%;
	height:4%;
	border:solid 2px #0a0;
	font-size:16px;
	color:#333;
	background-color:#ffc;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	cursor: pointer;
    z-index:150;
}
#c-i-undo {
	top:8%;
	left:73%;
}
#c-m-undo {
	top:84%;
	left:73%;
}
*/

#c-i-check,#c-save,#c-load,#c-ia,#c-i-undo {
	position: absolute;
	top:94%;
	height:5.5%;
	padding-top:1%;
	font-size:15px;
    border-radius: 5px;        /* CSS3草案 */
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 5px;   /* Firefox用 */
	cursor: pointer;
    z-index:150;
}
#c-ia {/* DELボタン */
	left:2%;
	width:13%;
	color:#fff;
	border:solid 2px #933;
	/*background-color:#966;*/
	background-color:#f00;
}
#c-i-undo {/* 戻るボタン */
	left:17%;
	width:13%;
	color:#333;
	border:solid 2px #933;
	/*background-color:#966;*/
	background-color:#ff0;
}

#c-i-check {
	left:38%;
	width:18%;
	color:#fff;
	border:solid 2px #933;
	background-color:#966;
}
#c-save {
	left:60%;
	width:16%;
	color:#333;
	border:solid 2px #393;
	background-color:#6f6;
}
#c-load {
	left:77%;
	width:16%;
	color:#fff;
	border:solid 2px #33f;
	background-color:#66f;
}

#c-play-time {
	position: absolute;
	top:83%;
	left:33%;
	width:25%;
	font-size:16px;
	color:#33f;
    z-index:170;
}

#c1-1,#c2-1,#c3-1,#c4-1,#c5-1,#c6-1,#c7-1,#c8-1,#c9-1,
#c1-2,#c2-2,#c3-2,#c4-2,#c5-2,#c6-2,#c7-2,#c8-2,#c9-2,
#c1-3,#c2-3,#c3-3,#c4-3,#c5-3,#c6-3,#c7-3,#c8-3,#c9-3,
#c1-4,#c2-4,#c3-4,#c4-4,#c5-4,#c6-4,#c7-4,#c8-4,#c9-4,
#c1-5,#c2-5,#c3-5,#c4-5,#c5-5,#c6-5,#c7-5,#c8-5,#c9-5,
#c1-6,#c2-6,#c3-6,#c4-6,#c5-6,#c6-6,#c7-6,#c8-6,#c9-6,
#c1-7,#c2-7,#c3-7,#c4-7,#c5-7,#c6-7,#c7-7,#c8-7,#c9-7,
#c1-8,#c2-8,#c3-8,#c4-8,#c5-8,#c6-8,#c7-8,#c8-8,#c9-8,
#c1-9,#c2-9,#c3-9,#c4-9,#c5-9,#c6-9,#c7-9,#c8-9,#c9-9 {
	position: absolute;
	/*width:8%;
	height:7%;*/
	width:55px;
	height:55px;
	border:solid 1px #333;
	/*font-size:24px;*/
	font-size:34px;
	color:#333;
}

.eg-np-input {
	color:#0a0!important;
	cursor: pointer;
}

.eg-np-memo {
	font-size:15px;
	color:#999;
}

.eg-np-memo-bold {
	color:#c66;
	font-weight:bold;
}

.eg-np-memo1 {
	position: absolute;
	top: 0%;
	left: 10%;
}

.eg-np-memo2 {
	position: absolute;
	top: 0%;
	left: 40%;
}

.eg-np-memo3 {
	position: absolute;
	top: 0%;
	left: 70%;
}

.eg-np-memo4 {
	position: absolute;
	top: 31%;
	left: 10%;
}

.eg-np-memo5 {
	position: absolute;
	top: 31%;
	left: 40%;
}

.eg-np-memo6 {
	position: absolute;
	top: 31%;
	left: 70%;
}

.eg-np-memo7 {
	position: absolute;
	top: 62%;
	left: 10%;
}

.eg-np-memo8 {
	position: absolute;
	top: 62%;
	left: 40%;
}

.eg-np-memo9 {
	position: absolute;
	top: 62%;
	left: 70%;
}

/*
#c-block1,#c-block2,#c-block3,#c-block4,#c-block5,#c-block6,#c-block7,#c-block8,#c-block9 {
	position: absolute;
	width:165px;
	height:165px;
	border:solid 4px #333;
}

#c-block1 {top:98px;left:10px;}
#c-block2 {top:261px;left:10px;}
#c-block3 {top:423px;left:10px;}
#c-block4 {top:98px;left:173px;}
#c-block5 {top:261px;left:173px;}
#c-block6 {top:423px;left:173px;}
#c-block7 {top:98px;left:335px;}
#c-block8 {top:261px;left:335px;}
#c-block9 {top:423px;left:335px;}
*/

#c1-1,#c2-1,#c3-1,#c4-1,#c5-1,#c6-1,#c7-1,#c8-1,#c9-1 {
	border-top:solid 4px #333;
}
#c1-4,#c2-4,#c3-4,#c4-4,#c5-4,#c6-4,#c7-4,#c8-4,#c9-4 {
	border-top:solid 4px #333;
}
#c1-7,#c2-7,#c3-7,#c4-7,#c5-7,#c6-7,#c7-7,#c8-7,#c9-7 {
	border-top:solid 4px #333;
}
#c1-9,#c2-9,#c3-9,#c4-9,#c5-9,#c6-9,#c7-9,#c8-9,#c9-9 {
	border-bottom:solid 4px #333;
}
#c1-1,#c1-2,#c1-3,#c1-4,#c1-5,#c1-6,#c1-7,#c1-8,#c1-9 {
	border-left:solid 4px #333;
}
#c4-1,#c4-2,#c4-3,#c4-4,#c4-5,#c4-6,#c4-7,#c4-8,#c4-9 {
	border-left:solid 4px #333;
}
#c7-1,#c7-2,#c7-3,#c7-4,#c7-5,#c7-6,#c7-7,#c7-8,#c7-9 {
	border-left:solid 4px #333;
}
#c9-1,#c9-2,#c9-3,#c9-4,#c9-5,#c9-6,#c9-7,#c9-8,#c9-9 {
	border-right:solid 4px #333;
}

.x1 {left:12px;}
.x2 {left:66px;}
.x3 {left:120px;}
.x4 {left:174px;}
.x5 {left:228px;}
.x6 {left:282px;}
.x7 {left:336px;}
.x8 {left:390px;}
.x9 {left:444px;}

.y1 {top:100px;}
.y2 {top:154px;}
.y3 {top:208px;}
.y4 {top:262px;}
.y5 {top:316px;}
.y6 {top:370px;}
.y7 {top:424px;}
.y8 {top:478px;}
.y9 {top:532px;}
/*
.y1 {top:15%;}
.y2 {top:24%;}
.y3 {top:33%;}
.y4 {top:42%;}
.y5 {top:51%;}
.y6 {top:60%;}
.y7 {top:69%;}
.y8 {top:78%;}
.y9 {top:87%;}
*/

/****************************

 clear

 ****************************/
 #eg-clear-caption {
 	position: absolute;
 	top: 1%;
	left: 30%;
	font-size:36px;
	color: #f00;
 }
 #eg-clear-ad1 {
 	position: absolute;
 	top: 10%;
	left: 20%;
	color: #f00;
 }
 #eg-clear-time {
 	position: absolute;
 	top: 50%;
	left: 25%;
	font-size:24px;
	color: #333;
 }
 #eg-clear-average {
 	position: absolute;
 	top: 65%;
	left: 29%;
	font-size:24px;
	color: #333;
 }
 #eg-inpname {
 	position: absolute;
 	top: 56%;
	left: 25%;
	width:30%;
 	height:5.5%;
	padding:1%;
	font-size:15px;
	border:solid 2px #666;
    border-radius: 5px;        /* CSS3草案 */
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 5px;   /* Firefox用 */
	cursor: pointer;
    z-index:150;
 }
  #eg-inpname-btn {
 	position: absolute;
 	top: 56%;
	left: 56%;
	width:20%;
	height:5.5%;
	padding-top:1%;
	font-size:15px;
    border-radius: 5px;        /* CSS3草案 */
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 5px;   /* Firefox用 */
	cursor: pointer;
    z-index:150;
	color:#333;
	border:solid 2px #393;
	background-color:#6f6;

 }
 #eg-inpname-text {
 	position: absolute;
 	top: 57%;
	left: 31%;
	font-size:24px;
	color: #333;
 }
 #eg-clear-name-caption {
 	position: absolute;
  	top: 62%;
	left: 15%;
	font-size:14px;
	color: #333;
 }
 #eg-clear-ad2 {
 	position: absolute;
 	top: 72%;
	left: 25%;
	color: #f00;
 }
 #eg-next-geme {
 	position: absolute;
 	top: 85%;
	left: 30%;
	font-size:18px;
	color: #f00;
 }
 #eg-next-level {
 	position: absolute;
 	top: 91%;
	left: 30%;
	font-size:18px;
	color: #f00;
 }

/****************************

 E画面

 ****************************/

#eg-ed-area {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	background-color:#FFF;
	z-index: 3000;
}


/****************************

 アイテム詳細画面（メイン画面の中）（eg-item-detail）

 ****************************/

#eg-item-detail-area {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	/*
	opacity: 0.9;
	background-color:#333;
	*/
	background: rgba(51,51,51, 0.9);
	z-index: 500;
}

#eg-item-detail-box {
	position: absolute;
	top: 6%;
	left: 24%;
	width:250px;
	height:250px;
}

#eg-item-detail-img {
	width: 100%;
	height: 100%;
}
#eg-item-detail-name {
	position: absolute;
	top: 76%;
	left: 24%;
	width:250px;
	height:60px;
	padding-top:2%;
	font-size:2em;
	color:#fff;
	/*opacity: 1;*/
	background-color:#000;
}

#eg-item-detail-close-btn {
	position: absolute;
	top: 3%;
	left: 88%;
	width: 9.5%!important;
	height: 12%!important;
	font-size: 2em!important;
}


/****************************

 アイテム欄（eg-item-window）

 ****************************/
#eg-demo-item {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color:#333;
	opacity: 0.8;
	z-index: 2000;
}
#eg-item-area-left {
	position: relative;
	float: left;
	width: 24%;
	height: 100%;
	background-color:#000;
	z-index: 400;
}
#eg-select-caption {
	position: absolute;
	top: 4%;
	left: 4%;
	width: 100px;
	height: 20%;
	border: 3px solid #f93;
	background-color: #f93;
	color: #fff;
	font-size:1.4em;
	font-weight:bold;
}

#eg-select-item {
	position: absolute;
	top: 24%;
	left: 4%;
	width: 100px;
	height: 100px;
	border: 3px solid #f93;
}
#eg-select-item-img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
}

.eg-item-img {
	cursor: pointer;
}

.eg-item-used {
	opacity: 0.25;
}

.eg-item-num {
	position: absolute;
	right:0;
	bottom:0;
	text-align:right;
	width:35%;
	height:22%;
	margin:0;
	padding:2px;
	font-size:12px;
	color:#333;
	background: rgba(255,255,255, 0.8);
}

#eg-item-area-right {
	position: relative;
	float: left;
	width: 76%;
	height: 100%;
	background-color:#000;
	z-index: 400;
}
#eg-item-area-right ul {
	position: absolute;
	margin: 0;
	padding: 3px;
	width: 100%;
	height: 100%;
	list-style:none;
}
#eg-item-area-right ul li {
	position: relative;
	float: left;
	padding: 0;
	width: 65px;
	height: 65px;
}
.eg-item {
	margin: 2px;
	border: 1px solid #fff;
}
.eg-item-selected {
	margin: 1px;
	border: 2px solid #f00;
}

.eg-item-sub {
	margin: 1px;
	border: 2px solid #6c6;
}

#eg-item-area-right ul li img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/****************************

 メッセージ欄（eg-message-window）

 ****************************/
#eg-demo-message {
	position: absolute;
	top:0;
	left:84%;
	width: 16%;
	height: 100%;
	background-color:#333;
	opacity: 0.8;
	z-index: 2000;
}
#eg-message-area {
	position: absolute;
	top:0;
	left:0;
	width:84%;
	height:100%;
	padding:2%;
	text-align:left;
	background-color:#ddd;
	font-size: 17px;
}

#eg-menu-btn {
	position: absolute;
	top:0;
	right:0;
	width:16%;
	height:100%;
	padding: 3% 2%;
	text-align:center;
	background-color:#000;
	font-size: 1.5em;
	cursor: pointer;
	color: #fff;
}

#eg-menu-btn i {
	font-size: 2em;
}


/****************************

 メニュー画面（eg-menu-window）

 ****************************/
.eg-btn {
	width: 70%;
	height: 12%;
	border: 3px solid #f66;
	padding-top:1%;
	background-color: #000;
	color: #fff;
	left: 15%;
	cursor: pointer;
}

.eg-btn:hover {
	border-color: #f00;
	background-color: #999;
}

#eg-menu {
	position: absolute;
	top: 10%;
	width:100%;
	text-align:center;
	color: #fff;
}

#eg-save-btn {
	position: absolute;
	top: 30%;
}

#eg-sound-btn {
	position: absolute;
	top: 50%;
}

#eg-backtitle-btn {
	position: absolute;
	top: 70%;
}

#eg-menu-close-btn {
	position: absolute;
	top: 85%;
	left: 45%;
}


/****************************

 ダイアログ的画面（eg-dialog-window）

 ****************************/

#eg-dialog-area {
	position: absolute;
	top: 40%;
	left: 28%;
	color: #333;
}

#eg-dialog-close-btn {
	position: absolute;
	top: 60%;
	left: 45%;
}



/****************************

 タイトルへ戻る確認画面（eg-backtitle-confirm-window）
 言語選択画面（eg-language-window）

 ****************************/

.eg-language-btn,
.eg-confirm-btn {
	width: 22%;
	height: 10%;
	padding-top:2%;
	border: 3px solid #f66;
	background-color: #000;
	color: #fff;
	left: 15%;
	cursor: pointer;
}

.eg-language-btn:hover {
	border-color: #f00;
	background-color: #fc6;
}

.eg-confirm-btn:hover {
	border-color: #f00;
	background-color: #999;
}

.eg-language-btn {
	width: 45%!important;
	font-size: 1.2em;
}

.eg-confirm-btn:hover {
	border-color: #f00;
	background-color: #fc6;
}

#eg-backtitle-confirm {
	position: absolute;
	top: 35%;
	left: 20%;
	width:60%;
	height:40%;
	border: 3px solid #f66;
	background: rgba(255,255,255, 0.9);
}

#eg-language-jp,
#eg-sound-jp,
#eg-backtitle-confirm-jp {
	position: absolute;
	top: 40%;
	width:100%;
	text-align:center;
	color: #333;
}

#eg-sound-jp,
#eg-language-jp {
	top: 15%;
}

#eg-language-en,
#eg-sound-en,
#eg-backtitle-confirm-en {
	position: absolute;
	top: 45%;
	width:100%;
	text-align:center;
	color: #fff;
}

#eg-sound-en,
#eg-language-en {
	top: 20%;
}

#eg-language-btn-jp {
	position: absolute;
	top: 35%;
	left: 3%;
	padding-top:2%;
	height:20%!important;
}

#eg-language-btn-en {
	position: absolute;
	top: 35%;
	left: 53%;
	padding-top:2%;
	height:20%!important;
}

#eg-backtitle-confirm-yes {
	position: absolute;
	top: 50%;
	left: 25%;
}

#eg-backtitle-confirm-no {
	position: absolute;
	top: 50%;
	left: 52%;
}

#eg-language-close-btn,
#eg-sound-close-btn,
#eg-backtitle-confirm-close-btn {
	position: absolute;
	top: 65%;
	left: 45%;
}

#eg-bgm-caption,
#eg-sound-caption {
	position: absolute;
	top:30%;
	left:7%;
	font-size:0.8em;
	color: #fff;
}

.eg-nobgm-caption {
	font-size:0.6em!important;
}

#eg-sound-caption {
	top:50%;
}

.eg-bgm-btn,
.eg-sound-btn {
	position: absolute;
	top: 58%;
	width: 5%;
	height: 14%;
	padding-top:3%;
	border: 1px solid #99f;
	background-color: #630;
	font-size: 0.5em;
	cursor: pointer;
}
.eg-bgm-btn {
	top: 35%;
}
#eg-bgm-btn-off,
#eg-sound-btn-off {
	left: 7%;
	width:10%;
}
#eg-bgm-btn-1,
#eg-sound-btn-1 {
	left: 19%;
}
#eg-bgm-btn-2,
#eg-sound-btn-2 {
	left: 26%;
}
#eg-bgm-btn-3,
#eg-sound-btn-3 {
	left: 33%;
}
#eg-bgm-btn-4,
#eg-sound-btn-4 {
	left: 40%;
}
#eg-bgm-btn-5,
#eg-sound-btn-5 {
	left: 47%;
}
#eg-bgm-btn-6,
#eg-sound-btn-6 {
	left: 54%;
}
#eg-bgm-btn-7,
#eg-sound-btn-7 {
	left: 61%;
}
#eg-bgm-btn-8,
#eg-sound-btn-8 {
	left: 68%;
}

#eg-bgm-btn-9,
#eg-sound-btn-9 {
	left: 75%;
}
#eg-bgm-btn-max,
#eg-sound-btn-max {
	left: 82%;
	width:10%;
}
.eg-bgm-btn:hover,
.eg-sound-btn:hover {
	background-color: #fc6;
}

.eg-nobgm-caption {
	position: absolute;
	top:30%;
	left:7%;
	font-size:0.6em;
	color: #fff;
}

/****************************

 タイトル画面（eg-title-window）

 ****************************/

#eg-title-img {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:auto;
}

#eg-title {
	position: absolute;
	top: 15%;
	left: 0;
	width: 100%;
	height: 23%;
	background: rgba(153,153,153, 0.7);
}

#eg-title-jp {
	position: absolute;
	top: 10%;
	width:100%;
	text-align:center;
	font-size:5.5em;
	font-weight:bold;
	color: #000;
}

#eg-sub-title-jp {
	position: absolute;
	top: 55%;
	width:100%;
	text-align:right;
	padding-right:5%;
	font-size:2.0em;
	font-weight:bold;
	color: #000;
}

.eg-title-btn {
	width: 100%;
	height: 11%;
	padding-top:1%;
 	text-align:center;
	border-top,border-bottom: 3px solid #f66;
	/*background-color: #4a4;*/
	background: rgba(68,170,68, 0.7);
	color: #fff;
	left: 0;
	font-size:2.3em;
	cursor: pointer;
}

.eg-title-btn:hover {
    text-shadow:0px 0px 3px #ff6;
    background-color: #4a4;
}


#eg-newgame-btn {
	position: absolute;
	top: 63%;
}

#eg-loadgame-btn {
	position: absolute;
	top: 76%;
}

.eg-title-setting-btn {
	position: absolute;
	top: 89%;
	width:30%;
	height:9%;
	padding-top:1%;
 	text-align:center;
	background-color: #ff8c00;
	font-size:1.8em;
	color: #fff;
	z-index:1100;
	cursor: pointer;
}

#eg-title-sound {
	left:60%;

}

#eg-title-language {
	left:10%;
}

.eg-title-setting-btn:hover {
    text-shadow:0px 0px 3px #ff6;
    background-color: #ffd700;
}


/****** media query（PC画面小・タブレット） ******/
/*** @media screen and (max-width: 1280px)
@media screen and (max-width: 700px)
{

	/******* 数独 ********
	#c1-1,#c2-1,#c3-1,#c4-1,#c5-1,#c6-1,#c7-1,#c8-1,#c9-1,
	#c1-2,#c2-2,#c3-2,#c4-2,#c5-2,#c6-2,#c7-2,#c8-2,#c9-2,
	#c1-3,#c2-3,#c3-3,#c4-3,#c5-3,#c6-3,#c7-3,#c8-3,#c9-3,
	#c1-4,#c2-4,#c3-4,#c4-4,#c5-4,#c6-4,#c7-4,#c8-4,#c9-4,
	#c1-5,#c2-5,#c3-5,#c4-5,#c5-5,#c6-5,#c7-5,#c8-5,#c9-5,
	#c1-6,#c2-6,#c3-6,#c4-6,#c5-6,#c6-6,#c7-6,#c8-6,#c9-6,
	#c1-7,#c2-7,#c3-7,#c4-7,#c5-7,#c6-7,#c7-7,#c8-7,#c9-7,
	#c1-8,#c2-8,#c3-8,#c4-8,#c5-8,#c6-8,#c7-8,#c8-8,#c9-8,
	#c1-9,#c2-9,#c3-9,#c4-9,#c5-9,#c6-9,#c7-9,#c8-9,#c9-9 {
		width:40px;
		height:40px;
		font-size:28px;
	}

	.x1 {left:12px;}
	.x2 {left:51px;}
	.x3 {left:90px;}
	.x4 {left:129px;}
	.x5 {left:168px;}
	.x6 {left:207px;}
	.x7 {left:246px;}
	.x8 {left:285px;}
	.x9 {left:324px;}

	.y1 {top:100px;}
	.y2 {top:139px;}
	.y3 {top:178px;}
	.y4 {top:217px;}
	.y5 {top:256px;}
	.y6 {top:295px;}
	.y7 {top:334px;}
	.y8 {top:373px;}
	.y9 {top:412px;}

	.eg-np-memo {
			font-size:11px;
		}

	#c-m-area {
		top: 65%;
	}

	#c-m-caption {
		top: 66%;
	}


	#c-m1,#c-m2,#c-m3,#c-m4,#c-m5,#c-m6,#c-m7,#c-m8,#c-m9 {
		top: 70%;
	}

	#c-i-check,#c-save,#c-load,#c-ia,#c-i-undo {
		top:77%;
	}
}
***/

/****** media query（スマホ画面） ******/
/*** @media screen and (max-width: 500px) ***/
@media screen and (max-width: 600px)
{
	#escpgm {
		/*width:336px;
		height:315px;*/
		width:360px;
		height:480px;
	}

	/******** 共通 ********/
	.eg-close-btn {
		border: 3px solid #f66;
		-moz-border-radius: 22px;
		-webkit-border-radius: 22px;
	  	border-radius: 22px;
	  	font-size: 1.2em;
	}

	/******** メイン画面 ********/
	.eg-move-btn {
		font-size:34px;
	}

	.answer_caption {
		font-size:14px;
	}

	.answer {
		font-size:13px;
		color:#333;
		ime-mode:active;
	}

	#egnp-input-mode-off, #egnp-input-mode-on {
		padding-top:0.1%;
		font-size:9.5px;
	}

	/******* 数独 ********/
	#c1-1,#c2-1,#c3-1,#c4-1,#c5-1,#c6-1,#c7-1,#c8-1,#c9-1,
	#c1-2,#c2-2,#c3-2,#c4-2,#c5-2,#c6-2,#c7-2,#c8-2,#c9-2,
	#c1-3,#c2-3,#c3-3,#c4-3,#c5-3,#c6-3,#c7-3,#c8-3,#c9-3,
	#c1-4,#c2-4,#c3-4,#c4-4,#c5-4,#c6-4,#c7-4,#c8-4,#c9-4,
	#c1-5,#c2-5,#c3-5,#c4-5,#c5-5,#c6-5,#c7-5,#c8-5,#c9-5,
	#c1-6,#c2-6,#c3-6,#c4-6,#c5-6,#c6-6,#c7-6,#c8-6,#c9-6,
	#c1-7,#c2-7,#c3-7,#c4-7,#c5-7,#c6-7,#c7-7,#c8-7,#c9-7,
	#c1-8,#c2-8,#c3-8,#c4-8,#c5-8,#c6-8,#c7-8,#c8-8,#c9-8,
	#c1-9,#c2-9,#c3-9,#c4-9,#c5-9,#c6-9,#c7-9,#c8-9,#c9-9 {
		width:38px;
		height:37px;
		font-size:24px;
	}

	.x1 {left:2px;}
	.x2 {left:39px;}
	.x3 {left:76px;}
	.x4 {left:113px;}
	.x5 {left:150px;}
	.x6 {left:187px;}
	.x7 {left:224px;}
	.x8 {left:261px;}
	.x9 {left:298px;}

	.y1 {top:66px;}
	.y2 {top:102px;}
	.y3 {top:138px;}
	.y4 {top:174px;}
	.y5 {top:210px;}
	.y6 {top:246px;}
	.y7 {top:280px;}
	.y8 {top:316px;}
	.y9 {top:352px;}

	#c1-1,#c2-1,#c3-1,#c4-1,#c5-1,#c6-1,#c7-1,#c8-1,#c9-1 {
		border-top:solid 3px #333;
	}
	#c1-4,#c2-4,#c3-4,#c4-4,#c5-4,#c6-4,#c7-4,#c8-4,#c9-4 {
		border-top:solid 3px #333;
	}
	#c1-7,#c2-7,#c3-7,#c4-7,#c5-7,#c6-7,#c7-7,#c8-7,#c9-7 {
		border-top:solid 3px #333;
	}
	#c1-9,#c2-9,#c3-9,#c4-9,#c5-9,#c6-9,#c7-9,#c8-9,#c9-9 {
		border-bottom:solid 3px #333;
	}
	#c1-1,#c1-2,#c1-3,#c1-4,#c1-5,#c1-6,#c1-7,#c1-8,#c1-9 {
		border-left:solid 3px #333;
	}
	#c4-1,#c4-2,#c4-3,#c4-4,#c4-5,#c4-6,#c4-7,#c4-8,#c4-9 {
		border-left:solid 3px #333;
	}
	#c7-1,#c7-2,#c7-3,#c7-4,#c7-5,#c7-6,#c7-7,#c7-8,#c7-9 {
		border-left:solid 3px #333;
	}
	#c9-1,#c9-2,#c9-3,#c9-4,#c9-5,#c9-6,#c9-7,#c9-8,#c9-9 {
		border-right:solid 3px #333;
	}
	#c-i1,#c-i2,#c-i3,#c-i4,#c-i5,#c-i6,#c-i7,#c-i8,#c-i9,
	#c-m1,#c-m2,#c-m3,#c-m4,#c-m5,#c-m6,#c-m7,#c-m8,#c-m9,#c-ma {
		padding-top:0;
		font-size:18px;
	}

	#c-m-area {
		top: 82%;
	}

	#c-m-caption {
		top: 83%;
	}


	#c-m1,#c-m2,#c-m3,#c-m4,#c-m5,#c-m6,#c-m7,#c-m8,#c-m9 {
		top: 87%;
	}

	#c-i-check,#c-save,#c-load,#c-ia,#c-i-undo {
		top:94%;
	}

	#c-i-undo,#c-m-undo {
		font-size:11px;
	}
	#c-ia,#c-i-check,#c-save,#c-load {
		font-size:10.5px;
	}
	#c-play-time {
		font-size:10.5px;
	}
	#c-i-caption,#c-m-caption,#complate_count_caption,#complate_count,#eg-timer {
		font-size:11px;
	}
	#c-i-hide {
		font-size:20px;
	}

	.eg-np-memo {
		font-size:10px;
	}


	/******** clear ********/
	#eg-clear-caption {
		font-size:21px;
	 }
	 #eg-clear-time {
		font-size:16px;
	 }

	 #eg-clear-average {
		font-size:16px;
	 }
	 #eg-inpname {
		font-size:12px;
		border:solid 1px #666;
	 }
	  #eg-inpname-btn {
		font-size:11px;
		border:solid 1px #393;
	 }
	 #eg-inpname-text {
		font-size:16px;
	 }
	 #eg-clear-name-caption {
		font-size:10px;
	}
	 #eg-next-geme {
		font-size:13px;
	 }
	 #eg-next-level {
		font-size:13px;
	 }

	/******** アイテム詳細画面 ********/
	#eg-item-detail-box {
		width:175px;
		height:175px;
	}

	#eg-item-detail-close-btn {
		font-size: 1.4em!important;
	}

	#eg-item-detail-name {
		top: 76%;
		left: 24%;
		width:175px;
		height:42px;
		font-size:1.4em;
		color:#fff;
		background-color:#000;
	}

	/******** アイテムウインドウ ********/
	#eg-select-caption {
		position: absolute;
		top: 4%;
		left: 4%;
		width: 70px;
		height: 16%;
		border: 2px solid #f93;
		background-color: #f93;
		color: #fff;
		font-size:1em;
		font-weight:bold;
	}

	#eg-select-item {
		width: 70px;
		height: 70px;
		border: 2px solid #f93;
	}

	#eg-item-area-right ul li {
		width: 44px;
		height: 44px;
	}
	.eg-item {
		margin: 2px;
		border: 1px solid #fff;
	}
	.eg-item-num {
		width:37%;
		height:24%;
		padding:1px;
		font-size:9px;
	}
	.eg-item-selected {
		margin: 1px;
		border: 2px solid #f00;
	}

	.eg-item-sub {
		margin: 1px;
		border: 2px solid #6c6;
	}

	#eg-item-area-right ul li.selected {
		border: 1px solid #f00;
	}

	/******** メッセージウインドウ ********/
	#eg-message-area {
		font-size: 12px;
	}

	/******** メニュー画面 ********/
	.eg-filter-window {
	 	font-size:20px;
	}

	.eg-filter-window-caption {
	 	font-size:2em;
	}

	#eg-menu-btn {
		font-size: 1.2em;
	}

	#eg-menu-btn i {
		font-size: 1.6em;
	}

	.eg-btn {
		border: 2px solid #f66;
	}


	/******** タイトル画面 ********/
	#eg-title-jp {
		font-size:3.8em;
	}
	#eg-sub-title-jp {
		font-size:1.4em;
	}
	.eg-title-btn {
		font-size:1.6em;
	}
	.eg-title-setting-btn {
		font-size:1.3em;
	}
}

/****** media query（かんたんスマホ画面） ******/
@media screen and (max-width: 320px)
{
	#escpgm {
		/*width:336px;
		height:315px;*/
		width:280px;
		height:480px;
	}

	/******** 共通 ********/
	.eg-close-btn {
		border: 3px solid #f66;
		-moz-border-radius: 22px;
		-webkit-border-radius: 22px;
	  	border-radius: 22px;
	  	font-size: 1.2em;
	}

	/******** メイン画面 ********/
	#egnp-input-mode-off, #egnp-input-mode-on {
		padding-top:0.1%;
		font-size:9.5px;
	}

	/******* 数独 ********/
	#c1-1,#c2-1,#c3-1,#c4-1,#c5-1,#c6-1,#c7-1,#c8-1,#c9-1,
	#c1-2,#c2-2,#c3-2,#c4-2,#c5-2,#c6-2,#c7-2,#c8-2,#c9-2,
	#c1-3,#c2-3,#c3-3,#c4-3,#c5-3,#c6-3,#c7-3,#c8-3,#c9-3,
	#c1-4,#c2-4,#c3-4,#c4-4,#c5-4,#c6-4,#c7-4,#c8-4,#c9-4,
	#c1-5,#c2-5,#c3-5,#c4-5,#c5-5,#c6-5,#c7-5,#c8-5,#c9-5,
	#c1-6,#c2-6,#c3-6,#c4-6,#c5-6,#c6-6,#c7-6,#c8-6,#c9-6,
	#c1-7,#c2-7,#c3-7,#c4-7,#c5-7,#c6-7,#c7-7,#c8-7,#c9-7,
	#c1-8,#c2-8,#c3-8,#c4-8,#c5-8,#c6-8,#c7-8,#c8-8,#c9-8,
	#c1-9,#c2-9,#c3-9,#c4-9,#c5-9,#c6-9,#c7-9,#c8-9,#c9-9 {
		width:28px;
		height:27px;
		font-size:18px;
	}

	.x1 {left:2px;}
	.x2 {left:29px;}
	.x3 {left:56px;}
	.x4 {left:83px;}
	.x5 {left:110px;}
	.x6 {left:137px;}
	.x7 {left:164px;}
	.x8 {left:191px;}
	.x9 {left:218px;}

	.y1 {top:70px;}
	.y2 {top:96px;}
	.y3 {top:122px;}
	.y4 {top:148px;}
	.y5 {top:174px;}
	.y6 {top:200px;}
	.y7 {top:224px;}
	.y8 {top:250px;}
	.y9 {top:276px;}

	#c1-1,#c2-1,#c3-1,#c4-1,#c5-1,#c6-1,#c7-1,#c8-1,#c9-1 {
		border-top:solid 3px #333;
	}
	#c1-4,#c2-4,#c3-4,#c4-4,#c5-4,#c6-4,#c7-4,#c8-4,#c9-4 {
		border-top:solid 3px #333;
	}
	#c1-7,#c2-7,#c3-7,#c4-7,#c5-7,#c6-7,#c7-7,#c8-7,#c9-7 {
		border-top:solid 3px #333;
	}
	#c1-9,#c2-9,#c3-9,#c4-9,#c5-9,#c6-9,#c7-9,#c8-9,#c9-9 {
		border-bottom:solid 3px #333;
	}
	#c1-1,#c1-2,#c1-3,#c1-4,#c1-5,#c1-6,#c1-7,#c1-8,#c1-9 {
		border-left:solid 3px #333;
	}
	#c4-1,#c4-2,#c4-3,#c4-4,#c4-5,#c4-6,#c4-7,#c4-8,#c4-9 {
		border-left:solid 3px #333;
	}
	#c7-1,#c7-2,#c7-3,#c7-4,#c7-5,#c7-6,#c7-7,#c7-8,#c7-9 {
		border-left:solid 3px #333;
	}
	#c9-1,#c9-2,#c9-3,#c9-4,#c9-5,#c9-6,#c9-7,#c9-8,#c9-9 {
		border-right:solid 3px #333;
	}
	#c-i1,#c-i2,#c-i3,#c-i4,#c-i5,#c-i6,#c-i7,#c-i8,#c-i9,
	#c-m1,#c-m2,#c-m3,#c-m4,#c-m5,#c-m6,#c-m7,#c-m8,#c-m9,#c-ma {
		padding-top:0;
		font-size:16px;
	}

	#c-m-area {
		top: 66%;
	}

	#c-m-caption {
		top: 67%;
	}


	#c-m1,#c-m2,#c-m3,#c-m4,#c-m5,#c-m6,#c-m7,#c-m8,#c-m9 {
		top: 71%;
	}

	#c-i-check,#c-save,#c-load,#c-ia,#c-i-undo {
		top:79%;
	}

	#c-i-undo,#c-m-undo {
		font-size:11px;
	}
	#c-ia,#c-i-check,#c-save,#c-load {
		font-size:10.5px;
	}
	#c-play-time {
		font-size:10.5px;
	}
	#c-i-caption,#c-m-caption,#complate_count_caption,#complate_count,#eg-timer {
		font-size:11px;
	}
	#c-i-hide {
		font-size:20px;
	}

	.eg-np-memo {
		font-size:10px;
	}


	/******** clear ********/
	#eg-clear-caption {
		font-size:21px;
	 }
	 #eg-clear-time {
		font-size:16px;
	 }

	 #eg-clear-average {
		font-size:16px;
	 }
	 #eg-inpname {
		font-size:12px;
		border:solid 1px #666;
	 }
	  #eg-inpname-btn {
		font-size:11px;
		border:solid 1px #393;
	 }
	 #eg-inpname-text {
		font-size:16px;
	 }
	 #eg-clear-name-caption {
		font-size:10px;
	}
	 #eg-next-geme {
		font-size:13px;
	 }
	 #eg-next-level {
		font-size:13px;
	 }

	.eg-btn {
		border: 2px solid #f66;
	}
	
	#egnp-input-mode-off, #egnp-input-mode-on {
		left:24%;
	}

	#complate_count_caption {
		left:52%;
	}
	#complate_count {
		left:64%;
	}
	#eg-timer {
		left:74%;
	}

	#eg-backtitle-confirm {
		top: 25%;
		left: 20%;
		width:60%;
		height:30%;
	}

	#eg-dialog-area {
		top: 30%;
		left: 28%;
		color: #333;
		font-size:14px;
	}

	#eg-dialog-close-btn {
		top: 50%;
		top: 42%;
	}

	#eg-inpname-btn {
		font-size:9px;
	}
	
	#eg-clear-average {
		top: 70%;
	}}

.red {color: #f00;}
.bold {font-weight: bold;}
.f_min {font-size: 0.7em;}
.f_small {font-size: 1em;}
.f_normal {font-size: 1.3em;}
.f_big {font-size: 1.6em;}
.f_max {font-size: 2em;}



/* =======================================================
   BUTTON SETTING
======================================================== */

.btn
	{
	padding: 4px 12px;
	display: inline-block;
	border: 0 none;
	letter-spacing: 1px;
	text-transform: uppercase;
	-moz-box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 1px rgba(255,255,255,1);
	-webkit-box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 1px rgba(255,255,255,1);
	box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 1px rgba(255,255,255,1);
	}

.btn:hover
	{
	opacity: 0.8;
	box-shadow: none;
	-webkit-transition-duration: 200ms;
	transition-duration: 200ms;
	}

.btn_large
	{
	padding: 8px 20px;
	font-size: 1.5rem;
	}

.btn_sm
	{
	padding: 4px 6px;
	font-size: 1.2rem;
	}

.btn_sx
	{
	padding: 4px 6px;
	font-size: 1.2rem;
	}

.btn_default
	{
	background-image: -webkit-linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(219,219,219,1.00) 50%,rgba(181,181,181,1.00) 100%);
	background-image: -moz-linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(219,219,219,1.00) 50%,rgba(181,181,181,1.00) 100%);
	background-image: -o-linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(219,219,219,1.00) 50%,rgba(181,181,181,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(219,219,219,1.00) 50%,rgba(181,181,181,1.00) 100%);
	border: 1px solid #949494;
	-moz-box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 2px rgba(255,255,255,1);
	-webkit-box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 2px rgba(255,255,255,1);
	box-shadow:0px 1px 3px rgba(000,000,000,0.5),inset 0px 0px 2px rgba(255,255,255,1);
	text-shadow:0px -1px 0px rgba(000,000,000,0.2),0px 1px 0px rgba(255,255,255,1);
	}

.btn_yellow,
.btn_green,
.btn_red,
.btn_blue
	{
	color: #fff;
	box-shadow:1px 1px 4px rgba(000,000,000,0.6),inset 0px 0px 2px rgba(255,255,255,0.7);
	text-shadow:0px -1px 0px rgba(000,000,000,0.4);
	}

.btn_yellow
	{
	background: #ff9900;
	border: 1px solid #ff9900;
	}

.btn_green
	{
	background: #3a8200;
	border: 1px solid #3a8200;
	}

.btn_red
	{
	background: #dc3939;
	border: 1px solid #dc3939;
	}

.btn_blue
	{
	background: #08a7dc;
	border: 1px solid #08a7dc;
	}

.btn_yellow:hover,
.btn_green:hover,
.btn_red:hover
	{ color: #fff; }


/*************************/







/*************************

 FontAwesome

 ************************/


@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.4.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}

.fa-bars:before {
  content: "\f0c9";
}
.fa-close:before {
  content: "\f00d";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-up:before {
  content: "\f028";
}
