body {
	margin: 0px;
	padding: 0px;
	background-color: #ffffff;
	color: #606060;
	font-family: 'Montserrat', Arial, Verdana, sans-serif;
	text-align: center;
}

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

div {
	margin: 0px;
	padding: 0px;
	border-width: 0px;
}

	/* For development */
	div {
		/*border: 1px dotted #808080;*/
	}

h1, h2, h3, h4, h5, h6 {
	color: #800449;
}

a, a:visited, a:active {
	color: #800449;
}

hr {
	margin: 22px 0px;
	height: 1px;
	border-width: 0px;
	background-image: linear-gradient(to right,transparent,rgba(0,0,0,0.4),transparent);
}

pre {
	font-family: Open Sans, Arial, sans-serif, Arial, Verdana;
}

.row {
	width: 100%;
	display: inline-block;
}

.cell {
	float: left;
}

.fullWidth {
	width: 100%;
}

.twoThirdsWidth {
	width: 66.666666%;
}

.halfWidth {
	width: 50%;
}

.thirdWidth {
	width: 33.333333%;
}

.quarterWidth {
	width: 25%;
}

input[type="text"], input[type="password"], input[type="number"], input[type="datetime-local"], select, textarea {
	padding: 4px;
	border: 1px solid #000000;
	border-radius: 3px;
	background-color: #ffffff;
	color: #000000;
	font-size: 100%;
}

textarea {
	font-family: Open Sans, Arial, sans-serif, Arial, Verdana;
}

input[type="checkbox"] {
	margin-bottom: 10px;
	padding: 5px;
	border: 1px solid #008000;
	background-color: #ffffff;
}

input[type="button"], input[type="submit"], button, a.linkButton, a.linkButton:visited, a.linkButton:active {
	padding: 8px 40px;
	border: 1px solid #961418;
	border-radius: 6px;
	background-image: -moz-linear-gradient(top, #e60783, #800449);
	background-image: -webkit-linear-gradient(top, #e60783, #800449);
	background-image: -ms-linear-gradient(top, #e60783, #800449);
	background-image: linear-gradient(top, #e60783, #800449);
	background-color: #800449;
	color: #ffffff;
	font-family: 'Montserrat', Arial, Verdana, sans-serif;
	font-size: 120%;
	font-weight: bold;
	text-shadow: 0px 0px 5px #000000;
	cursor: pointer;
}

	input[type="button"]:hover, input[type="submit"]:hover, button:hover, a.linkButton:hover {
		color: #ffff00;
	}
	
a.linkButton {
	text-decoration: none;
}

:lang(ko) {
	font-family: 'Nanum Gothic Coding', sans-serif;
}

#mobileMenuBar {
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 46px;
	display: none;
	z-index: 80;
	background-image: -moz-linear-gradient(top, #e60783, #800449);
	background-image: -webkit-linear-gradient(top, #e60783, #800449);
	background-image: -ms-linear-gradient(top, #e60783, #800449);
	background-image: linear-gradient(top, #e60783, #800449);
	background-color: #800449;
}

#mobileMenuBar.floatingHeader {
	float: left;
	width: 56px;
	background-image: none;
	background-color: transparent;
}

	#mobileMenuBar #mobileMenuButton {
		position: absolute;
		width: 36px;
		height: 36px;
		left: 10px;
		top: 5px;
		cursor: pointer;
		-webkit-filter: drop-shadow(0px 0px 2px #000000);
		filter: drop-shadow(0px 0px 2px #000000);
	}
	
	#mobileMenuBar.floatingHeader #mobileMenuButton {
		-webkit-filter: none;
		filter: none;
	}
	
		#mobileMenuBar #mobileMenuButton path {
			fill: #ffffff;
			transition-property: fill;
			transition-duration: 0.5s;
		}
	
#banner {
	position: relative;
	width: 100%;
	/*height: calc(100vw * 0.57);*/
}

	#bannerTop {
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		display: inline-block;
		z-index: 30;
		background-color: rgba(255, 255, 255, 0.0);
		transition-property: background-color;
		transition-duration: 0.5s;
	}
	
	#bannerTop:hover {
		background-color: rgba(255, 255, 255, 1.0);
	}

	#bannerTop #header {
		background-image: none;
		background-color: transparent;
	}
		
	#bannerTop #header #mobileMenuButton path,
	#bannerTop #header .iconLink svg path,
	#bannerTop #header .iconLink span
	{
		fill: #ffffff;
		color: #ffffff;
	}
	
	#bannerTop:hover #header #mobileMenuButton path,
	#bannerTop:hover #header .iconLink svg path,
	#bannerTop:hover #header .iconLink span
	{
		fill: #606060;
		color: #606060;
	}
	
	#bannerTop:hover #header #mobileMenuButton:hover path,
	#bannerTop:hover #header .iconLink:hover svg path,
	#bannerTop:hover #header .iconLink:hover span
	{
		fill: #e41e25;
		color: #e41e25;
	}
	
	#bannerTop > #header a img {
		-webkit-filter: brightness(0%) invert(100%);
		filter: brightness(0%) invert(100%);
		transition-property: filter -webkit-filter;
		transition-duration: 0.5s;
	}
	
	#bannerTop:hover > #header a img {
		-webkit-filter: none;
		filter: none;
	}
	
	#bannerTop > #menuBar > div.linkItem a,
	#bannerTop > #menuBar > div.linkItem a:visited
	{
		color: #ffffff;
	}

	#bannerTop:hover > #menuBar > div.linkItem a,
	#bannerTop:hover > #menuBar > div.linkItem a:visited
	{
		color: #000000;
	}

	#bannerTop:hover > #menuBar > div.linkItem a:hover,
	#bannerTop:hover > #menuBar > div.linkItem a:active
	{
		color: #e41e25;
	}
	
