@charset "utf-8";

/*=================================================
 기본 & 공통 설정
=================================================*/
* {
  margin : 0;
  padding: 0;
  box-sizing: border-box;
}

/* 변수 선언 */
:root {
  --bgColor1: #2C3E50; /* #991349; 탑영역 배경*/
  --bgColor2: #3498DB; /* darkblue; 학생목록(선택학생), 입력(제목), 본문 타이틀 박스 배경(ActMng) */
  --bgColor3: #E67E22; /* 학생목록(롤오버) */
  --bgColor4: #408c99; /* 본문 타이틀 박스 외곽선 */
  
  --bgColor5: #ECF0F1;
  --bgColor6: #1ABC9C; /*green;*/
  --buttonColor1: #599bb3;
  --buttonColor2: #408c99;
}

a:link {color:#000000; text-decoration: none;}
a:visited {color:#000000; text-decoration: none;}
a:hover {color:#0918e6; text-decoration: none;}
a:active {color:#0918e6; text-decoration: none;}

ul {
  list-style: none;
}

img {
  border-style: hidden;
}

/*큰 제목*/
h1 {
  display: inline-block;
  font-size: 15px;
  /*border: 1px solid red;*/
}

/*소 제목*/
h2 {
  display: inline-block;
  font-size: 13px;
  /*border: 1px solid red;*/
}

/*일반 글씨*/
h3 {
  display: inline-block;
  font-size: 10px;
  /*border: 1px solid red;*/
}

/*작은 글씨*/
h4 {
  display: inline-block;
  font-size: 8px;
  /*border: 1px solid red;*/
}

/*--------------------------------------------------------------
최상위 전체 레이아웃
----------------------------------------------------------------*/
#layoutContainer {
  display: block;
  width:1200px;
  min-height: 600px;
  margin: 0px auto;  /*내용을 화면 가운데 배치하도록 좌우 마진 auto */
  /*background-color: #df1515;*/
  /*border: 1px solid rgb(255, 0, 0);*/
}

/*--------------------------------------------------------------
Top 영역
----------------------------------------------------------------*/
#topContainer {  
  /* border: 1px solid rgb(102,102,102); */
  width:100%;
  min-height:90px;
  background-color: var(--bgColor1);

  #logoBox {
    display: flex;
    float: left;
    width: 500px;
    height: 90px;
    padding: 10px 20px 10px 20px;  /*위, 오른쪽, 아래, 왼쪽 */
    align-items: center;    /*세로 중앙 정렬*/
    /*border: 1px solid rgb(255, 255, 255);*/
  }  

  #userInfoBox {
    display: flex;
    float: left;
    width:500px;
    height:90px;
    text-align: right;
    font-weight: bold;
    font-size: 12pt;
    color: #FFFFFF;
    justify-content: right;    /*가로 중앙 정렬*/
    align-items: center;    /*세로 중앙 정렬*/
    /*border: 1px solid rgb(255, 255, 255);*/

    a, a:link, a:visited, a:active {
      color: #ffffff;
    }
    a:hover {      
      color: #b6cefc;
    }      
  }

  #logoutBox {
    display: flex;
    float: left;
    width: 200px;
    height: 90px;
    justify-content: center;    /*가로 중앙 정렬*/
    align-items: center;    /*세로 중앙 정렬*/
    /*border: 1px solid rgb(255, 255, 255);*/
  }

  /* 메인메뉴 시작 ----------------------------*/
  #menuBox {
    clear: both;
    display: inline-block;
    width: 100%;
    background-color: #000000;    
  }

  #mainMenu {    
    display: block;
    margin: 0;
    padding: 0;
  }

  #mainMenu > li {
    float: left;
    display:block;    
    width:180px;
    height:50px;
  }

  #mainMenu > li > a {
    display: block;
    width: 180px;
    font-size: 11pt;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding-top: 15px;
    padding-bottom: 14px;
    border-right: 1px solid rgba(255,255,255,0.15);
    text-shadow: 1px 1px 1px rgba(100, 100, 100, 0.2);
  }    

  #subMenu {
    display: block;
    position: absolute;
    margin: 0;
    padding: 0;
    background: #1e2024;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease-in;
  }

  #subMenu > li {
    width: 180px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  #subMenu > li > a {
    display: block;
    width: 180;
    font-size: 11pt;
    padding: 12px 0px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    text-decoration: none;
  }

  #subMenu > li > a:hover {
    color: #fa1a74;
    font-weight: 600;
  }

  #mainMenu > li:hover {
    background-color: green;
  }

  #mainMenu > li:hover #subMenu {
    opacity: 1;
    visibility: visible;
  }
  /* 메인메뉴 끝 ----------------------------*/

  #serverTimeBox {
    float: right;
    display:flex;      
    width:200px;
    height:50px;
    /*background-color: #b93636;*/    
    color: #ffffff;
    justify-content: center;    /*가로 중앙 정렬*/
    align-items: center;    /*세로 중앙 정렬*/
  }
}

