/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* screen.css */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
@media only screen and (max-width: 700px) {
	p, ul, h1, h2, h3, h4, #webaddress {
	  left: 0 !important;
	  width: 100% !important;
	  position: static !important;
	  margin-left: 0 !important;
	  margin-right: 0 !important;
	  box-sizing: border-box;
	}
	h1, h2, h3, h4 {
	  font-size: 1.2em !important; /* 필요시 크기 축소 */
	  text-align: left !important;
	}
	span.date {
		display: block;
		float: none;
		text-align: left;
		margin-left: 0;
		margin-top: 0.2em;
	  }
  
  }

	
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* end of reset */



body {
	font: normal normal 400;
	font-size: 100%;
	line-height: 1.5em;
	/*also written as...  font: normal normal 400 100%/1.5em;*/
	font-family: Avenir,Verdana,sans-serif;
	/* font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif; */
	margin-top: 1em;
	margin-left: 1em;
}

p {
	position: relative;
	left: 25%;
	margin-bottom: 0.5em;
	margin-right: 0;
	width: 45%;
}

code {
	font: normal normal;
	font-size: 90%;
	/*line-height: 1em;*/
	font-family: Monaco,Menlo,monospace,sans-serif;
	color: #aaa;
}
/* 날짜 우측 정렬 */
p code {
	position: absolute;
	text-align: right;
	right: -60%;
	font-size: 80%;
}

/* 내용 영역 */
ul {
	position: relative;
	left: 25%;
	width: 70%;
	margin-bottom: 1em;
	margin-top: -0.5em;
}

/*uncomment to get dashes in the list*/
/* li:before {
	content: "-";
	position: relative;
	left: -0.25em;
} */
/* 내용 2단계 */
li {
	/*second line indent*/
	padding-left: 1.25em;
	text-indent: -1.25em;
	/* width: 0%; */
	
	/*color: #777;*/
}

/* 리스트 2단계 이상 들여쓰기 */
li ul {
	position: relative;
	left: 25%;
	width: 55%;
	margin-top: 0.25em;
}

h1,h2,h3,h4 {
	font-family: Avenir,Cousine,Verdana,sans-serif;
	/* font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif; */
	width: 80%;
	font-weight: 600;
}

/* 이름 */
h1 {
	text-align: left;
	font-size: 2.5em;
	line-height: 1em;
	position: relative;
	left: 25%;
	margin-bottom: 0.5em;
}

h1+p {
	/*subtitle*/
	font-style: italic;
	font-size: 110%;
}
/* 섹션 제목 */
h2 { 
	font-size: 1.1em;
	color: #265abb;
	margin-top: 3em;
	position: relative;
	top: 1.4em;
	text-align: right;
	width: 20%;
}

/* Sub section title */
h3 {
	font-size: 1em;
	font-weight: 400;
	line-height: 2em;
	position: relative;
	top: 1.7em;
	text-align: right;
	width: 20%;
	color: #265abb;
}

a {
	color: inherit;
	/*text-decoration:none*/
}

a:hover {
	color:#39f
}

#webaddress {
	margin-top: 1em;
	position: relative;
	left: 25%;
	color: #265abb;  
	font-family: Monaco,Menlo,monospace,sans-serif;
	font-size: 100%;
}

#webaddress a {
	text-decoration: none;
}

em {
	/* font-weight: bold; */
	font-style: italic;
}

strong {
	font-weight: bold;
}

#address {
	display: none;
}



/*
@media only screen and (max-width: 480px) {
	make one column somehow...
}*/