#header {
	position: relative;
	padding: 10px 0px;
	/*display: inline-block;*/
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	background-image: -moz-linear-gradient(top, #e60783, #800449);
	background-image: -webkit-linear-gradient(top, #e60783, #800449);
	background-image: -ms-linear-gradient(top, #e60783, #800449);
	background-image: linear-gradient(top, #e60783, #800449);
	background-color: #800449;
	text-align: center;
}

	#header > div {
		display: inline-block;
	}

	#header > div:nth-child(2) {
	}

		#header .searchInput input[type="text"] {
			float: left;
			width: calc(100% - 100px);
			height: 40px;
			border-radius: 6px 0px 0px 6px;
		}

		#header .searchInput input[type="submit"] {
			float: left;
			width: 100px;
			height: 40px;
			border-style: none;
			border-radius: 0px 6px 6px 0px;
			background-image: url("../images/iconSearch.png");
			background-repeat: no-repeat;
			background-position: center center;			
			background-color: #404040;
		}
		
	#header.floatingHeader > div:nth-child(2) {
		width: 600px;
	}
	
	#header .iconLink {
		margin: 0px 10px;
		display: inline-block;
		cursor: pointer;
	}
	
		#header .iconLink svg path,
		#header .iconLink span
		{
			fill: #ffcce8;
			color: #ffcce8;
			font-size: 14px;
			transition-property: fill, color;
			transition-duration: 0.0s;
		}
		
		#header .iconLink:hover svg path,
		#header .iconLink:hover span
		{
			fill: #ffff00;
			color: #ffff00;
		}
		
	#header a img {
		border-width: 0px;
	}
	