/*--------------------------------------------------------------
페이지 타이틀 및 네비게이션 영역
----------------------------------------------------------------*/
#pageTitle {
  width: 100%;
  padding: 5px 5px;
  border: 1px solid rgb(102, 102, 102);
  box-shadow: 0px 1px 1px 0px gray; 
  font-size: 12pt;
  font-weight: Bold;
  vertical-align: middle;
}

/*--------------------------------------------------------------
Body 영역
----------------------------------------------------------------*/
/* body 최상위 틀 -----------------------*/
#bodyContainer {
  clear: both;
  display:inline-block;
  width:100%;
  min-height: 600px;
  padding-top: 20px;
}


/* 분할하지 않을 때 ------------------------------*/
#contentBody {  
  width: 100%;
  padding-bottom: 30px;
  text-align: center;
  /*border: 1px solid #000;*/
}


/* 왼쪽, 오른쪽 분할 ------------------------------*/
#leftContainer {
  float: left;
  display: block;
  width:15%;
  /*justify-content: left;    /*가로 중앙 정렬*/
  /*align-items: top;    /*세로 중앙 정렬*/
  /* border: 1px solid rgb(102,102,102); */
  /*background-color: rgb(19, 163, 142);*/
}

#rightContainer {
  float: left;
  display: block;    
  width:85%;
  padding-left: 20px;
  padding-right: 10px;
  padding-bottom: 30px;
  /*justify-content: center;    /*가로 정렬*/
  /*align-items: top;    /*세로 정렬*/
  /* border: 1px solid rgb(102,102,102); */
  /*background-color: rgb(243, 143, 239);*/
}


/*--------------------------------------------------------------
Footer 영역
----------------------------------------------------------------*/
#footerContainer {
  clear: both;
  display:flex;  
  width:100%;
  height:100px;
  justify-content: center;    /*가로 중앙 정렬*/
  align-items: center;    /*세로 중앙 정렬*/
  font-size: 12px;
  color: #FFFFFF;  
  background-color: rgb(0, 0, 0);
  /* border: 1px solid rgb(102,102,102); */
}


/*=================================================
 FORM 스타일
=================================================*/
/* Button */
.smallFormButton {
  border-radius:3px;
	display:inline-block;
	cursor:pointer;
	color:#000000;
	font-size:10pt;
	padding: 4px 4px;
	text-decoration:none;
  vertical-align: middle;
  border: 1px solid rgb(126, 126, 126);
}
.smallFormButton:hover {
  font-weight: bold;
  border: 1px solid rgb(0, 0, 0);
}

.smallFormCheckbox {
  display:inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  margin-bottom: 3px;
  text-align: center; 
  vertical-align: middle;
  background: #fafafa;
  border: 1px solid #cacece;
  border-radius : 3px;  
}

.defaultFormButton {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #599bb3), color-stop(1, #408c99));
	background:-moz-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-webkit-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-o-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-ms-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#599bb3', endColorstr='#408c99',GradientType=0);
	background-color:#599bb3;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:12pt;
	font-weight:bold;
	padding:3px 6px;
	text-decoration:none;
	text-shadow:0px 1px 0px #3d768a;
}
.defaultFormButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #408c99), color-stop(1, #599bb3));
	background:-moz-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-webkit-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-o-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-ms-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#408c99', endColorstr='#599bb3',GradientType=0);
	background-color:#408c99;
}
.defaultFormButton:active {
	position:relative;
	top:1px;
}

