/*------------------------------------------------------------------

[Layout Stylesheet]

	Project:		ERIONES
	Version:		2.0
	Last change:	07/11/2012
	Assigned to:	Yusaku


[contents]

	1. Global
	2. Navbar / .navbar
	3. Subnavbar / .subnavbar
	4. Main / .main
	5. Footer / .footer
	6. Widget / .widget
	7. Error / .error-container
	8. Miscellaneous

-------------------------------------------------------------------*/

@import "button.css";

/*------------------------------------------------------------------
[1. Global]
*/
html {
	/*background-color:#070707;*/
}
body {
	background-color: #fbfbfb;
	background-repeat: repeat;
	background-position: 0 0;
}
    

    
.dropdown .dropdown-menu {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.btn-icon-only {
	padding-right: 3px;
	padding-left: 3px;
}

.table td {
	vertical-align: middle;
}



.box-hight {
	height: 276px;	
	
	
}

.view-iidt {
	z-index: 1045;

}

/* icon buttons */
.icon-btn {
    height: 100px;
    width: 50px;
    margin: 5px 0px 5px 0px;
    border: 1px solid #ddd;
    padding: 16px 5px 5px 0px;
    font-size: 12px;
    background-color: #fafafa !important;
    background-image: -moz-linear-gradient(top, #fafafa, #efefef) !important;
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafafa), to(#efefef)) !important;
    background-image: -webkit-linear-gradient(top, #fafafa, #efefef) !important;
    background-image: -o-linear-gradient(top, #fafafa, #efefef) !important;
    background-image: linear-gradient(to bottom, #fafafa, #efefef) !important;
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffefefef', GradientType=0) !important;
    -webkit-box-shadow: 0 1px 0px rgba(255, 255, 255, .8) !important;
     -moz-box-shadow: 0 1px 0px rgba(255, 255, 255, .8) !important;
      box-shadow: 0 1px 0px rgba(255, 255, 255, .8) !important;
    -webkit-border-radius: 2px;
       -moz-border-radius: 2px;
            border-radius: 2px;
  display:block !important;
  color: #646464 !important;
  text-shadow: 0 1px 0px rgba(255, 255, 255, .6) !important;
  text-align: center;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  -ms-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}

.ie8 .icon-btn:hover {
  filter: none !important;
} 

.icon-btn:hover {
  text-decoration: none !important;
  border-color: #999 !important;
  color: #444 !important;
  text-shadow: 0 1px 0px rgba(255, 255, 255, 1) !important;
  -webkit-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  -ms-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, .55) !important;
  -moz-box-shadow: 0px 0px 3px rgba(0,0,0,.55) !important;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .55) !important;
}

.icon-btn:hover .badge {
  -webkit-transition: all 0.3s ease !important;
  -moz-transition: all 0.3s ease !important;
  -ms-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  -webkit-box-shadow: 0px 0px 4px rgba(0,0,0,.7) !important;
       -moz-box-shadow: 0px 0px 4px rgba(0,0,0,.7) !important;
            box-shadow: 0px 0px 4px rgba(0,0,0,.7) !important;
}

.icon-btn i {
  font-size: 25px;
  color: #777 !important;
}

.icon-btn div {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 12px !important;
}

.icon-btn .badge {
  position: absolute;
  font-size: 10px !important;
  top: -5px;
  right: -5px;
  height: 15px;
  color: white !important;
  text-shadow: 0 1px rgba(0, 0, 0, 0.55);
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 1px rgba(255, 255, 255, 0.3);
}


/* custom label and badges */

.badge-success {
  border-color: #5AAD34;
  background-color: #5fd02c;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #97e076), color-stop(100%, #5fd02c));
  background-image: -webkit-linear-gradient(top, #97e076, #5fd02c);
  background-image: -moz-linear-gradient(top, #97e076, #5fd02c);
  background-image: -ms-linear-gradient(top, #97e076, #5fd02c);
  background-image: -o-linear-gradient(top, #97e076, #5fd02c);
  background-image: linear-gradient(top, #97e076, #5fd02c);
}

.badge-warning {
  border-color: #F4A506;
  background-color: #fcb322;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffde9d), color-stop(100%, #fcb322));
  background-image: -webkit-linear-gradient(top, #ffde9d, #fcb322);
  background-image: -moz-linear-gradient(top, #ffde9d, #fcb322);
  background-image: -ms-linear-gradient(top, #ffde9d, #fcb322);
  background-image: -o-linear-gradient(top, #ffde9d, #fcb322);
  background-image: linear-gradient(top, #ffde9d, #fcb322);
}

.badge-important {
  border-color: #FA5833;
  background-color: #ed4e2a;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fbb2a1), color-stop(100%, #ed4e2a));
  background-image: -webkit-linear-gradient(top, #fbb2a1, #ed4e2a);
  background-image: -moz-linear-gradient(top, #fbb2a1, #ed4e2a);
  background-image: -ms-linear-gradient(top, #fbb2a1, #ed4e2a);
  background-image: -o-linear-gradient(top, #fbb2a1, #ed4e2a);
  background-image: linear-gradient(top, #fbb2a1, #ed4e2a);
}

.badge-info {

  background-color: #3f51b5;

}

/*------------------------------------------------------------------
[2. HEADER / .class / ]
*/


/* header set
----------------------------------------------------------- */

#header_in {
	width: 100%;
	background-color: #FFFFFF;
}
#header {
	height: 90px;
	width: 940px;
	margin: auto;
	background-image: url(../img/title_bg.gif);
}
#header #title {
	height: 84px;
	width: 350px;
	float: left;
	padding-top: 3px;
}
#header #title h1{
	margin: 0px;
	padding: 0px;
	visibility: hidden;
	font-size: 0px;
	line-height: 0px;
	text-decoration: none;
}


#header #right_a00 {
	height: 10px;
	width: 220px;
	margin-right: 10px;
	float: right;
	margin-top: 7px;
	margin-bottom: 3px;
}

#header #right_a01 {
	height: 50px;
	width: 230px;
	float: right;
	margin-top: 15px;
	clear: right;
}
#header #right_a01 p {
	margin: 0px;
	padding: 0px;
	font-size: 12px;
}
#header #right_a01 #textfield {
	font-size: 11px;
	line-height: 10px;
}

/* Twitter SET 2010.07.20
------------------------------------------------------------------*/
.twitter_up {
	float: right;
	margin-right: 10px;
	z-index: auto;
	margin-top: 53px;
	background-image: url(../img/header/tw_bg.png);
	padding: 3px;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.twitter_up img{
	padding: 0px;
	margin-top: 0px;
	margin-right: 2px;
	margin-bottom: 0px;
	margin-left: 2px;
}

/* news set 2010.07.25
-----------------------------------------------------------------*/
.eriones_news {
	z-index: auto;
	margin-top: 53px;
	background-image: url(../img/header/tw_bg.png);
	height: 20px;
	padding: 4px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	float: right;
	margin-right: 6px;
}
.eriones_news p {
	text-decoration: none;
	display: block;
}
.eriones_news a {
	color: #900;
	text-decoration: none;
}
.eriones_news a:hover {
	color: #F90;
	text-decoration: none;
}

.red_color {
	color: #F00;	
	
}
/* search set
----------------------------------------------------------- */

#header #right_a01 dl	{
	margin-bottom: 30px;
	z-index: auto;
}
#header #right_a01 dt	{
	font-weight: bold;
	margin-bottom: 5px;
	background-color: #FFFFFF;
	z-index: auto;
}
#header   #right_a01   #searchform2 {
	position: relative;	
}
#header #right_a01 #keywords2	{
	width: 182px;
	height: 16px;
	background: #999;
	border: none;
	color: #FFF;
	padding: 4px;
}
#header #right_a01 #keywords3	{
	width: 182px;
	height: 16px;
	background: #999;
	border: none;
	color: #FFF;
	padding: 4px;
}
#header #right_a01 #searchBtn2	{
	position: absolute;
	top: 0;
	_top: 0px;
	left: 190px;
}


#header #right_a01 *:first-child + html #searchBtn2	{
	top: 1px;
}

#navi_in {
	background-image: url(../img/main_index/bg_a.png);
	background-repeat: repeat-x;
	background-position: center top;
	width: 100%;
	background-color: #FFFFFF;

}
#navi  {
	width: 940px;
	margin: auto;
	height: 37px;
	/*background-color: #FFF;*/
}
#navi #up_menu {
	height: 40px;
	margin-top: 0px;
	padding: 0px;
	position: relative;
	text-align:center;
	/*background-image: url(../img/menu_ol0/menu_bg.png);*/
	background-repeat: no-repeat;
}

/* navigater 
----------------------------------------------------------- */

#g_navi {
	width: 940px;
	height: 40px;
	margin: 0pt;
	padding: 0pt;
	position: relative;
	z-index: 1;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 0% 0%;
}
#g_navi ul {
	padding: 0pt;
	margin: 0pt;
	font-size: 11px;
	line-height: normal;
	font-weight: normal;
	text-decoration: none;
	
}
#g_navi li {
	float: left;
	position: relative;
	list-style-type: none;
	text-decoration: none;
	font-weight: normal;
}
#g_navi li a { height: 39px; display: block; float: left; text-indent: -9877em; text-decoration: none; overflow: hidden; 


}

#g_navi li img { float: left; position: absolute; list-style-type: none; width: 32px; left: 0px; padding: 4px 0pt 0pt; margin: 0pt 0pt 0pt 2px; border: medium none; overflow: hidden; text-indent: 0pt; }