#menuBar {
	position: relative;
	padding: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	z-index: 50;
	font-size: 18px;
}	

	#menuBar > .menuItem {
		padding: 0px 20px;
		display: inline-block;
	}
	
	#menuBar .menuItem {
		font-weight: bold;
		text-shadow: 0px 0px 3px #000000;
		cursor: pointer;
	}
	
		#menuBar .menuItem a {
			text-decoration: none;
		}
	
	#menuBar .menuItem svg.downArrow {
		position: relative;
		top: 2px;
		width: 16px;
		height: 16px;
		-webkit-filter: drop-shadow(0px 0px 2px #000000);
		filter: drop-shadow(0px 0px 2px #000000);
	}
	
		#menuBar .menuItem,
		#menuBar .menuItem a,
		#menuBar .menuItem a:visited,
		#menuBar .menuItem svg.downArrow path
		{
			fill:  #ffcce8;
			color: #ffcce8;
		}
	
		#menuBar .menuItem:hover,
		#menuBar .menuItem.selected,
		#menuBar .menuItem a:hover,
		#menuBar .menuItem a:active,
		#menuBar .menuItem:hover a,
		#menuBar .menuItem.selected a,
		#menuBar .menuItem:hover svg.downArrow path,
		#menuBar .menuItem.selected svg.downArrow path
		{
			fill:  #ffff00;
			color: #ffff00;
		}
	
	#menuBar .popupMenu {
		position: absolute;
		padding: 10px;
		left: 0px;
		top: 100%;
		max-width: 100%;
		display: none;
		border: 1px solid #800449;
		border-radius: 0px 0px 6px 6px;
		background-image: -moz-linear-gradient(top, #e60783, #800449);
		background-image: -webkit-linear-gradient(top, #e60783, #800449);
		background-image: -ms-linear-gradient(top, #e60783, #800449);
		background-image: linear-gradient(top, #e60783, #800449);
		background-color: #800449;
	}

		#menuBar .popupMenu > div {
			float: left;
			width: 200px;
		}
	
			#menuBar .popupMenu .menuHeading {
				color: #ffffff;
				font-size: 100%;
			}
		
			#menuBar .popupMenu .menuHeading:hover {
				color: #ffff00;
				font-size: 100%;
			}
		
			#menuBar .popupMenu .menuItem {
				padding: 15px 0px;
			}
		
#footer {
	display: inline-block;
	padding: 30px 10px;
	width: 100%;
	background-color: #800449;
	color: #ffcce8;
	font-size: 90%;
}
	
	#footer a,
	#footer a:visited
	{
		color: #ffcce8;
		text-decoration: none;
	}
	
	#footer a:hover
	{
		color: #ffcce8;
		text-decoration: underline;
	}
	
	#footer #return_policy a {
		font-weight: bold;
	}
	
	#footer > div:nth-child(1) {
		margin-bottom: 15px;
	}

		#footer > div:nth-child(1) img {
		}
	
	#footer > div:nth-child(2) {
		margin-bottom: 20px;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

		#footer > div:nth-child(2) > div {
			margin-bottom: 20px;
			width: 250px;
		}
	
		#footer > div:nth-child(2) a
		{
			font-size: 120%;
			font-weight: bold;
		}
	
	#footer > div:nth-child(3) {
		width: 100%;
	}
	
		#footer > div:nth-child(3) > div {
			margin-bottom: 20px;
			float: left;
			width: 50%;
		}
		
			#footer > div:nth-child(3) > div > div {
				margin-bottom: 15px;
			}
			
			#footer .categoryLevelOne a
			{
				font-size: 140%;
				font-weight: bold;
			}
		
			#footer .categoryLevelTwo a
			{
				font-size: 90%;
				font-weight: bold;
			}
		
			#footer .categoryLevelThree a
			{
				font-size: 90%;
				font-weight: normal;
			}
			
	#footer > div:nth-child(4) {
		clear: both;
	}
	
#darkPanel {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	visibility: hidden;
	transition-property: opacity;
	transition-duration: 0.3s;
}

#darkPanel2 {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 100;
	display: none;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	visibility: hidden;
	transition-property: opacity;
	transition-duration: 1s;
}

.modalWindow {
	position: fixed;
	top: 50px;
	padding: 15px;
	width: 100%;
	max-width: 900px;
	height: 90%;
	z-index: 150;
	border: 1px solid #000000;
	box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.25);
	background-color: #ffffff;
	color: #606060;
	text-align: left;
	opacity: 0;
	visibility: hidden;
	display: none;
	transition-property: opacity;
	transition-duration: 1s;
}

	.modalWindow .closeBox {
		position: absolute;
		top: -20px;
		right: -20px;
		width: 40px;
		height: 40px;
		z-index: 50;
		border: 3px solid #ffffff;
		border-radius: 100px;
		background-image: url("../images/closeBoxWhite.png");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		background-color: #404040;
		cursor: pointer;
	}

	.modalWindow .closeBox:hover {
		background-color: #e41e25;
	}
	

	.modalWindow > *:first-child {
		margin-top: 0px;
	}
	
	.modalWindow .actionControls {
		margin-top: 15px;
		width: 100%;
	}

		.modalWindow .actionControls * {
			margin-left: 5px;
			float: right;
		}

