<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* Global Styles */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
	margin-left: auto;
	margin-right: auto;
	width: 92%;
	max-width: 960px;
	padding-left: 2.275%;
	padding-right: 2.275%;
	font-family: NanumGothic;

}


details {
    padding: 0 1rem;
    background-color: #eee;
    border: 1px solid #aaa;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
details:last-child {
    margin-bottom: 0;
}
summary::-webkit-details-marker {
    display: none;
}
summary {
    display: block;
    padding: 0.5rem;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    font-family: MaruBuriExtraLight;
}
summary::before,
summary::after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 2px;
    background-color: #777;
    right: 1rem;
    top: 1.1rem;
}
summary::after {
    transform: rotateZ(90deg);
}
details p {

}
details[open] summary::after {
    display: none;
}

#profile {
  border-radius: 5px;
  cursor: pointer;
	transition: 0.3s;}

#profile:hover {opacity: 0.7;}

#c_1 {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_1:hover {opacity: 0.7;}

#c_2{
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_2:hover {opacity: 0.7;}

#c_3 {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_3:hover {opacity: 0.7;}

#c_4 {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_4:hover {opacity: 0.7;}

#c_5 {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_5:hover {opacity: 0.7;}

#c_6 {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_6:hover {opacity: 0.7;}

#c_7 {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_7:hover {opacity: 0.7;}

#c_8 {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_8:hover {opacity: 0.7;}

#c_9 {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_9:hover {opacity: 0.7;}

#c_10 {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#c_10:hover {opacity: 0.7;}

#feuille:target{
  opacity:1;
  z-index:1;
}


ppl{
  /*display: none;*/
  transition: all ease 0.5s;
  opacity: 0;
  z-index:-1;
  position:fixed;
  top: 0;
  left:0;
  height:100%;
  width:100%;
  text-align: center;
  background-color: rgba(0,0,0,0.6);
  padding-top: 100px;
  overflow: auto;
}

.fermeture{
  text-decoration:none;
  color: #777;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  margin-bottom: -1px;
}

.preview {
	width: 100%;
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.row &gt; .col {
  padding: 0 8px;
}

.col {
  float: left;
  width: 25%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding: 10px 62px 0px 62px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);

}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 0 0 0 0;
  width: 80%;
  max-width: 1200px;
}

.slide {
  display: none;

}

.image-slide {
	width: 100%;
}

.modal-preview {
	width: 100%;
}

.dots {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

img.preview, img.modal-preview {
  opacity: 0.6;
}

img.active,
.preview:hover,
.modal-preview:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
} 

.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.previous,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.previous:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* 기본적으로 모든 mark 안의 링크에 대한 스타일 */
mark a {
    text-decoration: none;
    color: inherit;  /* mark의 색상을 그대로 상속 */
}

/* hover 시 밑줄 표시 */
mark a:hover {
    text-decoration: underline;
}

/* 마크 스타일 */
mark[data-tooltip] {
    cursor: help;
    position: relative;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 3px;
}
.custom-tooltip {
	font-family: 'NanumBarunGothicYetHangul';
    display: none;
    position: fixed;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 16px;
    max-width: 300px;
    z-index: 1000;
    pointer-events: none;
    animation: fadeIn 0.5s ease-in-out;
}
mark[data-tooltip]:hover {
    background-color: rgba(217, 15, 15, 0.1);
}

mark[data-type="semi"] {
	background-color:#f1f1f9; 
	border: 5px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 7px;
}