#g_navi li.g_navi01 ul,
#g_navi li.g_navi02 ul,
#g_navi li.g_navi03 ul, 
#g_navi li.g_navi04 ul,
#g_navi li.g_navi05 ul,
#g_navi li.g_navi06 ul,
#g_navi li.g_navi07 ul,
#g_navi li.g_navi08 ul,
#g_navi li.g_navi01_on ul,
#g_navi li.g_navi02_on ul,
#g_navi li.g_navi03_on ul,
#g_navi li.g_navi04_on ul,
#g_navi li.g_navi05_on ul,
#g_navi li.g_navi06_on ul,
#g_navi li.g_navi07_on ul, 
#g_navi li.g_navi08_on ul, 
#g_navi li.g_navi09_on ul,
#g_navi li.g_navi10_on ul {
	width: 150px;
	position: absolute;
	top: 39px;
	left: -1px;
	display: none;
	
}

#g_navi li.g_navi01 ul li a,
#g_navi li.g_navi02 ul li a, 
#g_navi li.g_navi03 ul li a, 
#g_navi li.g_navi04 ul li a, 
#g_navi li.g_navi05 ul li a, 
#g_navi li.g_navi06 ul li a, 
#g_navi li.g_navi07 ul li a, 
#g_navi li.g_navi08 ul li a, 
#g_navi li.g_navi01_on ul li a, 
#g_navi li.g_navi02_on ul li a, 
#g_navi li.g_navi03_on ul li a, 
#g_navi li.g_navi04_on ul li a, 
#g_navi li.g_navi05_on ul li a, 
#g_navi li.g_navi06_on ul li a, 
#g_navi li.g_navi07_on ul li a, 
#g_navi li.g_navi08_on ul li a, 
#g_navi li.g_navi09_on ul li a,
#g_navi li.g_navi10_on ul li a {
	width: 150px;
	height: auto;
	display: block;
	background: url('../img/menu_ol0/icon.png') no-repeat scroll 1px 9px rgb(0, 0, 0);
	opacity: 0.8;
	margin: 0pt;
	font-size: 12px;
	border-bottom: 1px solid rgb(51, 51, 51);
	color: rgb(255, 255, 255);
	text-decoration: none;
	text-indent: 0pt;
	text-align: left;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 15px;
}
#g_navi li.g_navi01 ul li a:hover,
#g_navi li.g_navi02 ul li a:hover,
#g_navi li.g_navi03 ul li a:hover,
#g_navi li.g_navi04 ul li a:hover, 
#g_navi li.g_navi05 ul li a:hover, 
#g_navi li.g_navi06 ul li a:hover, 
#g_navi li.g_navi07 ul li a:hover, 
#g_navi li.g_navi08 ul li a:hover, 
#g_navi li.g_navi09 ul li a:hover, 
#g_navi li.g_navi01_on ul li a:hover, 
#g_navi li.g_navi02_on ul li a:hover, 
#g_navi li.g_navi03_on ul li a:hover, 
#g_navi li.g_navi04_on ul li a:hover, 
#g_navi li.g_navi05_on ul li a:hover, 
#g_navi li.g_navi06_on ul li a:hover, 
#g_navi li.g_navi07_on ul li a:hover, 
#g_navi li.g_navi08_on ul li a:hover, 
#g_navi li.g_navi09_on ul li a:hover,
#g_navi li.g_navi10_on ul li a:hover{ background: url('../img/menu_ol0/icon_on.png') no-repeat scroll 1px 9px rgb(0, 0, 0); opacity: 0.9; color: rgb(240, 252, 55); }

#g_navi ul li ul {
	top: 0px;
	left: 150px;
}
#g_navi ul ul { display: none; }

#g_navi li.g_navi01 a {
	width: 68px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 260px -40px;
	margin-left: 260px;
}
#g_navi li.g_navi02 a {
	width: 78px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 328px 0px;
}
#g_navi li.g_navi03 a {
	width: 72px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 406px 0px;
}
#g_navi li.g_navi04 a {
	width: 79px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 478px 0px;
}
#g_navi li.g_navi05 a {
	width: 77px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 557px 0px;
}
#g_navi li.g_navi06 a {
	width: 78px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 634px 0px;
}
#g_navi li.g_navi08 a {
	width: 95px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 712px 0px;
}
#g_navi li.g_navi09 a {
	width: 76px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -924px -80px;
	margin-left: 117px;
}
#g_navi li.g_navi10 a {
	width: 76px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: 924px 0px;
	margin-left: 117px;
}

#g_navi li.g_navi01 a:hover {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -260px -40px;
	margin-left: 260px;
}
#g_navi li.g_navi02 a:hover {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -328px -40px;
}
#g_navi li.g_navi03 a:hover {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -406px -40px;
}
#g_navi li.g_navi04 a:hover {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -478px -40px;
}
#g_navi li.g_navi05 a:hover {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -557px -40px;
}
#g_navi li.g_navi06 a:hover {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -634px -40px;
}
#g_navi li.g_navi08 a:hover {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -712px -40px;
}
#g_navi li.g_navi09 a:hover {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -924px -120px;
	margin-left: 117px;
}
#g_navi li.g_navi10 a:hover {
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/menu_ol0/menu_bg.png);
	background-repeat: no-repeat;
	background-position: -924px -40px;
	margin-left: 117px;
}


#smenu {

}

/* MENU L_NAVI set
----------------------------------------------------------- */
#l_navis {
	width: 56px;
	height: 462px;
	margin: 0pt;
	padding: 0pt;
	position: relative;
	z-index: 0;
	background-attachment: scroll;
	background-color: #FFF;
	background-repeat: no-repeat;
	background-position: 0% 0%;
}
#l_navis ul {
	padding: 0pt;
	margin: 0pt;
	font-size: 11px;
	line-height: normal;
	font-weight: normal;
	text-decoration: none;
}
#l_navis li {
	float: left;
	position: relative;
	list-style-type: none;
	text-decoration: none;
	font-weight: normal;
}
#l_navis li a {
	height: 42px;
	display: block;
	float: left;
	text-indent: -9877em;
	text-decoration: none;
	overflow: hidden;
}

#l_navis ul li ul {
	top: 0px;
	left: 150px;
}
#l_navis ul ul { display: none; }

#l_navis li.l_navis01 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	margin-left: 0px;
	height: 42px;
}
#l_navis li.l_navis01 a:hover {
    background-color: #FFEDD2;
}
#l_navis li.l_navis02 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -42px;
	margin-left: 0px;
	height: 42px;
}
#l_navis li.l_navis02 a:hover {
    background-color: #FFEDD2;
}
#l_navis li.l_navis03 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -84px;
	margin-left: 0px;
	height: 42px;
}
#l_navis li.l_navis03 a:hover {
    background-color: #FFEDD2;
}
#l_navis li.l_navis04 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -126px;
	margin-left: 0px;
	height: 42px;
}
#l_navis li.l_navis04 a:hover {
    background-color: #FFEDD2;
}
#l_navis li.l_navis05 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -168px;
	margin-left: 0px;
	height: 42px;
}
#l_navis li.l_navis05 a:hover {
    background-color: #FFEDD2;
}
#l_navis li.l_navis06 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -210px;
	margin-left: 0px;
	height: 42px;
}
#l_navis li.l_navis06 a:hover {
    background-color: #FFEDD2;
}
#l_navis li.l_navis07 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -252px;
	margin-left: 0px;
	height: 42px;
}
#l_navis li.l_navis07 a:hover {
    background-color: #FFEDD2;
}
#l_navis li.l_navis08 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -294px;
	margin-left: 0px;
	height: 42px;
}
#l_navis li.l_navis08 a:hover {
    background-color: #FFEDD2;
}

#l_navis li.l_navis09 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -336px;
	margin-left: 0px;
}
#l_navis li.l_navis09 a:hover {
    background-color: #FFEDD2;
}

#l_navis li.l_navis10 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -378px;
	margin-left: 0px;
}
#l_navis li.l_navis10 a:hover {
    background-color: #FFEDD2;
}
#l_navis li.l_navis11 a {
	width: 56px;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../img/cont/menu.png);
	background-repeat: no-repeat;
	background-position: 0px -420px;
	margin-left: 0px;
}
#l_navis li.l_navis11 a:hover {
    background-color: #FFEDD2;
}

/* Flash set
----------------------------------------------------------- */

#navi #up_flash {
	height: 50px;
	width: 940px;
	margin-top: 3px;
	font-size: 10px;
	color: #FFFF00;
	text-align: center;
	background-color: #FFF;
}







/*	SET NAVI CONT
-----------------------------------------------------------------*/
.navi_cont {
	width: 627px;
	background-color: #313131;
	border: 3px solid #313131;
}
.navi_cont_set {
	background-color: #FFF;
	padding-top: 5px;
	padding-right: 8px;
	padding-bottom: 10px;
	padding-left: 8px;
}


/*------------------------------------------------------------------
[3. HEADER / .class / ]
*/