#waitDialog {
	position: fixed;
	padding: 25px;
	width: 300px;
	display: none;
	z-index: 200;
	border: 1px solid #202020;
	background-color: #ffffe0;
	color: #202020;
	font-weight: bold;
	text-align: center;
	box-shadow: 0px 0px 5px rgba(64, 64, 64, 0.5);
}

#searchDialog {
	padding: 20px;
	max-width: 500px;
	height: auto;
}

	#searchDialog input[type='text'] {
		padding: 8px;
		width: calc(100% - 120px);
		border-radius: 6px 0px 0px 6px;
		font-size: 18px;
		font-family: 'Montserrat', Arial, Verdana, sans-serif;
		font-weight: bold;
		text-shadow: 0px 0px 5px rgba(255, 255, 255, 0);
	}

	#searchDialog input[type='submit'] {
		padding: 8px;
		width: 120px;
		border-radius: 0px 6px 6px 0px;
		font-size: 18px;
		font-weight: bold;
	}

#messageDialog {
	padding: 20px;
	max-width: 400px;
	height: auto;
	text-align: center;
}

#mobileMenu {
	position: fixed;
	width: calc(100% - 80px);
	max-width: 440px;
	height: 100%;
	left: calc(80px - 100%);
	top: 0px;
	display: inline-block;
	z-index: 150;
	background-color: #ffffff;
	color: #000000;
	visibility: hidden;
	transition-property: left;
	transition-duration: 0.3s;
}

	#mobileMenu > div:nth-child(1) {
		position: relative;
		padding: 0px 20px;
		width: 100%;
		height: 60px;
		display: flex;
		align-items: center;
		background-image: -moz-linear-gradient(top, #e60783, #800449);
		background-image: -webkit-linear-gradient(top, #e60783, #800449);
		background-image: -ms-linear-gradient(top, #e60783, #800449);
		background-image: linear-gradient(top, #e60783, #800449);
		background-color: #800449;
		color: #ffffff;
		text-shadow: 0px 0px 3px #000000;
	}
	
		#mobileMenu > div:nth-child(1) > h2 {
			color: #ffffff;
		}
		
		#mobileMenu > div:nth-child(1) > .closeButton {
			position: absolute;
			width: 40px;
			height: 38px;
			right: 11px;
			top: 11px;
			cursor: pointer;
			-webkit-filter: drop-shadow(0px 0px 2px #000000);
			filter: drop-shadow(0px 0px 2px #000000);
		}
		
			#mobileMenu > div:nth-child(1) > .closeButton svg {
				width: 100%;
				height: 100%;
			}
			
				#mobileMenu > div:nth-child(1) > .closeButton svg path {
					fill: #ffffff;
				}

				#mobileMenu > div:nth-child(1) > .closeButton:hover svg path {
					fill: #ffff00;
				}

	#mobileMenu > div:nth-child(2) {
		height: calc(100% - 60px);
		background-color: #ffffff;
		overflow-y: auto;
	}
	
		#mobileMenu #mobileMenuContent {
			width: 100%;
		}
		
			.mobileMenuItem {
				padding: 20px;
				width: 100%;
				font-weight: bold;
				text-align: left;
				cursor: pointer;
			}
			
				.mobileMenuItem a {
					text-decoration: none;
				}
			
				.mobileMenuItem svg.downArrow {
					display: none;
				}
				
				.mobileMenuItem,
				.mobileMenuItem > a,
				.mobileMenuItem > a:visited
				{
					fill:  #000000;
					color: #000000;
				}
			
				.mobileMenuItem:hover,
				.mobileMenuItem > a:hover,
				.mobileMenuItem > a:active,
				.mobileMenuItem:hover > a
				{
					fill:  #800449;
					color: #800449;
				}
				
			#mobileMenu #mobileMenuContent > .mobileMenuItem {
				padding-left: 35px;
				border-bottom: 1px solid #c0c0c0;
				background-position: 10px 19px;
				background-size: 20px 20px;
				background-repeat: no-repeat;
				font-size: 100%;
			}
			
			#mobileMenu #mobileMenuContent > .mobileMenuItem.collapsed {
				background-image: url("../images/iconPlusBlack.png");
			}
		
			#mobileMenu #mobileMenuContent > .mobileMenuItem.expanded {
				background-image: url("../images/iconMinusBlack.png");
			}
		
				.mobileSubMenu {
					padding: 20px 0px 0px 20px;
					width: 100%;
					display: none;
				}
				
					.mobileSubMenu .mobileMenuItem {
						padding-left: 40px;
						border-top: 1px solid #c0c0c0;
					}
				
					.mobileSubMenu .mobileMenuItem.menuHeading {
						padding-left: 0px;
						font-size: 100%;
					}
				