/* 무채색 마크 스타일 */
mark[data-type="w"] {
	background-color:#ccc; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 1px;
}
mark[data-type="w"]:hover {
    color: rgb(0, 0, 0); /* 검은색으로 변경 */
    text-decoration-color: currentColor;
	background: #ccc;
	border: 1px solid rgba(69, 69, 69, 0.9);
}
.custom-tooltip[data-type="w"] {
    background: rgba(69, 69, 69, 0.9);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* 빨강 마크 스타일 */
mark[data-type="r"] {
	background-color:#ffc4c4; 
	border: 1px solid translate;
	border-radius: 5px;
	padding: 1px;
	color: #333;
}
mark[data-type="r"]:hover {
    color: rgb(129, 0, 0); 
    text-decoration-color: currentColor;
	background: #ffc4c4; 
	border: 1px solid rgba(170, 0, 0, 0.9);
}
.custom-tooltip[data-type="r"] {
    background: rgba(170, 0, 0, 0.9);
    color: white;
    box-shadow: 0 2px 4px rgba(255, 0, 0, 0.9);
}
/* 파랑 마크 스타일 */
mark[data-type="b"] {
    background-color:#d1eaff;
    cursor: help;
	text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 1px;
	color: #333;
}
mark[data-type="b"]:hover {
    color: rgb(31, 105, 180); 
	background-color:#d1eaff;
	border: 1px solid rgba(0, 102, 204, 0.2);
}
.custom-tooltip[data-type="b"] {
    background: rgba(37, 146, 255, 0.9);
    color: white;
    box-shadow: 0 2px 4px rgb(0, 128, 255);
}
/* 오렌지 마크 스타일 */
mark[data-type="o"] {
	background-color:#fce4d6; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 1px;
}
mark[data-type="o"]:hover {
    color: rgba(234, 117, 0, 0.873);
    text-decoration-color: currentColor;
	background: #fce4d6;
	border: 1px solid rgba(234, 117, 0, 0.636);
}
.custom-tooltip[data-type="o"] {
    background: rgba(255, 165, 81, 0.9);
    color: white;
    box-shadow: 0 2px 4px rgb(253, 144, 41);
}
/* 초록 마크 스타일 */
mark[data-type="g"] {
	background-color:#e2efda; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 1px;
}
mark[data-type="g"]:hover {
	color: rgba(59, 154, 38, 0.9);
    text-decoration-color: currentColor;
	background: #e2efda; 
	border: 1px solid rgba(59, 154, 38, 0.9);
}
.custom-tooltip[data-type="g"] {
	background: rgba(59, 154, 38, 0.9);
    color: white;
    box-shadow: 0 2px 4px rgba(76, 240, 39, 0.9);
}
/* 보라 마크 스타일 */
mark[data-type="pp"] {
	background-color:#e6c5ff; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 1px;
}
mark[data-type="pp"]:hover {
    color: rgb(128, 16, 255); /* 검은색으로 변경 */
    text-decoration-color: currentColor;
	background: #e6c5ff; 
	border: 1px solid rgba(174, 23, 255, 0.9);
}
.custom-tooltip[data-type="pp"] {
    background: rgba(174, 23, 255, 0.9);
    color: white;
    box-shadow: 0 2px 4px rgba(138, 0, 212, 0.9);
}
/* 노랑 마크 스타일 */
mark[data-type="y"] {
	background-color:#ffed9a; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 1px;
}
mark[data-type="y"]:hover {
    color: rgba(133, 122, 0, 0.9);
    text-decoration-color: currentColor;
	background: #ffed9a; 
	border: 1px solid rgba(210, 193, 0, 0.9);
}
.custom-tooltip[data-type="y"] {
    background: rgba(255, 234, 1, 0.9);
    color: #484848;
    box-shadow: 0 2px 4px rgba(210, 193, 0, 0.9);
}
/* 핑크 마크 스타일 */
mark[data-type="p"] {
	background-color:#ff9ed2; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 1px;
}
mark[data-type="p"]:hover {
    color: rgba(201, 0, 107, 0.9);
    text-decoration-color: currentColor;
	background: #ff9ed2; 
	border: 1px solid rgba(255, 58, 143, 0.9);
}
.custom-tooltip[data-type="p"] {
    background: rgba(255, 58, 143, 0.9);
    color: white;
    box-shadow: 0 2px 4px rgba(255, 32, 151, 0.9);
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.scene-heading {
	background-color: #f0f0f0;
	border-radius: 20px;
	padding: 8px 15px;
	display: inline-block;
	font-weight: bold;
	margin-bottom: 20px;
	max-width: 100%;
	box-sizing: border-box;
	font-family: 'NanumBarunGothicYetHangul';
}

.action {
	margin-bottom: 25px;
	font-family: 'NanumBarunGothicYetHangul';
	color: #424242;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	text-indent: 10px;

}

/* 대화를 위한 개선된 구조 */
.script {
	counter-reset: dialog;
	width: 100%;

}

.dialog {
	position: relative;
	margin-bottom: 15px;
	padding-left: 130px; /* 캐릭터 이름 공간 */
	display: block;
	min-height: 1.6em; /* 최소 높이 설정 */
	box-sizing: border-box;
	width: 100%;
	font-family: 'NanumMyeongjoYetHangul';
	color: #424242;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.8;
	text-indent: 15px;

}

.dialog::before {
	content: attr(data-character);
	position: absolute;
	left: 0;
	width: 120px; /* 캐릭터 이름 영역 */
	font-weight: bold;
	text-overflow: ellipsis; /* 너무 길면 말줄임표 */
	white-space: nowrap; /* 캐릭터 이름 줄바꿈 방지 */
	overflow: hidden; /* 넘치는 부분 숨김 */
}

/* 캐릭터 이름이 길 경우 툴팁으로 전체 이름 표시 */
.dialog:hover::before {
	overflow: visible;
	white-space: normal;
	background-color: #f9f9f9;
	z-index: 1;
	box-shadow: 0 0 3px rgba(0,0,0,0.2);
	padding: 2px 5px;
	border-radius: 3px;
}

.parenthetical {
	font-style: italic;
	color: #666;
}

/* 반응형 디자인을 위한 미디어 쿼리 */
@media (max-width: 650px) {

	
	.dialog {
		padding-left: 0;
		padding-top: 1.8em; /* 모바일에서는 캐릭터 이름 위에 배치 */
		margin-bottom: 20px; /* 간격 늘림 */
	}
	
	.dialog::before {
		width: 100%;
		white-space: normal; /* 모바일에서는 캐릭터 이름 줄바꿈 허용 */
		top: 0;
		background-color: #f5f5f5;
		padding: 2px 0;
		border-radius: 3px;
	}
	
	.scene-heading {
		display: block;
		width: 100%;
	}
}

/* 아주 작은 화면을 위한 추가 조정 */
@media (max-width: 400px) {
	body {
		padding: 8px;
		font-size: 14px;
	}
	
	.dialog {
		padding-top: 2.2em;
	}
}







markh {
	background-color:#eeeeff; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 3px;

}

markr {
	background-color:#ffc4c4; 
	border: 1px solid translate;
	border-radius: 5px;
	padding: 3px;
	color: #333;
}


marko {
	background-color:#fce4d6; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 3px;

}

markb {
	background-color:#d1eaff; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 3px;

}

markg {
	background-color:#e2efda; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 3px;
}




markp {
	background-color:#ff9ed2; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 3px;
}

marky {
	background-color:#ffed9a; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 3px;
}


marke {
	background-color:#c4fff7; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 3px;
}

markw {
	background-color:#ccc; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 3px;
}

markpp {
	background-color:#e6c5ff; 
	border: 1px solid translate;
	border-radius: 5px;
	color: #333;
	padding: 3px;
}



.tooltip {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
text-indent: 0px;
line-height: 160%;

}

.tooltip-texth {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #918eff;
  background: #f1f1f9;
  font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}


.tooltip-textr {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #c00000;
  background: #ffdfdf;
  font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}

.tooltip-texto {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #ed7d31;
  background: #ffecb2;
font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}

.tooltip-textb {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #0089ff;
  background: #d1eaff;
font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}

.tooltip-textg {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #548235;
  background: #f1f9eb;
font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}

.tooltip-textp {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #ff44a9;
  background: #ffd4eb;
font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}

.tooltip-texty {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #ffb910;
  background: #fff7d1;
font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}


.tooltip-texte {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #3cc8b5;
  background: #e3fffb;
font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}

.tooltip-textpp {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #8112d6;
  background: #f5e7ff;
font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}

.tooltip-textw {
  display: none;	/*평소에 안보여야 하니까 none으로*/
  position: absolute;	/*공중에 띄어져있으니까 absolute*/
  max-width: 300px;
  border: 1px solid;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  color: #222;
  background: #eee;
font-family: 'NanumBarunGothicYetHangul';
line-height: 150%;
}

.tooltip:hover .tooltip-texth {
  display: block;	/*마우스 올렸을때 나타나도록*/
}

.tooltip:hover .tooltip-textr {
  display: block;	/*마우스 올렸을때 나타나도록*/
}

.tooltip:hover .tooltip-texto {
  display: block;	/*마우스 올렸을때 나타나도록*/
}

.tooltip:hover .tooltip-textb {
  display: block;	/*마우스 올렸을때 나타나도록*/
}

.tooltip:hover .tooltip-textg {
  display: block;	/*마우스 올렸을때 나타나도록*/
}

.tooltip:hover .tooltip-textp {
  display: block;	/*마우스 올렸을때 나타나도록*/
}

.tooltip:hover .tooltip-texty {
  display: block;	/*마우스 올렸을때 나타나도록*/
}

.tooltip:hover .tooltip-texte {
  display: block;	/*마우스 올렸을때 나타나도록*/
}

.tooltip:hover .tooltip-textpp {
  display: block;	/*마우스 올렸을때 나타나도록*/
}

.tooltip:hover .tooltip-textw {
  opacity: 1;
  display: block;	/*마우스 올렸을때 나타나도록*/
}


.wonmun {
	font-family: 'NanumMyeongjoYetHangul';
	color: #424242;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.8;
	text-indent: 15px;
	margin: 0px; line-height: 180%;
}
.wonmun1 {
	font-family: 'NanumMyeongjoYetHangul';
	color: #424242;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.8;
	text-indent: 15px;
	margin: 0px; line-height: 180%;
}

.wonmunj {
	font-family: 'NanumBarunGothicYetHangul';
	color: #424242;
	font-size: 17px;
	line-height: 1.8;
	text-indent: 30px;
	margin: 0px; line-height: 180%;
}

.wonmunp {
	font-family: 'NanumMyeongjoYetHangul';
	color: #424242;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.8;
	text-indent : -40px;
	padding-left: 40px;
	margin: 0px; line-height: 180%;
}


/* Header */
header {
	text-align: center;
	display: block;
}

header .profileLogo .logoPlaceholder {
	background-color: #e2efda;
	width: 250px;
	text-align: center;
	border-radius: 15px;
}


header .logoPlaceholder span {
	width: 500px;
	height: 22px;
	font-family: 'NanumGothic';
	color: #70ad47;
	font-size: 20px;
	font-weight: 700;
	line-height: 53px;

}
header .profilePhoto {
	width: 259px;
	border-radius: 50%;
	height: 259px;
	clear: both;
}
header .profileHeader h1 {
	font-family: 'MaruBuriBold';
	color: #70ad47;
	font-size: 30px;
	font-weight: 700;
	line-height: 24px;
}
header .profileHeader h3 {
	font-family: 'MaruBuriExtraLight';
	color: #70ad47;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;

}
hr {
	background-color: rgba(208,207,207,1.00);
	height: 1px;
}
header .profileHeader p {
	font-family: 'NanumGothic';
	color: rgba(146,146,146,1.00);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	overflow-y: auto;
}


.socialNetworkNavBar {
	text-align: center;
	display: block;
	margin-top: 60px;
	clear: both;
}

.socialNetworkNavBar .socialNetworkNav {
	border-radius: 50%;
	cursor: pointer;
}
.socialNetworkNavBar .socialNetworkNav img:hover {
	opacity: 0.5;
}
/* Main Content sections */
.mainContent .section1 {
	display: block;
}
.section1 .sectionTitle, .section2 .sectionTitle {
	font-family: 'NanumGothic';
	color: rgba(146,146,146,1.00);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}
.section1 .sectionTitleRule, .section2 .sectionTitleRule {
	margin: 0 3% 0 0;
	float: left;
	clear: both;
}
.section1 .sectionTitleRule2, .section2 .sectionTitleRule2 {
	background-color: rgba(208,207,207,1.00);
	height: 1px;
	padding: 0px;
}
.mainContent .section1 .section1Content {
	font-family: 'NanumGothic';
	font-size: 14px;
	font-weight: 100;
	color: #424242;
}
.mainContent .section1 .section1Content span {
	color: rgba(146,146,146,1.00);
	font-family: 'NanumBarunPen';
}
.section2 .sectionContentTitle {
	font-family: 'NanumBarunPen';
	color: #424242;
	font-size: 20px;
	font-weight: 700;
	background-color:#ccc; 
	border-radius:5px;
	padding: 0.5rem;
	text-indent: 13px;

}
.section2 .sectionContentSubTitle {
	font-family: 'NanumBarunPen';
	color: #424242;
	font-size: 18px;
	line-height: 1.5;


}
.section2 .sectionContent {
	font-family: 'NanumBarunGothicYetHangul';
	color: #424242;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	text-indent: 10px;
margin :0px
}
.section2 .sectionContent1 {
	font-family: 'NanumBarunGothicYetHangul';
	color: #424242;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	text-indent: 10px;
margin :0px
}



.mainContent {
	display: block;
}
.mainContent .externalResourcesNav .externalResources {
	background-color: rgba(208,207,207,1.00);
	display: inline-block;
	text-align: center;
	margin-top: 0px;
	padding-top: 1%;
	cursor: pointer;
	border-radius: 15px;
}
.mainContent .externalResourcesNav .externalResources:hover {
	background-color: #777;
}
.externalResourcesNav .externalResources a {
	font-family: 'NanumBarunGothicYetHangul';
	color: white;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	text-decoration: none;
}
.stretch {
	content: '';
	display: inline-block;
	margin-left: 1%;
	margin-right: 1%;
}
/* Footer */
footer .footerDisclaimer {
	font-family: 'NanumGothic';
	font-size: 14px;
	line-height: 18px;
	color: rgba(104,103,103,1.00);
	font-weight: 700;
}
footer .footerDisclaimer span {
	color: rgba(181,178,178,1.00);
	font-weight: 400;
}
footer .footerNote {
	font-family: 'NanumGothic';
	font-size: 14px;
	line-height: 18px;
	color: rgba(104,103,103,1.00);
	font-weight: 700;
}
footer .footerNote span {
	color: rgba(181,178,178,1.00);
	font-weight: 400;
}

/* Media query for Mobile devices*/
@media only screen and (min-width : 285px) and (max-width : 480px) {
/* Header */
header {
	width: 100%;
	float: none;
}
header .profileLogo .logoPlaceholder {
	display: inline-block;
}
header .profilePhoto {
	display: inline-block;
}
header .profileHeader {
	text-align: center;
	margin-top: 10%;
}
header .profileHeader p {
	text-align: justify;
}
.socialNetworkNavBar {
	text-align: center;
	display: block;
	margin-top: 60px;
	clear: both;
	margin-bottom: 15%;
}
.socialNetworkNavBar .socialNetworkNav {
	width: 60px;
	height: 60px;
	display: inline-block;
	margin-right: 23px;
}
/* Main content sections */
.mainContent .section1 {
	text-align: center;
	margin-bottom: 10%;
}
.section1 .section1Title, .section2 .section1Title {
	text-align: center;
}
.section1 .sectionTitleRule, .section2 .sectionTitleRule {
	width: 100%;
}
.section1 .sectionTitleRule2, .section2 .sectionTitleRule2 {
	display: none;
}
.mainContent .section1 .section1Content {
	display: inline-block;
	text-align: left;
	font-family: 'NanumGothic';
	text-align: justify;
}
.mainContent .section2 {
	display: block;
	text-align: center;
}
.section2 .section2Content {
	margin-top: 10%;
	text-align: justify;
	margin-bottom: 10%;
}
.mainContent .externalResourcesNav {
	margin-bottom: 10%;
}
.mainContent .externalResourcesNav .externalResources {
	width: 100%;
	height: 30px;
}
/* Footer */
footer {
	display: block;
	text-align: center;
	font-family: sans-serif;
}
}

/* Media Query for Tablets */
@media only screen and (min-width : 481px) and (max-width : 1024px) {
/* Header */
header {
	width: 100%;
	float: none;
}
header .profileLogo .logoPlaceholder {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
}
header .profilePhoto {
	float: left;
	clear: both;
	margin-right: 3%;
	margin-top: 5%;
}
header .profileHeader {
	text-align: left;
	margin-top: 7%;
}
.socialNetworkNavBar .socialNetworkNav {
	width: 74px;
	height: 74px;
	display: inline-block;
	margin-right: 23px;
}
/* Main content and sections */
.section1 .section1Title, .section2 .section1Title {
	text-align: center;
}
.section1 .sectionTitleRule, .section2 .sectionTitleRule {
	width: 100%;
}
.section1 .sectionTitleRule2, .section2 .sectionTitleRule2 {
	display: none;
}
.mainContent .section1 .section1Content {
	display: block;
	margin: 0% 0% 0% 20%;
	font-family: 'NanumGothic';
	margin-top: 5%;
	margin-bottom: 5%;
}
.mainContent .section2 {
	clear: both;
}
.section2 .section2Content {
	padding: 0px;
	margin-left: 20%;
	font-family: sans-serif;
	margin-top: 5%;
	margin-bottom: 5%;
}
.mainContent .externalResourcesNav {

	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
	padding-top: 0px;
	clear: both;
}
.mainContent .externalResourcesNav .externalResources {
	width: 120px;
	height: 30px;
	margin-top: 5%;
}
	
	
/* Footer */
footer .footerDisclaimer {
	float: left;
	margin-left: 3%;
	font-family: sans-serif;
}
footer .footerNote {
	float: right;
	margin-right: 3%;
	font-family: sans-serif;
}
}

/* Desktops and laptops  */
@media only screen and (min-width:1025px) {
/* Header */
header .profileLogo .logoPlaceholder {
	float: left;
	margin-bottom: 50px;
}
header .profilePhoto {
	float: left;
	clear: both;
	margin-right: 3%;
}
header .profileHeader {
	text-align: left;
	padding-top: 10%;
}


.socialNetworkNavBar .socialNetworkNav {
	width: 74px;
	height: 74px;
	display: inline-block;
	margin-right: 23px;
}
/* Main content sections */
.section1 .sectionTitleRule, .section2 .sectionTitleRule {
	width: 22.5%;
}
.mainContent .section1 .section1Content {
	display: block;
	margin-top: 0%;
	margin-right: 0%;
	margin-left: 26%;
	margin-bottom: 0%;
	font-family: 'NanumGothic';
}
.mainContent .section2 {
	clear: both;
}
.section2 .section2Content {
	padding: 0px;
	margin-left: 26%;
	font-family: sans-serif;
}
.mainContent .externalResourcesNav {
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
	padding-top: 0px;
	clear: both;
}
.mainContent .externalResourcesNav .externalResources {
	width: 120px;
	height: 30px;
}
/* Footer */
footer .footerDisclaimer {
	float: left;
	margin-left: 3%;
	font-family: sans-serif;
}
footer .footerNote {
	float: right;
	margin-right: 3%;
	font-family: sans-serif;
}



}</pre></body></html>