.new01 {
	line-height: 120%;
	background-color: #EFEFEF;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 25px;
	background-image: url(../img/main_index/pic.png);
	background-repeat: no-repeat;
	background-position: 5px center;
	margin-bottom: 4px;
	height: 15px;
}
.new11 {
	line-height: 120%;
	background-color: #EFEFEF;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 25px;
	background-image: url(../img/main_index/pic.png);
	background-repeat: no-repeat;
	background-position: 5px center;
	margin-bottom: 6px;
	height: 15px;
}
.left_n01 {
	color: #03C;
}
.left_li_cm {
	min-height: 100%;
	_height: 100%;
	width: 177px;
	background-image: url(../img/munu_ol1/cm_bg.gif);
	overflow: auto;
	height: auto;
}
.new01 a {
	color: #00C;
	text-decoration: none;
}
.new01 li {
	line-height: 180%;
	background-color: #EFEFEF;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 25px;
	list-style-image: url(../img/main_index/pic.png);
}
.new01 a:hover {
	color: #FF6600;
}
.new01 p {
	padding-bottom: 2px;
}
.new11 a {
	color: #00C;
	text-decoration: none;
}
.new11 li {
	line-height: 180%;
	background-color: #EFEFEF;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 25px;
	list-style-image: url(../img/main_index/pic.png);
}
.new11 p {
	padding-bottom: 2px;
}
.new11 a:hover {
	color: #FF6600;
}
.p_news {
	padding: 3px;
	border: 1px dotted #666;
	width: 90px;
	text-align: center;
	margin-top: 20px;
	display: block;
}
.p_news_view {
	text-align: right;
	text-decoration: none;
	margin-top: -27px;
	padding: 0px;
}

.new02 {
	line-height: 160%;
	padding: 3px;
}
.new02 td {
	font-size: 13px;
}

.new03 {
	padding: 3px;
	margin-bottom: 0px;
	border: 1px dotted #333333;
	text-align: right;
	position: static;
	overflow: hidden;
	z-index: auto;
}
.ct_com_set {
	padding: 10px;
	width: auto;
}

.ct_com_set h3 {
	background-color: #FFFFFF;
	display: block;
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #E89A06;
	margin-bottom: 10px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
}
.right_img_m {
	padding: 2px;
	border: 1px solid #999999;
	float: left;
	margin-right: 10px;
}

.crafter_set_img {
	border: 1px solid #313131;
	text-align: center;
	width: 625px;
	margin-right: 187px;
	margin-left: 180px;
	margin-top: 4px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	
}

.news_menu01 {
	height: 63px;
	width: 153px;
	background-color: #29000B;
	overflow: hidden;
	z-index: auto;
}
.link_set {
	width: 164px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
	color: #FFFFFF;
	padding-top: 5px;
	padding-bottom: 3px;
	font-size: 11px;
	margin-right: 10px;
	margin-left: 10px;
}
.link_set a {
	color: #FFFFFF;
	text-decoration: none;
}
.link_set a:hover {
	color: #6F0;
	text-decoration: none;
	background-color: #000000;
	display: block;
}
.cr {
	margin-top: 10px;
	color: #FFFFFF;
	font-size: 10px;
}
.img_avater {
	border: 1px solid #F60;
}


/*------------------------------------------------------------------
[4. Main / .main]
*/

.main {
	width: 940px;
	/*overflow: hidden;*/
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	-moz-box-shadow: 0px 0px 8px #616161;
	-webkit-box-shadow: 0px 0px 8px #616161;
	box-shadow: 0px 0px 8px #616161;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;
}

.sidebar {
  float: left;
  width: 180px;
}
.sidebar_small {
  float: left;
  width: 59px;
}
.content {
  float: right;
  width: 750px;
}
.content_small {
  float: right;
  width: 875px;
}

/*------------------------------------------------------------------
[5. Extra / .extra]
*/

.extra {

	border-top: 1px solid #585858;
	border-bottom: 1px solid #000;

}

.extra-inner {
	padding: 20px 0;
	
	font-size: 11px;
	color: #BBB;
	
	background: #1A1A1A;
}

.extra a {
	color: #666;
}

.extra h4 {
	margin-bottom: 1em;
	
	font-weight: 400;
}

.extra ul {
	padding: 0;
	margin: 0;
}

.extra li {
	margin-bottom: .6em;
	
	list-style: none;
}




/*------------------------------------------------------------------
[6. Footer/ .footer]
*/

#footer_in {
	width: 100%;
	background-image: url(../img/lower_a.gif);
	background-repeat: repeat-x;
	background-color: #070707;
	margin-top:-5px;
}
#footer {
	height: 108px;
	width: 940px;
	font-size: 11px;
	line-height: 150%;
	padding-top: 8px;
	background-image: url(../img/main_index/ft_bg.png);
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #9F8000;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: 8px;
	margin-left: auto;
}
#footer #logo_a {
	height: 80px;
	width: 132px;
	margin-top: 13px;
	margin-left: 10px;
	float: left;
}
#footer #cpl {
	float: right;
	height: 80px;
	width: 780px;
	margin-top: 20px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
#footer #cpl #left_a03 {
	float: left;
	height: 60px;
	width: 350px;
	padding: 5px;
	color: #E1B500;
	background-image: url(../img/bg_po.png);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
#footer #cpl #right_a03 {
	float: right;
	height: 70px;
	width: 400px;
	color: #CCCCCC;
	text-align: right;
	margin-right: 5px;
}
#footer #cpl #right_a03 a {
	color: #CCCCCC;
	text-decoration: none;
}
#footer #cpl #right_a03 a:hover {
	color: #99FF00;
}

#footer #cpl #right_a03 p {
	margin: 0px;
	padding: 0px;
	font-size: 11px;
}
.footer.link {
	width: 940px;
	margin: auto;
}
.footer.link ul {
	margin: 0px;
	padding: 0px;	
	
}
.footer.link li {
	list-style-type: none;
	float: left;
	font-size: 11px;
	text-decoration: none;
	margin-right: 2px;
	margin-bottom: 2px;
	padding-right: 3px;
	padding-left: 3px;
}
.footer.link li a {
	color: #CCC;
	text-decoration: none;	
}
.footer.link li a:hover {
	color: #99FF00;
	text-decoration: none;	
	
}
.footer.copyright {
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #9F8000;
	margin-top: 10px;
}


/*------------------------------------------------------------------
[6. Widget / .widget]
*/

.widget {
	
	position: relative;
	clear: both;
	
	width: auto;
	
	margin-bottom: 2em;
		
	overflow: hidden;
}
	
.widget-header {
	
	position: relative;
	
	height: 40px;
	line-height: 40px;
	
	background: #E9E9E9;
	background:-moz-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* FF3.6+ */
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#FAFAFA), color-stop(100%,#E9E9E9)); /* Chrome,Safari4+ */
	background:-webkit-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Chrome10+,Safari5.1+ */
	background:-o-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Opera11.10+ */
	background:-ms-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* IE10+ */
	background:linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";
	
	
	border: 1px solid #D5D5D5;
	
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	
	-webkit-background-clip: padding-box;
}	
	
	.widget-header h3 {
		
		position: relative;
		top: 2px;
		left: 10px;
		
		display: inline-block;
		margin-right: 3em;
		
		font-size: 14px;
		font-weight: 800;
		color: #555;
		line-height: 18px;
		
		text-shadow: 1px 1px 2px rgba(255,255,255,.5);
	}
	
		.widget-header [class^="icon-"], .widget-header [class*=" icon-"] {
			
			display: inline-block;
			margin-left: 13px;
			margin-right: -2px;
			
			font-size: 16px;
			color: #555;
			vertical-align: middle;
			
			
			
		}