.hide {
	display: none;
	visibility: hidden;
}

.errorMessage {
	color: #ff0000;
	font-size: 120%;
	font-weight: bold;
	visibility: hidden;
}

@media screen and (min-width: 850px) and (max-width: 1100px) {

	/*
	#header.standard {
		display: inline-block;
	}

		#header.standard > div {
			display: block;
			float: left;
		}
		
		#header.standard > div:nth-child(1)
		{
			width: 50%;
		}		

		#header.standard > div:nth-child(2)
		{
			width: 50%;
		}		

		#header.standard > div:nth-child(3)
		{
			width: 100%;
			padding-left: 50%;
			text-align: left;
		}
	*/

	#header.floatingHeader {
		display: inline-block;
	}

		#header.floatingHeader > div {
			display: block;
			float: left;
		}
		
		#header.floatingHeader > div:nth-child(1)
		{
			width: 50%;
		}
		
			#header.floatingHeader > div:nth-child(1) #mobileMenuBar {
				display: block;
			}

		#header.floatingHeader > div:nth-child(2)
		{
			display: none;
		}		

		#header.floatingHeader > div:nth-child(3)
		{
			width: 50%;
		}
		
	#menuBar {
		margin-top: -5px;
	}
		
}

@media screen and (max-width: 849px) {
	
	#mobileMenuBar {
		display: block;
	}
	
	#header.standard {
		/*margin-bottom: -5px;*/
		/*display: inline-block;*/
	}

		/*#header.standard > div {
			display: block;
			float: left;
		}*/
		
		/*#header.standard > div:nth-child(1)
		{
			width: 50%;
		}*/		

		#header.standard > div:nth-child(2)
		{
			width: 0%;
		}		

		/*#header.standard > div:nth-child(3)
		{
			width: 50%;
		}*/

	#header.floatingHeader {
		display: inline-block;
	}

		#header.floatingHeader > div {
			display: block;
			float: left;
		}
		
		#header.floatingHeader > div:nth-child(1)
		{
			width: 100%;
		}		

		#header.floatingHeader > div:nth-child(2)
		{
			display: none;
		}		

		#header.floatingHeader > div:nth-child(3)
		{
			width: 100%;
		}
		
	#menuBar {
		display: none;
	}

}

@media screen and (min-width: 480px) and (max-width: 849px) {

	#footer > div:nth-child(3) > div {
		width: 50%;
	}
	
}

@media screen and (max-width: 479px) {
	
	#header {
	}
	
		#header > div {
			font-size: 8px;
		}

		#header > div svg path {
			width: 28px;
			height: 28px;
		}
		
		#header img {
			width: 140px;
			height: calc(140px * 131 / 170);
		}
		
	#bannerTop {
		background-color: rgba(255, 255, 255, 1.0);
	}

	#bannerTop #header #mobileMenuButton path,
	#bannerTop #header .iconLink svg path,
	#bannerTop #header .iconLink span
	{
		fill: #606060;
		color: #606060;
	}
	
	#bannerTop #header a img {
		-webkit-filter: none;
		filter: none;
	}

	#banner.floatingHeader {
		padding-top: 118px;
	}
	
	#banner.floatingHeader #slideshow {
		/*top: 118px;*/
		/*-webkit-filter: brightness(50%);
		filter: brightness(50%);*/
	}
		
	#footer > div:nth-child(3) > div {
		width: 100%;
	}
	
}