/* Text input form */
.defaultFormText[type=text], .defaultFormText[type=password],
.defaultFormText[type=tel], .defaultFormText[type=email],
.defaultFormText[type=search] {
	font-size: 12pt;
	border:1px solid #aaa;
	border-radius:4px;
	outline:none;
	padding:5px;
	box-sizing:content-box;
	transition:.3s;
}
.defaultFormText[type=text]:focus, .defaultFormText[type=password]:focus,
.defaultFormText[type=tel]:focus, .defaultFormText[type=email]:focus,
.defaultFormText[type=search]:focus {
	border-color:dodgerBlue;
	box-shadow:0 0 3px 0 dodgerBlue;
}


/* Textarea */
.defaultTextarea {
  width: 95%;
  height: 180px;
  padding: 10px;
  font-size: 11pt;
  line-height: 1.5;
	border:1px solid #ccc;
	border-radius:4px;
	outline:none;
	box-sizing:content-box;
	transition:.3s;
}

/* Select box */
.defaultSelect {
  width: auto;
  height: 30px;
  text-align: left;
  font-size: 11pt;
  border:1px solid #aaa;
  border-radius:4px;
  margin-bottom: 5px;
  box-sizing:border-box;
}

.formSelect {
  width: auto;
  padding: 3px;
  font-size: 11pt;
  text-align: left;
  border:1px solid #aaa;
	border-radius:4px;
  box-sizing:content-box;
}
/* Radio box */
.defaultRadio {
  font-size: 20px;
	font-weight: bold;
	color: #000000;
}

/* Checkbox */
.smallCheckbox {
  display:inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  margin-bottom: 3px;
  text-align: center; 
  vertical-align: middle;
  background: #fafafa;
  border: 1px solid #cacece;
  border-radius : 3px;  
}

.defaultCheckbox {
  display:inline-block;
  width: 21px;
  height: 21px;
  margin: -2px 8px 0 0;
  text-align: center; 
  vertical-align: middle;
  background: #fafafa;
  border: 1px solid #cacece;
  border-radius : 3px;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
}


/* Filebox */
.defaultFilebox[type='file'] {  
	display: inline-block;
	padding: .5em .75em;
	color: #999;
	font-size: inherit;
	line-height: normal;
	vertical-align: middle;
	background-color: #fdfdfd;
	cursor: pointer;
	border: 1px solid #ebebeb;
	border-bottom-color: #e2e2e2;
	border-radius: .25em;
}


/* input form etc */
.formTextarea {
  font-size: 12pt;
	border:1px solid #aaa;
	border-radius:4px;
	outline:none;
	padding:5px;
	box-sizing:content-box;
	transition:.3s;
}

.formCheckbox {
  display:inline-block;
  width: 21px;
  height: 21px;
  margin: -2px 8px 0 0;
  text-align: center; 
  vertical-align: middle;
  background: #fafafa;
  border: 1px solid #cacece;
  border-radius : 3px;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
}



.formRadio {
  font-size: 20px;
	font-weight: bold;
	color: #000000;
}

.formFilebox {  
	display: inline-block;
	padding: .5em .75em;
	color: #999;
	font-size: inherit;
	line-height: normal;
	vertical-align: middle;
	background-color: #fdfdfd;
	cursor: pointer;
	border: 1px solid #ebebeb;
	border-bottom-color: #e2e2e2;
	border-radius: .25em;
}

/* Text */
.textDefault {
	border:1px solid black;
	padding: 3px;
	font-size: 11pt;
	color: #000000;
	text-decoration:none;
}

.textTitle {
	border:1px solid black;
	padding: 3px;
	background-color: var(--bgColor1);
	font-size: 11pt;
	color: #FFFFFF;
	text-align: center;
	font-weight: bold;
	text-decoration:none;	
}