.widget-content {
	padding: 20px 15px 15px;
	
	background: #FFF;
	
	
	border: 1px solid #D5D5D5;
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.widget-header+.widget-content {
	border-top: none;
	
	-webkit-border-top-left-radius: 0;
	-webkit-border-top-right-radius: 0;
	-moz-border-radius-topleft: 0;
	-moz-border-radius-topright: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.widget-nopad .widget-content {
	padding: 0;
}

/* Widget Content Clearfix */	
.widget-content:before,
.widget-content:after {
    content:"";
    display:table;
}

.widget-content:after {
    clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.widget-content {
    zoom:1;
}

/* Widget Table */

.widget-table .widget-content {
	padding: 0;
}

.widget-table .table {
	margin-bottom: 0;
	
	border: none;
}

.widget-table .table tr td:first-child {
	border-left: none;
}

.widget-table .table tr th:first-child {
	border-left: none;
}


/* Widget Plain */

.widget-plain {
	
	background: transparent;
	
	border: none;
}

.widget-plain .widget-content {
	padding: 0;
	
	background: transparent;
	
	border: none;
}



/*------------------------------------------------------------------
[7. Error / .error-container]
*/

.error-container {
	margin-top: 4em;
	margin-bottom: 4em;
	text-align: center;
}

.error-container h1 {
	margin-bottom: .5em;
	
	font-size: 120px;
	line-height: 1em;
}

.error-container h2 {
	margin-bottom: .75em;
	font-size: 28px;
}

.error-container .error-details {
	margin-bottom: 1.5em;
	
	font-size: 16px;
}

.error-container .error-actions a {
	margin: 0 .5em;
}





/*------------------------------------------------------------------
[8. Miscellaneous]
*/

.chart-holder {
	width: 100%;
	height: 250px;
}


/*------------------------------------------------------------------
[9. OtherClass]
*/



/* white */
.white {
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top,  #fff,  #ededed);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}

.white:hover {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
.white:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}

/* orange */
.orange {
	color: #000000;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover {
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange:active {
	color: #000000;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}

/* orange */
.orange_s {
	color: #000000;
	border: solid 1px #fdd842;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#fdd842), to(#fbbd04));
	background: -moz-linear-gradient(top,  #fdd842,  #fbbd04);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd842', endColorstr='#fbbd04');
}

.orange_s:hover {
	background: #f47c20;
	border: solid 1px #fdd842;
	background: -webkit-gradient(linear, left top, left bottom, from(#fdd94b), to(#fdd842));
	background: -moz-linear-gradient(top,  #fdd94b,  #fdd842);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd94b', endColorstr='#fdd842');
	color: #000;
}
.orange_s:active {
	color: #000000;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}
.small {
	font-size: 13px;
	padding-top: 0.1em;
	padding-right: 0.2em;
	padding-bottom: 0.1em;
	padding-left: 0.2em;
}
.tryit
	{
	list-style-type:none;
	float:left;
	background:#eee;
	border:1px solid #bbb;
	padding:5px 10px;
	margin:0px 10px 10px 0px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	cursor:pointer;
	box-shadow:0px 2px 3px #aaa;
	-moz-box-shadow:0px 2px 3px #aaa;
	-webkit-box-shadow:0px 2px 3px #aaa;
	text-shadow:0px 1px 0px #fff;
	}
.tryit:hover
	{ color:#000; }
.tryit:active
	{ box-shadow:none; }
.bg_ca {
	background-color: #FFC;
}
.opena {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 13px/100% Arial, Helvetica, sans-serif;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	padding: .1em .8em .10em;
}
.opena:hover {
	text-decoration: none;
}
.opena:active {
	position: relative;
	top: 1px;
}
.opens:hover {
	text-decoration: none;
}
.opens:active {
	position: relative;
	top: 1px;
}
.opens {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 13px/100% Arial, Helvetica, sans-serif;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	padding: .1em .8em .10em;
}

.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 13px/100% Arial, Helvetica, sans-serif;
	-webkit-border-radius: .5em;
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	margin-top: 0;
	margin-right: 2px;
	margin-bottom: 0;
	margin-left: 2px;
	padding-top: 0.1em;
	padding-right: 0.5em;
	padding-bottom: 0.1em;
	padding-left: 0.5em;
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}
.medium {
	font-size: 13px;
	margin-top: 15px;
	padding-top: 0.4em;
	padding-right: 0.4em;
	padding-bottom: 0.42em;
	padding-left: 0.4em;
	margin-right: 10px;
	margin-left: -10px;
}

.new_old {
	width: 420px;
	margin-left: 330px;
	padding-bottom: 7px;
	text-align: right;
	text-decoration: none;
	padding-top: 10px;
}
.new_old p {
	font-size: 13px;
}
.new_old a {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	border-radius: 0.5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 100%;
	margin-top: 0;
	margin-right: 2px;
	margin-bottom: 0;
	margin-left: 2px;
	padding-top: 0.3em;
	padding-right: 0.4em;
	padding-bottom: 0.3em;
	padding-left: 0.4em;
	border: 1px solid #F90;
}
.new_old a:hover {
	background-color: #F90;
	color: #FFF;
}
.new_old_on {
	color: #FFF;
	background-color: #F90;
}
.new_old_on a:hover {
	color: #FFF;
	background-color: #F90;
}
.new_old_waku {
	background-color: #FFF;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
}





/*
		BOX
-----------------------------------------------------*/
.sidebar-nav .well{
  background-color: #fbfbfb;
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
  background-repeat: repeat-x;
  border: 1px solid #ddd;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
}

/* Other */
.action-btn {
	text-align:center;
	 background-color: #fbfbfb;
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
  background-repeat: repeat-x;
  border: 1px solid #ddd;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
     -moz-box-shadow: inset 0 1px 0 #ffffff;
          box-shadow: inset 0 1px 0 #ffffff;
  margin-top:0px;
  margin-bottom:20px;
  padding:10px;
}

/* Comment Table */
.member-avatar img {
border: 1px solid #DDDDDD;}

.comment-info {
color:#666;
}

/* Portlets */
.box h4.box-header {
	background-color: #fbfbfb;
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
  background-repeat: repeat-x;
  border: 1px solid #ddd;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
     -moz-box-shadow: inset 0 1px 0 #ffffff;
          box-shadow: inset 0 1px 0 #ffffff;
}

.box .box-container-toggle {
	border-left:1px solid #DDD;
		border-right:1px solid #DDD;
			border-bottom:1px solid #DDD;
	
		 -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
   -webkit-border-top-left-radius: 0px;
      -webkit-border-top-right-radius: 0px;
     -moz-border-top-left-radius: 0px;
	      -moz-border-top-right-radius: 0px;
          border-top-left-radius: 0px;
		            border-top-right-radius: 0px
}




/* Round Corners and text effects
----------------------------------------------------------------------------------------------------*/

.round-all {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.round-top {
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-radius: 3px 3px 0 0;
}
.round-bottom {
	-webkit-border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-radius: 0 0 3px 3px;
}
.round-left {
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-radius: 3px 0 0 3px;
}
.round-right {
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomright: 3px;
	border-radius:0 3px 3px 0;
}
/* Member Box - Side Nav */
.member-box {
	 background-color: #fbfbfb;
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f5f5f5));
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
  background-repeat: repeat-x;
  border: 1px solid #ddd;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
     -moz-box-shadow: inset 0 1px 0 #ffffff;
          box-shadow: inset 0 1px 0 #ffffff;
}

img.member-box-avatar {
	border:1px solid #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* Dashboard  */
.box ul.dashboard-statistics li, ul.dashboard-member-activity li {
	border-bottom: 1px solid #ebebeb;
	border-top: 1px solid #fff;
}

.red {
	color:#B94A48;
}
.green {
	color:#468847
}
.yellow {
	color:#F89406
}
.blue {
	color:#3A87AD;
}

img.dashboard-member-activity-avatar {
	border:1px solid #ccc;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}






/* Side Nav */
.sidebar-nav {
        padding: 9px 0;
      }

/* Bootstrap Data Tables Styles */
div.dataTables_length label {
	float: left;
	text-align: left;
}

div.dataTables_length select {
	width: 75px;
}

div.dataTables_filter label {
	float: right;
}

div.dataTables_info {
	padding-top: 8px;
}

div.dataTables_paginate {
	float: right;
	margin: 0;
}

table {
	margin: 1em 0;
	clear: both;
}

table.dataTable th:active {
	outline: none;
}
.dataTables_filter .dataTables_length select {
 display: inline-block;
  *display: inline;
  margin-bottom: 0;
  *zoom: 1;
}

.sort-index, .hidden {
	left: -10000px;
    position: absolute;
    top: -10000px;
    visibility: hidden;
}
/* Comment Table */
.comment-table tbody tr td {
vertical-align:top;
}
.member-avatar img {
border: 1px solid #DDDDDD;
padding: 1px;
text-align: center;
margin-top: 5px;
margin-left: auto;
margin-right: auto;
float: left;
}
table.member-info {
margin-top: 5px;
line-height:10px;
clear: none;
}
table.member-info tbody tr td {
line-height:15px;
}
.comment-info {
margin-bottom:2px;
}
.post-toolbar {
cursor:pointer;
}
tr .post-toolbar {
	visibility:hidden;
}

tr:hover .post-toolbar {
	visibility: visible;
}

/* Portlets */
.box {
	margin-bottom:8px;
}
.box h4.box-header {
	size:10px;
	padding: 7px 7px;
  margin: 0;
  list-style: none;
  /*cursor:move;*/
}


.box-content {
	padding:4px;
	background-color: #FFF;
}


.box-btn {
 	float:right;
	margin-left:2px;
	margin-right:2px;
	height: 14px;
	width: 14px;
	text-decoration:none;
	display: block;
	float: right;
	overflow: hidden;
	background-position:center;
	cursor:pointer;


}

.box-btn [class^="icon-"], .box-btn [class*=" icon-"] { 
	vertical-align:top;
}

.box-container-closed {
	display:none;
}

/* Portlets */
.box-placeholder {
	background-color: #f5f5f5;
	border: 1px dashed #DDDDDD;
	display: block;
	/* float: left;*/
    margin-bottom: 13px !important;
	margin-left: 1%;
	margin-right: 0.6%;
}
.box-placeholder * {
	visibility:hidden;
}
.column {
	
}

/* Member Box - Side Nav */
.member-box {
	
  display:block;
  padding:10px;
  
}

img.member-box-avatar {
	height:50px;
	width:50px;
	padding:1px;
	margin-right:10px;
	float:left;
}

.member-box-links {
	font-size:85%;	
}

/* Dashboard  */
#dashboard-visit-map, #dashboard-new-registrations-gauge-chart {
	clear:both;
	margin-left: auto;
    margin-right: auto;
}

#dashboard-new-registrations-gauge-chart {
	padding-top:30px;
}


ul.dashboard-statistics, ul.dashboard-member-activity {
	margin: 10px 0;
}
.box ul.dashboard-statistics li, ul.dashboard-member-activity li {
	list-style: none;
	padding-bottom:10px;
	padding-top:10px;
}
ul.dashboard-statistics li:first-child, ul.dashboard-member-activity li:first-child {
	border-top: none;
	padding-top:0;
}
ul.dashboard-statistics li:last-child, ul.dashboard-member-activity li:last-child {
	border-bottom: none;
	padding-bottom:0;
}
ul.dashboard-statistics li a {

	display: block;
	line-height: 10px;
	text-decoration: none;
}
ul.dashboard-member-activity li a {

	display: inline;
	text-decoration: none;
}
ul.dashboard-statistics li a:hover, ul.dashboard-member-activity li a:hover {

}
ul.dashboard-statistics li a span {
	display: inline-block;
 *display: inline;
	font-size: 18px;
	font-weight: bold;
	margin-right: 10px;
	text-align: right;
	width: 70px;
	zoom: 1;
}
ul.dashboard-statistics i[class*=icon] {
	margin-left: 15px;
}


img.dashboard-member-activity-avatar {
	height:100px;
	width:100px;
	padding:1px;
	float:left;
	margin-left:15px;
	margin-right:15px;
}

#dashboard-new-registrations-gauge-chart table {
	background-color:transparent;
}
/* Calendar */
.external-event {
	margin-bottom:20px;
}

/* Show Grid */
.show-grid {
    margin-bottom: 10px;
    margin-top: 10px;
}
.show-grid [class*="span"] {

    line-height: 30px;
    min-height: 30px;
    text-align: center;
}
.show-grid .show-grid {
    margin-bottom: 0;
    margin-top: 0;
}

.cke_textarea {
	margin-top:10px;
	margin-bottom:10px;	
}

.radius {
	-webkit-border-bottom-right-radius: 7px;
-webkit-border-bottom-left-radius: 7px;
-moz-border-radius-bottomright: 7px;
-moz-border-radius-bottomleft: 7px;
border-bottom-right-radius: 7px;
border-bottom-left-radius: 7px;
	
}
.right-set {
	padding-bottom: 10px;
	padding-left: 5px;
	text-align: left;
	clear: right;
	float: right;
}



/*		AUTO COMPILE
-----------------------------------------------------------*/

.ac_results {
	padding: 0px;
	border: 1px solid #999;
	background-color: #FFF;
	overflow: hidden;
	z-index: 2;
	width: 200px;
	-webkit-border-bottom-right-radius: 7px;
-webkit-border-bottom-left-radius: 7px;
-moz-border-radius-bottomright: 7px;
-moz-border-radius-bottomleft: 7px;
border-bottom-right-radius: 7px;
border-bottom-left-radius: 7px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.ac_results ul {
	list-style-position: outside;
	padding: 0;
	margin: 0;
	z-index: 2;
	background-color: #FFF;
	font-size: 14px;
	list-style-type: none;
	width: 200px;
}

.ac_results iframe {
	display:none;/*sorry for IE5*/
	display/**/:block;/*sorry for IE5*/
	position:absolute;
	top:0;
	left:0;
	z-index:2;
	width:3000px;
	height:3000px;
}

.ac_results li {
	margin: 0px;
	cursor: pointer;
	display: block;
	overflow: hidden;
	padding-top: 2px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	z-index: 2;
	width: 200px;
}

.ac_loading {
	background : Window url('../img/indicator.gif') right center no-repeat;
}

.ac_over {
	background-color: #FFF2BF;
}

/*	FIX
-------------------------------------------------------*/

.fix {
	display: none;
}
#loader {	display: none;	}
#loader1 {	display: none;	}
#loader2 {	display: none;	}
#loader3 {	display: none;	}
#loader4 {	display: none;	}
#loader5 {	display: none;	}
#loader6 {	display: none;	}
#loader7 {	display: none;	}
#loader8 {	display: none;	}
#loader9 {	display: none;	}

.motion {

	display: none;
}
#motion_area1 {
	display: block;
}
.ovf {
	overflow: hidden;	
	
}


/*	dataTables
-------------------------------------------------------*/

div.dataTables_length label {
	float: left;
	text-align: left;
}

div.dataTables_length select {
	width: 75px;
}

div.dataTables_filter label {
	float: right;
}

div.dataTables_info {
	padding-top: 8px;
}

div.dataTables_paginate {
	float: right;
	margin: 0;
}

table.table {
	clear: both;
	margin-bottom: 6px !important;
}

table.table thead .sorting,
table.table thead .sorting_asc,
table.table thead .sorting_desc,
table.table thead .sorting_asc_disabled,
table.table thead .sorting_desc_disabled {
	cursor: pointer;
	*cursor: hand;
}

table.table thead .sorting { background: url('../img/images/sort_both.png') no-repeat center right; }
table.table thead .sorting_asc { background: url('../img/images/sort_asc.png') no-repeat center right; }
table.table thead .sorting_desc { background: url('../img/images/sort_desc.png') no-repeat center right; }

table.table thead .sorting_asc_disabled { background: url('../img/images/sort_asc_disabled.png') no-repeat center right; }
table.table thead .sorting_desc_disabled { background: url('../img/images/sort_desc_disabled.png') no-repeat center right; }

table.dataTable th:active {
	outline: none;
}

/*	item_view
-------------------------------------------------------*/
.iv {
	overflow: hidden;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.iv.icon {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 2px;

	float: left;
	margin-right: 10px;
}
.iv.icon-mini {
	height: 64px;
	width: 64px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 2px;
	float: left;
	margin-right: 10px;
	clear: both;
}
.vi.data {
	float: left;
	padding-left: 10px;
}
.iv.p {
	margin: 0px;
	font-size: 14px;
	line-height: 130%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
}
.iv.breadcrumb {
	
}
.iv.base {
	padding: 10px;
	border: 1px solid #F90;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #FFF;
		-webkit-box-shadow: 1px 2px 3px 0px #E7E7E7; /* Safari, Chrome用 */
	-moz-box-shadow: 1px 2px 3px 0px #E7E7E7; /* Firefox用 */
	box-shadow: 1px 2px 3px 0px #E7E7E7; /* CSS3 */
}
.iv.base-r {
	padding: 5px;
	border: 1px solid #F90;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #FFF;
		-webkit-box-shadow: 1px 2px 3px 0px #E7E7E7; /* Safari, Chrome用 */
	-moz-box-shadow: 1px 2px 3px 0px #E7E7E7; /* Firefox用 */
	box-shadow: 1px 2px 3px 0px #E7E7E7; /* CSS3 */
}

.iv.bs {	border: 1px solid #960;}
.iv.ar {	border: 1px solid #36F;	}
.iv.alc {	border: 1px solid #63F;}
.iv.ww {	border: 1px solid #9C0;}
.iv.wev {	border: 1px solid #FF0;}
.iv.cul {	border: 1px solid #FF4DFF;}
.iv.gs {	border: 1px solid #FC0;}
.iv.tan {	border: 1px solid #F36;}
.iv.no {
	border: 1px solid #CCC;
}
.iv.wh {
	border: 1px solid #FFF;
}

.iv.padding-bottum {
	padding-bottom: 10px;
}
.iv.margin-top {
	margin-top: 6px;
}
.iv.margin-top10 {
	margin-top: 10px;
}
.iv.em {
	font-size: 18px;
	color: #390;
	margin-right: 25px;
	text-decoration: none;
	font-variant: normal;
	font-style: normal;
}
.iv.left {
	float: left;
	width: 49%;
	border-right-width: 1px;
	border-right-style: dotted;
	border-right-color: #F90;
}
.iv.left-r {
	float: left;
	width: 50%;
}
.iv.right {
	float: right;
	width: 50%;
}
.iv-waku {
	padding: 10px;	
}
.iv-waku-bt {
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
}
.iv-margin {
	margin: 10px;
}
.iv-padding {
	padding: 10px;
}
.iv-waku-h {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
.iv.flame {
	padding: 5px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #F90;
	border-bottom-color: #F90;
	margin-top: 5px;
	margin-bottom: 5px;
}
.iv.recipe {
	border: 1px solid #F90;
	padding: 5px;
	margin: 5px;
}
.iv.recipe-end {
	float: left;
	width: 23%;
	padding-right: 5px;
	padding-left: 5px;
}
.iv.well-r {
	background-color: #f5f5f5;
	border: 1px solid #eee;
	border: 1px solid rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	margin: 5px;
	padding: 5px;
}
.iv.well-s {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	margin: 5px;
	padding: 5px;
}
.well-r.bg-bs,
.well.bg-bs,
.iv.well-r.bg-bs {
	background-color: #FEEDDE;
}
.well-r.bg-ar,
.well.bg-ar,
.iv.well-r.bg-ar {
	background-color: #DEF;
}
.well-r.bg-gs,
.well.bg-gs,
.iv.well-r.bg-gs {
	background-color: #FEF7DA;
}
.well-r.bg-ww,
.well.bg-ww,
.iv.well-r.bg-ww {
	background-color: #ECFFCE;
}
.well-r.bg-alc,
.well.bg-alc,
.iv.well-r.bg-alc {
	background-color: #D9D9FF;
}
.well-r.bg-wev,
.well.bg-wev,
.iv.well-r.bg-wev {
	background-color: #FFC;
}
.well-r.bg-tan,
.well.bg-tan,
.iv.well-r.bg-tan {
	background-color: #FDD;
}
.well-r.bg-cul,
.well.bg-cul,
.iv.well-r.bg-cul {
	background-color: #FFE6FF;
}
.iv.well-b {
	background-color: #f5f5f5;
	border: 1px solid #eee;
	border: 1px solid rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	padding: 10px;
}
.r-txt {
	text-align: right;
	float: right;
}
.l-txt {
	text-align: left;
	float: left;
}
.iv.clear {
	clear: both;	
	
}
.iv.reset {
	line-height: normal;
	text-decoration: none;
	margin: 0px;
	padding: 0px;	
	
}
.iv.overflow {
	overflow: hidden;	
	
}
.iv.login {
	padding: 5px;
	height: 20px;
	width: 50px;
	font-size: 14px;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
	display: block;
}
.iv.login:hover {
	color: #FC0;
}
.iv p {
	margin: 0px;
	padding: 0px;
	line-height: 200%;
}
.iv p2 {
	margin: 0px;
	padding: 0px;
	line-height: 120%;
}
.iv.center {
	text-align: center;
	clear: both;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-color: #FFF;
	margin-top: 5px;
	margin-right: 30px;
	margin-left: 30px;
}
.iv.center-set {
	text-align: center;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #FFF;
	margin-right: 10px;
	margin-left: 10px;
	padding: 0px;
	float: right;
	width: 270px;
}
.iv.center-btn {
	text-align: center;
	clear: both;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-top: 5px;
	margin-right: 10px;
	margin-left: 10px;
}
.mr10 {
	margin-right: 10px;	
	
}
.mr5 {
	margin-right: 5px;	
	
}
.ml10 {
	left-right: 10px;
}
.ml15 {
	left-right: 15px;
}
.r-float {
	text-align: right;
	float: right;
}
.max-width1200 {
	width: 1400px;
	clear: both;
	overflow: hidden;
}
.index-body {
  max-height: 500px;
  overflow-y: auto;
}

/*	treeview
------------------------------------------------------------------------------*/

.treeview, .treeview ul { 
	padding: 0;
	margin: 0;
	list-style: none;
}

.treeview ul {
	margin-top: 4px;
}

.treeview .hitarea {
	background: url(../img/images/treeview-default.gif) -64px -25px no-repeat;
	height: 16px;
	width: 16px;
	margin-left: -16px;
	float: left;
	cursor: pointer;
}
/* fix for IE6 */
* html .hitarea {
	display: inline;
	float:none;
}
.rb_right {
	float: right;
	width: 350px;
}
.rb_left {
	float: left;
	width: 410px;
}
.rb_waku {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}

.treeview li { 
	margin: 0;
	padding: 3px 0pt 3px 16px;
}

.treeview a.selected {
	background-color: #eee;
}

#treecontrol {
	padding: 3px;
}

.treeview .hover { color: red; cursor: pointer; }

.treeview li { background: url(../img/images/treeview-default-line.gif) 0 0 no-repeat; }
.treeview li.collapsable, .treeview li.expandable { background-position: 0 -176px; }

.treeview .expandable-hitarea { background-position: -80px -3px; }

.treeview li.last { background-position: 0 -1766px }
.treeview li.lastCollapsable, .treeview li.lastExpandable { background-image: url(../img/images/treeview-default.gif); }  
.treeview li.lastCollapsable { background-position: 0 -111px }
.treeview li.lastExpandable { background-position: -32px -67px }

.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea { background-position: 0; }

.treeview-red li { background-image: url(../images/treeview-red-line.gif); }
.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable { background-image: url(../img/images/treeview-red.gif); } 

.treeview-black li { background-image: url(../images/treeview-black-line.gif); }
.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable { background-image: url(../img/images/treeview-black.gif); }  

.treeview-gray li { background-image: url(../images/treeview-gray-line.gif); }
.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable { background-image: url(../img/images/treeview-gray.gif); } 

.treeview-famfamfam li { background-image: url(../images/treeview-famfamfam-line.gif); }
.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable { background-image: url(../img/images/treeview-famfamfam.gif); } 

.treeview .placeholder {
	background: url(../img/images/ajax-loader.gif) 0 0 no-repeat;
	height: 16px;
	width: 16px;
	display: block;
}

.filetree li { padding: 3px 0 2px 16px; }
.filetree span.folder, .filetree span.file { padding: 1px 0 1px 16px; display: block; }
.filetree span.folder { background: url(../img/images/folder.gif) 0 0 no-repeat; }
.filetree li.expandable span.folder { background: url(../images/folder-closed.gif) 0 0 no-repeat; }
.filetree span.file { background: url(../img/images/file.gif) 0 0 no-repeat; }

/*		COLOR
-------------------------------------------------------------------------------------*/
.mark-color01 {
	font-size: 12px;
	text-align: center;
	background-image: url(../img/color/01.gif);
}
.mark-color02 { 
	background-image: url(../img/color/02.gif);
	font-size: 12px;
	text-align: center;
}
.mark-color03 { 
	background-image: url(../img/color/03.gif);
	font-size: 12px;
	text-align: center;
}
.mark-color04 {
	background-image: url(../img/color/04.gif);
	font-size: 12px;
	text-align: center;
 }
.mark-color05 { 
	background-image: url(../img/color/05.gif);
	font-size: 12px;
	text-align: center;
 }
.mark-color06 { 
	background-image: url(../img/color/06.gif);
	font-size: 12px;
	text-align: center;
 }
.mark-color07 { 
	background-image: url(../img/color/07.gif);
	font-size: 12px;
	text-align: center;
 }
.mark-color08 { 
	background-image: url(../img/color/08.gif);
	font-size: 12px;
	text-align: center;
 }
.mark-color09 { 
	background-image: url(../img/color/09.gif);
	font-size: 12px;
	text-align: center;
 }
.mark-color10 {
	background-image: url(../img/color/10.gif);
	font-size: 12px;
	text-align: center;
 }
 
 
#back-to-top{
	display:none;
	position: fixed;
    bottom: 85px;
    right: 20px;
    height: 30px;
    width: 50px;
    padding: 8px 0 12px 0;
    text-align: center;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    background: #fdd824;
    line-height: 1.5em;
    border-radius: 50px;
	
	background: #F7CA04; /* Old browsers */
	text-shadow:1px 1px 0 #fff;
}
 #back-to-top:hover{
	/*background-color:#fdd824;*/
	-ms-filter:"alpha(opacity=80)";
	filter:alpha(opacity=80);
	opacity:.8;

	
}#explore h3{margin:0 0 10px 0}ul.the-icons{margin:0}ul.the-icons li{display:inline;padding:10px 20px;margin:0;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}ul.the-icons li:hover{background:#eee}
 
 
/*		DATABASE SET
-----------------------------------------------------------*/
.db.sep4 {
	width: 194px;
	float: left;
	padding-right: 10px;
}
.db.sep5 {
	width: 153px;
	float: left;
	padding-right: 10px;
}
.db.sep2 {
	width: 316px;
	float: left;
	padding-right: 10px;
}
.db table {
  border-collapse: separate;
  *border-collapse: collapsed;

  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;	
		  		-webkit-box-shadow: 1px 2px 3px 0px #E7E7E7; /* Safari, Chrome用 */
	-moz-box-shadow: 1px 2px 3px 0px #E7E7E7; /* Firefox用 */
	box-shadow: 1px 2px 3px 0px #E7E7E7; /* CSS3 */
	
}
.db p {
	margin: 0px;
	padding: 0px;
}
.db.title {
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;	
}

/*	OPEN
-----------------------------------------------------------*/
#search-view {
	display:none;
	width:338px;
	top:0px;
	z-index: 18;
	position: relative;
	list-style-type:none;
	float:right;
	border-radius:4px;
	  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
	text-shadow:0px 1px 0px #fff;
	right: 0px;
	background-color: #FFF;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
	margin-top: -15px;
	margin-right: 80px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#fw-search{
	display:none;
	width:228px;
	top:0px;
	z-index: 18;
	position: relative;
	list-style-type:none;
	float:right;
	 border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	text-shadow:0px 1px 0px #fff;
	right: 0px;
	background-color: #FFF;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	margin-top: -5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#fw-item{
	display:none;
	width:300px;
	top:180px;
	left:40%;
	z-index: 24;
	position: absolute;
	list-style-type:none;
	float:left;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}
#fw-ivnear{
	display:none;
	width:320px;
	top:180px;
	left:60%;
	z-index: 26;
	position: absolute;
	list-style-type:none;
	float:left;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}
#fw-memo{
	display:none;
	width:660px;
	top:185px;
	left:30%;
	z-index: 25;
	position: absolute;
	list-style-type:none;
	float:left;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}
#fw-tabmemo{
	display:none;
	width:800px;
	top:185px;
	left:23.5%;
	z-index: 25;
	position: absolute;
	list-style-type:none;
	float:left;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}
#fw-sum{
	display:none;
	width:770px;
	top:175px;
  	left:23%;
	z-index: 9;
	margin: 0px;
	position: absolute;
	list-style-type:none;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-color: #eee;
}

#fw-materia{
	display:none;
	width:660px;
	top:270px;
	left:30%;
	z-index: 15;
	position: absolute;
	list-style-type:none;
	float:left;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}
#fw-psm{
	display:none;
	width:660px;
	top:270px;
	left:30%;
	z-index: 14;
	position: absolute;
	list-style-type:none;
	float:left;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}
#fw-leave{
	display:none;
	width:770px;
	top:190px;
  	left:23%;
	z-index: 26;
	margin: 0px;
	position: absolute;
	list-style-type:none;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}
#fw-id-item{
	display:none;
	width:770px;
	top:250px;
  	left:23%;
	z-index: 27;
	margin: 0px;
	position: absolute;
	list-style-type:none;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}
#fw-login{
	display:none;
	width:770px;
	top:175px;
  	left:23%;
	z-index: 28;
	margin: 0px;
	position: absolute;
	list-style-type:none;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}

#fw-itemmaterial{
	display:none;
	width:920px;
	top:480px;
  	left:25%;
	z-index: 28;
	margin: 0px;
	position: absolute;
	list-style-type:none;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}
#fw-comparison{
	display:none;
	width:730px;
	top:470px;
  	left:25%;
	z-index: 28;
	margin: 0px;
	position: absolute;
	list-style-type:none;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}

#fw-recipenear{
	display:none;
	width:320px;
	top:300px;
	left:60%;
	z-index: 26;
	position: absolute;
	list-style-type:none;
	float:left;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}

#fw-itemnear{
	display:none;
	width:320px;
	top:180px;
	left:60%;
	z-index: 26;
	position: absolute;
	list-style-type:none;
	float:left;
	border:1px solid #bbb;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0px 3px 5px #666;
	-moz-box-shadow:0px 3px 5px #666;
	-webkit-box-shadow:0px 3px 5px #666;
	text-shadow:0px 1px 0px #fff;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #eee;
}

.fw a.close{
	position:absolute;
	right:20px;
	top:2px;
}
.fw a.close img{
	border:none;
}
.fw dl{
	width:100%;
	height:100%;
	margin:0;
}
* html .fw dl{
	background:none;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='./img/window/floatWindow.png',sizingMethod='scale');
}
* html .fw dl *{
	position:relative;
}
.fw dl dt{
	height:25px;
	cursor:move;
	font-size: 14px;
	text-decoration: none;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: normal;
	padding-top: 8px;
	padding-right: 8px;
	padding-left: 8px;
}
.fw dl dd{
	margin:0;
	background-color: #FFF;
	padding: 0px;
}

.si.view {
	max-height: 400px;
	overflow-y: auto;
	height: 400px;
	background-color: #FFF;
}
.si.pview {
	max-height: 400px;
	overflow-y: auto;
	height: 400px;
	background-color: #FFF;
}
.si.pview.left-padding {
	padding-right: 10px;
	padding-left: 10px;
}
.si.pview-all {
	max-height: 600px;
	overflow-y: auto;
	height: 550px;
	background-color: #FFF;
	margin-top: 6px;
}
.si.sellect {
	max-height: 395px;
	overflow-y: auto;
	height: 395px;
		background-color: #FFF;
}
.sis.view {
	max-height: 500px;
	overflow-y: auto;
	height: 500px;
	background-color: #FFF;
}
.sis.pview {
	max-height: 550px;
	overflow-y: auto;
	height: 550px;
	background-color: #FFF;
}
.sis.pview-all {
	max-height: 700px;
	overflow-y: auto;
	height: 700px;
	background-color: #FFF;
}
.sis.sellect {
	max-height: 495px;
	overflow-y: auto;
	height: 495px;
		background-color: #FFF;
}
.ifclear {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
	overflow-y: auto;
}
.both-passing {
	padding-right: 10px;
	padding-left: 10px;	
}

/*	POPUPPER
---------------------------------------------------*/
.popupper-set {
	margin: 5px;
}
.popupper-waku {
	overflow: hidden;
	margin-bottom: 5px;
}
.popupper-pad {
	padding: 5px;	
	
}

/*
 *  Part of Tipped - The jQuery Tooltip
 *  http://projects.nickstakenburg.com/tipped
 *
 *  Documentation:
 *  http://projects.nickstakenburg.com/tipped/documentation/skins
 *
 *  IMPORTANT!:
 *  It's recommended to add CSS for custom skins in a separate file,
 *  that way this file can be updated without losing your own skins.
 */
 
/* Font styling for all skins */
.t_ContentContainer {
  color: #333;
  font-size: 11px;
  line-height: 17px;
  padding: 10px;
}

/* Skins with a different font color */
.t_Content_black,
.t_Content_dark,
.t_Content_gray {
  color: #efefef;
}

/* Styling links so they are visible no matter is defined on the page behind */
.t_ContentContainer a,
.t_ContentContainer a:hover {
  color: #8e8e8e;
  text-decoration: none;
  background: none;
  border: 0;
}
.t_ContentContainer a:hover {
  text-decoration: underline;
}

/* Some skins need different link colors for visibility */
.t_Content_dark a, .t_Content_dark a:hover,
.t_Content_black a, .t_Content_black a:hover {
  color: #ccc;
}
.t_Content_gray a, .t_Content_gray a:hover { color: #232323; }



/* RGB */
.t_Content_red,
.t_Content_green,
.t_Content_blue {
  color: #efefef;
  font-size: 11px;
  line-height: 17px;
  padding: 10px;
}

.t_Content_red a,
.t_Content_red a:hover,
.t_Content_green a,
.t_Content_green a:hover,
.t_Content_blue a,
.t_Content_blue a:hover {
  text-decoration: none;
  background: none;
  border: 0;
  color: #ccc;
}
.t_Content_red a:hover,
.t_Content_green a:hover,
.t_Content_blue a:hover {
  text-decoration: underline;
}


/* tiny */
.t_Content_tiny {
  color: #efefef;
  font-size: 11px;
  line-height: 16px;
  padding: 6px 9px;
}
.t_Content_tiny a,
.t_Content_tiny a:hover {
  color: #b3b3b3;
  text-decoration: none;
  background: none;
  border: 0;
}


/*
 * Layout (DON'T MODIFY BELOW!)
 */
.t_Tooltip {
  margin: 0;
  padding: 0;
  position: absolute;
  overflow: hidden;
  background-color: transparent;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.t_Tooltip.t_hidden { opacity: 0; }
.t_Tooltip.t_visible { opacity: 1; }

.t_Skin {
  position: absolute;
  top: 0;
  left: 0;
}
.t_Skin * { zoom: 1; } /* IE7 */

.t_Bubble {
  position: relative;
}

.t_Background,
.t_Stem { position: absolute; }

.t_Close {
  position: absolute;
  cursor: pointer;
  top: 0;
}

.t_CloseButtonShift {
  position: relative;
  overflow: hidden;
  float: left;
}
.t_CloseState {
  position: absolute;
  margin: 0;
  padding: 0;
  left: 0;
}

.t_Content {
  position: absolute;
  top: 0;
  left: 0;
}

.t_iframeShim {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  zoom: 1;
  filter: alpha(opacity=0);
  opacity: 0;
}

/*
 * Shadow
 */
.t_Shadow {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.t_Shadow .t_ShadowInnerWrapper{
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
}

.t_ShadowBubble {
  position: relative;
  padding: 0;
  margin: 0;
  float: left;
}
.t_ShadowBackground,
.t_ShadowStem { position: absolute; }
.t_ShadowBackground *, .t_ShadowStem * { float: left; }

 
.t_CloseButtonShadow {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}


.t_UpdateQueue {
  position: absolute;
  top: -15000px;
  left: -15000px;
  width: 5000px;
  height: 5000px;
  visibility: hidden;
}
.t_UpdateQueue .t_Tooltip,
.t_UpdateQueue .t_Content {
  position: relative;
  overflow: visible;
  float: left;
  top: auto;
  left: auto;
  width: 100%;
}
.t_Tooltip .t_ContentContainer {
  float: left;
  clear: both;
  position: relative;  
}
.t_UpdateQueue .t_ContentContainer {
  position: absolute;
  top: 0;
  left: 0;
}

/* カラー
------------------------------------------------------------------*/
.color_style01 {
	color: #960;	
}
.color_style02 {
	color: #06F;	
}
.color_style03 {
	color: #F60;	
}
.color_style04 {
	color: #A68500;
}
.color_style05 {
	color: #63F;	
}
.color_style06 {
	color: #FF0080;	
}
.color_style07 {
	color: #008000;
}
.color_style08 {
	color: #F3C;	
}
.color_style09 {
	color: #F00;
}

.login-fields {
	
}

.login-fields .field {
	margin-bottom: 1.25em;
}

.login-fields label {
	display: none;
}

.login-fields input {
	font-family: 'Open Sans';
	font-size: 13px;
	color: #8e8d8d;
	padding: 11px 15px 10px 50px;
	background-color: #fdfdfd;
	width: 255px;
	display: block;
	margin: 0;
	box-shadow: inset 2px 2px 4px #f1f1f1;
}

.username-field { background: url(../../img/signin/user.png) no-repeat; }

.password-field { background: url(../../img/signin/password.png) no-repeat; }


.login-actions {
	float: left;
	
	width: 100%;
	
	margin-top: -1em;
	margin-bottom: 1.25em;
}

.login-social {
	float: left;
	
	padding: 10px 0 15px;
	
	border: 1px dotted #CCC;
	border-right: none;
	border-left: none;	
}

span.login-checkbox {
	float: left;
	margin-top: 31px;
}

span.login-checkbox > input[type='checkbox'] {
    opacity: 0;
    float: left;
    width: 15px;
}

span.login-checkbox > input[type='checkbox'] + label {    
    clear: none;
    
	height: 15px; 
	display: block;
    padding: 0 0 0 22px;
    margin: 0;
    
    font-size: 12px;
    line-height: 1.2em;
    
    background: url(../../img/signin/check.png) no-repeat 0 0;
    
    cursor: pointer;
}

span.login-checkbox > input[type='checkbox']:checked + label {	
	background-position: 0 -15px;
}

/** Text Under Box**/
.login-extra {
	display: block; 
	width: 300px; 
	margin: 1.5em auto;
	 
	text-align: center;
	line-height: 19px; 
	
	text-shadow: 1px 1px 0px #fff; 	
}


.account-container h1 {
	margin-bottom: .4em;
	
	color: #f90;
}

/** Buttons **/
.twitter, .fb {
	position: relative;
	height: 32px;
	width: 157px;
	display: block;
	background: url(../../img/signin/twitter_btn.png) no-repeat;
	margin-bottom: 10px;
}

.fb {
	width: 162px; 
	
	background: url(../../img/signin/fb_btn.png) no-repeat; 	
}

.twitter:active, .fb:active {
	top: 1px;
}

.twitter:hover, .fb:hover {
	background-position: 0 -32px;
}

.twitter a, .fb a {
	padding: 5px 0 0 35px; 
	text-shadow: -1px -1px 0px rgba(0,0,0,.3); 
	color:#fff; 
	font-weight: bold; 
	font-size: 11px; 
	height: 32px; 
	display: block;	
}

.fb a {
	padding: 5px 0 0 31px; 
	
}

.twitter, .fb {
	display: inline-block;
}

.twitter a:hover, .fb a:hover {
	color: #FFF;
	text-decoration: none;
}

.register .login-social {
	margin-bottom: 1em;
}

.register .login-actions {
	margin-bottom: 0;
}

.register .login-fields input {
	width: 299px;
	padding-left: 6px;
}

.register h1 {
	color: #444;
}

.register span.login-checkbox {
	position: relative;
	top: -6px;
	
	width: 200px;
}

.register span.login-checkbox > input[type="checkbox"] + label {
	
	position: relative;
	
	line-height: 1.3em;
}


/* checkboxes
------------------------------------------------------------------*/

/* line 3, checkboxes.css.scss */
input[type="checkbox"].checky {
  display: none; }
  /* line 6, checkboxes.css.scss */
  input[type="checkbox"].checky:checked + label.checky span {
    margin-left: -6px; }

/* line 11, checkboxes.css.scss */
label.checky {
  vertical-align: middle;
  cursor: pointer;
  width: 40px;
  height: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 0px rgba(255, 255, 255, 0.1), 1px 0px 0px #111111, -1px 0px 0px #111111, 0px -1px 0px #111111, 0px 1px 0px #111111;
  -moz-box-shadow: 0px 2px 0px rgba(255, 255, 255, 0.1), 1px 0px 0px #111111, -1px 0px 0px #111111, 0px -1px 0px #111111, 0px 1px 0px #111111;
  box-shadow: 0px 2px 0px rgba(255, 255, 255, 0.1), 1px 0px 0px #111111, -1px 0px 0px #111111, 0px -1px 0px #111111, 0px 1px 0px #111111;
  display: inline-block;
  margin-bottom: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px; }
  /* line 23, checkboxes.css.scss */
  label.checky span {
    -webkit-transition: margin-left 0.3s;
    -moz-transition: margin-left 0.3s;
    -o-transition: margin-left 0.3s;
    transition: margin-left 0.3s;
    background: url('../img/checkbox.png') no-repeat;
    display: block;
    height: 100%;
    margin-left: -30px; }
  /* line 31, checkboxes.css.scss */
  label.checky.green span {
    background: url('../img/checkbox_green.png') no-repeat; }

/* line 36, checkboxes.css.scss */
.checky-label-left {
  margin-right: 10px; }

/* line 40, checkboxes.css.scss */
.checky-label-right {
  margin-left: 10px; }
  
  
  
  
.gl_icon {
	position: relative;
	width: 64px;
	height: 64px;
	display: block;
	float: left;
}
.gl_icon-1 {
 width: 64px;
 height: 64px;
}
.gl_icon-2 {
 position: absolute;
 top: 0px;
 left: 0px;
 width: 64px;
 height: 64px;
}
.gl_icon-100 {
	position: relative;
	width: 100px;
	height: 100px;
	display: block;
	float: left;
}
.gl_icon-1-100 {
 width: 100px;
 height: 100px;
}
.gl_icon-2-100 {
 position: absolute;
 top: 0px;
 left: 0px;
 width: 100px;
 height: 100px;
}
.gl_map {
	height: 200px;
	width: 200px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 2px;
	background-color: #FFF;
	float: left;
}

.search-head-set {
	
}
.search-head-set button {
	float: right;
}
.right_set_twitter {
	position: relative;
	right: 20px;
	float: right;
	display: inline;
	margin-right: -88px;
}
.right_set_google {
	position: relative;
	right: -5px;
	float: right;
	display: inline;
}
.role-img{
    position:relative;
    width:500px;
    margin:0 auto;
}
.role-img img {
    position:absolute;
    left:0;
    top:0;
}
.bottom15 {
	margin-bottom: 15px;	
	
}
.table-padding {
	padding: 5px;	
	
}
#view-search-view {
	margin-top: -6px;

}
.nq_item {

	padding: 5px;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;	
}
.hq_item {
	padding: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: #FFFFEC;
}
.view-gat {
	height: 320px;	

}
.view-gatmap {
	height: 378px;
}
.view-levemap {
	height: 378px;
}


#view-pricesum {
	clear: both;
	width: 100%;
	margin-top: 5px;	
}

.container-set:after {
    content: '';
    display: block;
    clear: both;
}
.well-clear {
	min-height: 20px;
	padding: 8px;
	margin-bottom: 10px;
	background-color: #f5f5f5;
	border: 1px solid #eee;
	border: 1px solid rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	width: 212px;
	float: right;
}
.well-clear:after {
    content: '';
    display: block;
    clear: both;
}
.table-padding-dt {
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	/* min-height: 400px; */
}

.table-padding-ul {
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
}

.table-padding-waku {
	padding: 8px;
}
.pointer-hand {
	cursor: hand; cursor:pointer;
	
}
.ls-img {
	height: 16px;
	width: 16px;	
	
}
.img-class {
	height: 16px;
	width: 16px;	
	
}
.well-equip-clear {
	min-height: 20px;
	background-color: #f5f5f5;
	border: 1px solid #eee;
	border: 1px solid rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 14px;
	padding-left: 8px;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 0px;
}


/* ソーシャルアイコン
------------------------------------------------------------------*/
.social_main {
	position: relative;
	background-color: #FFF;
	margin-right:-8px;
}
.social_fb {
    position: absolute;
    top: 0px;
    right: 230px;
}

.social_google {
    position: absolute;
    top: 0px;
    right: 136px;
}

.social_tw {
    position: absolute;
    top: 0px;
    right: 92px;
}
.social_hatena {
	position: absolute;
    top: 0px;
    right: 0px;
}

.loading-memo {
	margin: auto;
	width: 475px;
	padding-top: 180px;
	padding-bottom: 250px;
	padding-left: 385px;
}
.loading-sum {
	margin: auto;
	width: 410px;
	padding-top: 160px;
	padding-bottom: 160px;
	padding-left: 320px;
}
.loading-mylist {
	margin: auto;
	width: 410px;
	padding-top: 160px;
	padding-bottom: 160px;
	padding-left: 320px;
}
.loading-recipes {
	margin: auto;
	width: 530px;
	padding-top: 180px;
	padding-bottom: 250px;
	padding-left: 385px;
    border: 1px solid #ccc;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;

}
.loading-search {
	margin: auto;
	width: 530px;
	padding-top: 180px;
	padding-bottom: 250px;
	padding-left: 385px;
    border: 1px solid #ccc;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;

}
.loading-equip {
	margin: auto;
	width: 530px;
	padding-top: 180px;
	padding-bottom: 250px;
	padding-left: 385px;

}
.padding-bottom3 {
	margin-bottom: 3px;
}

.clear-left {
	clear: left;	
}

.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

img.member-box-avatar {
    height: 46px;
    width: 46px;
    padding: 1px;
    margin-bottom: 5px;
    float: left;
}
.box-height-usr {
	min-height:80px;
	height:auto !important;
	height:80px;	
}
.box .box-container-toggle-menu {
    border-top: 1px solid #DDD;
	border-left: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
	
    border-radius: 0px 0px 3px 3px;

}

.box-content-menu {
    padding: 0px;
    background-color: #FFF;
}
.shortcuts-menu {
    text-align: center;
    padding-top: 0px;
}

.shortcuts-menu .shortcut-menu {
    width: 55px;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    background: #FFF none repeat scroll 0% 0%;
    padding: 0px;
    margin: 0px;
}
.shortcuts-menu .shortcut-menu .shortcut-icon {
    margin-top: 0.33em;
    margin-bottom: 0.33em;
    font-size: 32px;
    color: #FE8433;
}
.shortcuts-menu .shortcut-menu:hover {
    background: #FFEDD2 none repeat scroll 0% 0%;
}
.shortcuts-hr {
	margin: 0px;
}

.box .box-container-toggle-orange {
    border-left: 1px solid #F90;
    border-right: 1px solid #F90;
    border-bottom: 1px solid #F90;
    border-radius: 0px 0px 3px 3px;
}
.ls-icon {
	margin-left:10px;
}


.fix-tab-base {
    /* padding: 5px 5px 1px 5px; */
    padding-bottom: -5px;
    /* border: 1px solid #ddd; */
    margin-bottom: 10px;
    /* border-radius: 5px; */
    margin-right: 8px;
    margin-left: 8px;
}
#e-time {
	font-size:20px;
	color: #900;
}
#l-time {
	font-size:20px;
	color: #900;
}
#ga-accordion .accordion {
    margin-bottom: 0px;
}
.TimeLeft {
	font-size:14px;
	color: #000;
	
}
.et-waku {
	margin-top: 7px;
}
.progress {
    height: 18px;
    overflow: hidden;
    background-color: #F7F7F7;
    background-image: -moz-linear-gradient(center top , #F5F5F5, #F9F9F9);
    background-repeat: repeat-x;
    border-radius: 4px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1) inset;
    margin-bottom: 0px;
}
.margin-left10 {
	margin-left:7px;
}

.fix-70 {width:70px;float:left;}
.fix-ga {width:690px;float:left;}
.fix-float {float:left;margin-left:7px;}
.ss-image {
	width:98px;height:58px;margin-right: 6px;
}
.ss-image-tooltip {
	width:98px;height:58px;margin-right: 6px;
}
.ss-view-padding {
	padding:20px;
}
.ss-all-image {
	width:200px;height:110px;margin-left: 10px;margin-top:8px;margin-bottom:8px;
}
.ss-all-image-sp {
	width:100%;margin-left: 10px;margin-top:8px;margin-bottom:8px;
}
.timer,
.timer-1 {margin:0 0 40px 0;}
.timer div,
.timer-1 div {display:inline-block;}

.iv-waku-tr-10 {
	padding-top:10px;
	padding-left:10px;
	
}
.padding-bottum10 {
	padding-bottom:10px;
}
.item_name_crip:active {
	color:#f60;
}

/*
 * Morris Charts 
 */
.morris-hover{position:absolute;z-index:1000;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255, 255, 255, 0.8);border:solid 2px rgba(230, 230, 230, 0.8);font-family:sans-serif;font-size:12px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;}
.morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;}

