@charset "utf-8";
/* 본문 공통 */
body{
	font-family:"나눔고딕", "맑은 고딕", "다음_Regular", "애플 고딕", "돋움", Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	color:#505050;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	background-color:#7FADDB;
	background-image:url(./images/artcity.jpg);
	background-repeat:repeat-x;
	background-position:top;
	background-attachment:fixed;
}
a:link {color:#0072BC; text-decoration:none;}
a:visited {color:#0072BC;text-decoration:none}
a:hover {text-decoration:none; color:#b92828;}
a:active {color:#0072BC;}
img {border:none;}
form, 
input {font-family:"나눔고딕","맑은 고딕", "다음_Regular","애플 고딕","돋움",Verdana,Arial,Helvetica,sans-serif;}


/* **** Common Layout **** */
/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#headbar {
	width:100%;
	height:1.9em;
	background-image:url(./images/headbar.png);
	background-repeat:repeat-x;
	position:fixed;
	bottom:0;
	left:0;
	padding:0.4em 0 0 0;
	font-size:0.9em;}
#headbar ul { margin:0; padding:0; list-style-type:none; list-style-image:none;}
#headbar ul li { list-style-type:none; display:inline; margin-right:0.5em;}
#headbar ul li a {}
#headbar ul li img { vertical-align:top;}

.twoColElsRtHdr #container { 
	width: 80em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0 auto 2.6em auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0 none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */} 
#header { padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */} 
#sidebar1 {
	float: right; 
	width: 17em; /* since this element is floated, a width must be given */
	background:transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 1em 0; /* top and bottom padding create visual space within this div */
  	margin: 0;}
.twoColElsRtHdr #mainContent {
	width:62em;
	padding:0em; /* top and bottom padding create visual space within this div */
	margin:1em 0 0 0; /* the left margin will look best if you match the padding amount to the header and footer. */
	}
.twoColElsRtHdr #footer { 
	padding:0.5em; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#e0dfde; font-size:0.9em;} 


/* **** Header **** */
#header .blogtitle {float:left; margin:0;padding:1em 0 0 0;font-family:"나눔명조","애플 명조","바탕";font-size:3em;color:#2C2C2C;font-weight:bold;letter-spacing:-0.1em;}
#header h1 { margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */}
#header h1.blogtitle a { color:#2c2c2c;text-decoration:none}
#header h1.blogtitle a:link { color:#2c2c2c;text-decoration:none}
#header h1.blogtitle a:visited { color:#2c2c2c;text-decoration:none}
#header h1.blogtitle a:hover {
	color:#b92828;
	text-decoration:none;
	font-family: "나눔명조", "애플 명조", "바탕";
}
#header .searchBox {float:right; margin:1em 1em 0 0; padding:0; width:26em; height:3em;}
#header .searchBox form, 
#header .searchBox input[radio] {margin:0; padding:0;} 
#header .searchBox input[submit] {margin:0; padding:0; height:1.2em;}
#header .searchBox input.boxYellow {font-size:1.4em; font-weight:bold; line-height:1em; padding:0.4em 0.1em 0 0.1em; height:1.2em; width:14em; border:3px solid #F6B65A;}
#header .blogMenu {clear:both; padding:0.1em 18em 0.2em 0.1em; text-align:right; background-color:#D2D7D6;}
#header .blogMenu ul { margin:0;  padding:0;  list-style:none;}
#header .blogMenu li { font-family:; font-size:0.9em; color:#424242; display:inline; background:url(images/bullet_bar.gif) 0 center no-repeat;  margin-left:3px;  padding-left:7px}
#header .blogMenu li a:link {color:#424242;}
#header .blogMenu li a:visited {color:#424242;}
#header .blogMenu li a:hover {text-decoration:none;color:#b92828;border-bottom:#b92828 dashed 1px;}
#header li.tab_home { background:none;}
#header li.tab_admin a,
#header li.tab_write a {color:#FEFEFE}


/* **** sidebar1 **** */
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsRtHdr #sidebar1 p" rule.*/
#sidebar1 p {
	margin-left: 1em; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 1em;}
#sidebar1 h3 {font-size:0.9em; letter-spacing:-0.1em; margin:1.2em 0 0.5em 0px;color:#505050;border-bottom:1px solid #afafaf;padding:0px;cursor:pointer}
#sidebar1 h3 a,
#sidebar1 h3 a:link,
#sidebar1 h3 a:visited,
#sidebar1 h3 a:active
#sidebar1 h3 a:hover {color:#505050;border-bottom:1px solid #505050; padding-right:0.5em; text-decoration:none;}

#sidebar1 .bloginfo {}
#sidebar1 .blogImage img { width:16em;border:0;margin-bottom:0.5em;}
#sidebar1 .blogImage	{width:17em;text-align:center;}
#sidebar1 .blogDesc { text-align:justify; color:#505050; font-size:0.9em; line-height:1.5em; padding-left:1em; padding-right:1em}
#sidebar1 .userID { padding-right:10px;text-align:right;color:#505050;letter-spacing:-1px;font-size:0.9em}

#sidebar1 .admin {text-align:center; padding:0.5em; border:#999999 dotted 0; margin:0;}
#sidebar1 .admin a {color:#808080; font-size:0.9em;}

#sidebar1 .search { text-align:center}
#sidebar1 .search .searchinput { font-size:0.9em;width:15em;color:#505050;background-color:#c2c6c5;height:1.6em;border:0.1em solid #afafaf;}
#sidebar1 .search .submit { display:none;}

#sidebar1 .notice {overflow:hidden;}
#sidebar1 .notice ul { list-style:none;padding:0;margin:0;}
#sidebar1 .notice li { font-size:0.9em;margin:0;}

#sidebar1 .category {width:17em;padding-left:1.2em;}
#sidebar1 .category li { background:none;}
#sidebar1 .category li ul li { background:url(./images/bullet_white.png) 0 0.5em no-repeat;  padding-left:0.5em;}
#sidebar1 .category li ul li ul li { background:none; border-left:0.1em dotted #505050; padding-left:0.5em; margin-left:0.2em;}
#sidebar1 .category li ul li ul li a { color:#505050;}

#sidebar1 .recentPost {overflow:hidden;}
#sidebar1 .recentPost ul { list-style:none;padding:0px;margin:0 0.9em 0 0;}
#sidebar1 .recentPost li { font-size:0.9em;margin-left:0px }
#sidebar1 .recentPost .cnt { font-size:0.7em; color:#b92828;}

#sidebar1 .recentComment {overflow:hidden}
#sidebar1 .recentComment ul { list-style:none;padding:0;margin:0 0.9em 0 0;}
#sidebar1 .recentComment li { font-size:0.9em;margin-left:0;}
#sidebar1 .recentComment .date {font-size:0.9em;color:#9c9c9c;margin-bottom:0.5em;}

#sidebar1 .recentTrackback {overflow:hidden;}
#sidebar1 .recentTrackback ul { list-style:none;padding:0;margin:0 0.9em 0 0;}
#sidebar1 .recentTrackback li { font-size:0.9em;margin-left:0;}

#sidebar1 .tagbox {margin-left:0; width:18em;}
#sidebar1 .tagbox ul { padding:0;margin:0;text-align:justify;}
#sidebar1 .tagbox li { display:inline}
#sidebar1 .tagbox a { letter-spacing:-0.1em;}	
#sidebar1 .tagbox li .cloud1 { color:#67a013; font-size:1em;  }
#sidebar1 .tagbox li .cloud2 { color:#2883b9; font-size:1em; }
#sidebar1 .tagbox li .cloud3 { color:#b92828; font-size:1em; }
#sidebar1 .tagbox li .cloud4 { color:#db51ba; font-size:1em;}
#sidebar1 .tagbox li .cloud5 { color:#505050; font-size:1em;}
#sidebar1 .tagbox a:hover { background-color:#b92828; color:#FFFFFF;text-decoration:none; }

#sidebar1 .archive { text-align:center;}
#sidebar1 .archive select { text-align:center; font-size:1em; width:18em; border:0.1em solid #afafaf; color:#505050; background-color:#c2c6c5;}

#sidebar1 .sitelink {overflow:hidden}
#sidebar1 .sitelink ul { list-style:none;padding:0;margin:0 0.9em 0 0;}
#sidebar1 .sitelink li { font-size:0.9em;margin-left:0; }

#sidebar1 .counter { font-size:1em; text-align:center; letter-spacing:0; color:#656565; margin-top:0.9em;}

#sidebar1 .banners {text-align:center; padding:0; margin:0;}

#sidebar1 .copyright {text-align:center; margin:0;}

/* RSS button */
#sidebar1 #subscription {
	text-align: center; margin-top: 20px !important;}
#sidebar1 #subscription a span {
	display: none;}
#sidebar1 #subscription a {
	display:block; float:left; margin-left:10px;}
#sidebar1 #subscription .rss,
#sidebar1 #subscription .rss_response,
#sidebar1 #subscription .atom,
#sidebar1 #subscription .atom_response {
	width:32px; height:40px; margin-top: 10px;}
#sidebar1 #subscription .rss {
	background: url('./images/rss32.png') no-repeat;
	margin-left:30px !important;}
#sidebar1 #subscription .rss_response {
	background: url('./images/rssResponse32.png') no-repeat;}
#sidebar1 #subscription .atom {
	background: url('./images/atom32.png') no-repeat;}
#sidebar1 #subscription .atom_response {
	background: url('./images/atomResponse32.png') no-repeat;}


#sidebar1 #sidemessenger ul {margin:0.5em 0; padding:0;}
#sidebar1 #sidemessenger ul li {margin:0; padding:0;}
#sidebar1 #sidemessenger ul li a {margin:0;}

/* **** mainContent **** */
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent .localog, 
#mainContent .taglog, 
#mainContent .entryNotice, 
#mainContent .entryProtected, 
#mainContent .entry,
#mainContent .guestbook, 
#mainContent .medialog {
	width:60em;
	padding:0;
	margin:0 0 1.6em 0;
	border:0.1em solid #c5c5c5;
	background-image:url(./images/content_top.gif);
	background-repeat:no-repeat; background-position:right top;
	padding:1em;
	background-color:#fff
}
#mainContent .localog h3,
#mainContent .taglog h3,
#mainContent .guestbook h3,
#mainContent .searchList h3,
#mainContent .medialog h3,
#mainContent .searchRplist h3 {font-size:1.5em;font-family:"나눔명조","애플 명조","바탕";font-weight:bold;color:#505050;margin:0 0 1.2em 0;background:url(./images/titlebar.gif) 0 center no-repeat;padding-left:7px}
/* cover */
#mainContent .cont_cover {
	padding:1em; margin:0 0 1.6em 0; border:1px solid #c5c5c5;
	background-image:url(./images/content_top.gif);
	background-repeat:no-repeat; background-position:right top; background-color:#fff
}
#mainContent .cover_content {float:left;} /* 하위 요소는 플러그인의 CSS(MT_Meta_RecentPS_Default)에서 정의됨 */
#mainContent .cover_photos {float:left; background-color:#E3E3DD; border:1px dashed #CCFFCC; margin-left:1em; padding:1em;}
#mainContent .media_content {width:60em;overflow:hidden;margin:0px}
/* search */
#mainContent .searchList, 
#mainContent .searchRplist {
	width:60em;
	padding:0px;
	margin:0 0 1.6em 0;
	border:1px solid #c5c5c5;
	background-image:url(./images/content_top.gif);
	background-repeat:no-repeat; background-position:right top;
	padding:1em;
	background-color:#fff
}
#mainContent .searchList ol, 
#mainContent .searchRplist ol { list-style:none;  padding:0.6em;  margin:0;}
#mainContent .searchList li, 
#mainContent .searchRplist li { border-bottom:0.1em dotted #afafaf;  padding-bottom:0.2em;  margin-bottom:0.3em}
#mainContent .searchList .date, 
#mainContent .searchRplist .date { font-size:0.6em;  margin-right:10px; color:#505050}
#mainContent .searchList .cnt { font-size:0.5em; font-family:'Tahoma';  color:#b92828;} 
#mainContent .searchRplist .name { font-size:0.6em;    color:#505050;  padding-left:0.6em;}
#mainContent .searchList a:link,
#mainContent .searchRplist a:link {color:#505050;text-decoration:none;}
#mainContent .searchList a:visited,
#mainContent .searchRplist a:visited {color:#505050;text-decoration:none;}
#mainContent .searchList a:hover,
#mainContent .searchRplist a:hover {color:#b92828;text-decoration:underline;}
/* localog */
#mainContent .localog {padding-bottom:1.2em;}
#mainContent .localog .spot { background:url(./images/iconIndentArrow_local.gif) 5px 0 no-repeat;  padding-left:20px;  margin:0px;color:#505050}
#mainContent .localog .info { background:url(./images/iconIndentArrow_localinfo.gif) 5px 3px no-repeat;  padding-left:1.2em;  margin-top:3px;color:#505050}
#mainContent .localog a:link { color:#505050;text-decoration:none}
#mainContent .localog a:visited { color:#505050;text-decoration:none}
#mainContent .localog a:hover { color:#B92828;  text-decoration:underline;}
/* taglog */
#mainContent .taglog {padding-bottom:10px;}
#mainContent .taglog ul { padding:5px; margin:0; text-align:justify;}
#mainContent .taglog li { display:inline;}
#mainContent .taglog a:hover { background-color:#B92828;  color:#FFFFFF;text-decoration:none; }
#mainContent .taglog li .cloud1 { color:#67A013;  font-size:14px; margin-right:10px }
#mainContent .taglog li .cloud2 { color:#2883B9;  font-size:16px;  margin-right:10px;font-weight:bold;}
#mainContent .taglog li .cloud3 { color:#B92828;   font-size:20px; margin-right:10px;font-weight:bold;}
#mainContent .taglog li .cloud4 { color:#DB51BA;  font-size:18px; margin-right:10px;font-weight:bold;}
#mainContent .taglog li .cloud5 { font-size:12px; color:#505050; margin-right:10px}
/* guest */
#mainContent .guestWrite {padding:3px;overflow:hidden;margin:0px;text-align:center}
#mainContent .guestWrite p {margin:0px;}
#mainContent .guestWrite .guestname {padding-left:40px;padding-top:2px;font-size:0.9em;width:100px;color:#505050;background-color:#FFFFFF;height:16px;border:2px solid #d1d1d1;background:url(./images/formbg_name_n.gif) no-repeat;;}
#mainContent .guestWrite .homepage {padding-left:60px;padding-top:2px;font-size:0.9em;width:200px;color:#505050;background-color:#FFFFFF;height:16px;border:2px solid #d1d1d1;background:url(./images/formbg_homepage_n.gif) no-repeat;}
#mainContent .guestWrite .password {padding-left:65px;padding-top:2px;font-size:0.9em;width:85px;color:#505050;background-color:#FFFFFF;height:16px;border:2px solid #d1d1d1;background:url(./images/formbg_password_n.gif) no-repeat;}
#mainContent .guestWrite textarea {margin-top:5px;overflow:auto;padding:1.2em 0.3em 0.3em 0.3em; font:0.9em;width:60em;color:#505050;background-color:#FFFFFF;border:2px solid #d1d1d1;background:url(./images/formbg_comment_n.gif) no-repeat;overflow:visible;height:80px}
#mainContent .guestWrite .submit {margin-top:5px;margin-bottom:5px;margin-right:50px;font-size:0.9em;width:70px;color:#CD7575;background-color:#FFFFFF;height:25px;border:0px;background:url(./images/form_confirm.gif) no-repeat;}
#mainContent .guestList a:link {text-decoration:none}
#mainContent .guestList a:visited {text-decoration:none}
#mainContent .guestList a:hover {text-decoration:underline;}
#mainContent .guestList ol li a {color:#B92828}
#mainContent .guestList ol li .name {color:#B92828;font-weight:bold}
#mainContent .guestList .date {font-size:0.8em; color:#505050}
#mainContent .guestList .modify {font-size:0.8em;color:#505050;}
#mainContent .guestList .write {font-size:0.8em;color:#505050;}
#mainContent .guestList p {
	font-size:0.9em;
	color:#5A5A5A;
	margin:0px;
	line-height:130%;
}
#mainContent .guestList ol {margin:0px;padding:0px;list-style:none;}
#mainContent .guestList li {margin:0px;border-top:1px solid #eaeaea;padding:1.2em 5px 1.2em 5px;margin:0px 0px 0px 0px;list-style:none;}
#mainContent .guestList li ul li {border:1px dotted #afafaf;background-color:#f8f8f8;margin-top:10px}
#mainContent .guestList li ul li p {margin:0px;color:#505050;line-height:130%;}
/* entry */
#mainContent .entryNotice h2, 
#mainContent .entryProtected h2, 
#mainContent .entry h2 {font-size:2em;font-weight:bold;color:#505050;letter-spacing:-0.2em;margin:0; padding:0; line-height:1em;}
#mainContent .titleWrap {line-height:1em;}
#mainContent .titleWrap .date { float:left; margin-right:0.2em;}
#mainContent .titleWrap .category,
#mainContent .titleWrap .category a { font-size:0.9em; color:#505050; margin:0; padding:0;}
#mainContent .titleWrap .category a:link,
#mainContent .titleWrap .category a:visited,
#mainContent .titleWrap .category a:hover,
#mainContent .titleWrap .category a:active {font-size:0.9em; color:#505050;}
#mainContent .titleWrap a:link,
#mainContent .titleWrap a:visited,
#mainContent .titleWrap a:active {color:#505050;text-decoration:none}
#mainContent .titleWrap a:hover {color:#505050;text-decoration:underline}
#mainContent .titleWrap .admin {text-align:right;font-size:8pt;color:#505050}
#mainContent .entryProtected p { margin:0px;text-align:center;padding:10px 0px 10px 0px}
#mainContent .entryProtected input {font-size:0.9em;width:160px;color:#505050;background-color:#FFFFFF;height:1.2em;border:2px solid #afafaf;}
#mainContent .entryProtected .submit {display:none}
/* adbox */
#mainContent .adbox1 {float:right; width:18em;}
#mainContent .adbox2 {margin:1em;}
/* article */
#mainContent .article { width:60em; margin:2em 0 0.5em 0; padding:0px 0px 30px 0px;overflow:hidden;line-height:160%;}
#mainContent .article a:link,
#mainContent .article a:visited { color:#0072BC; text-decoration:none; border-bottom:1px dotted #0072BC;}
#mainContent .article a:hover { color:#F6B65A; text-decoration:none; border-bottom:1px solid #F6B65A;}
#mainContent .article a:active { color:#F6B65A; text-decoration:none; border-bottom:1px dashed #993366;}
#mainContent .article dt { text-decoration:underline;}
#mainContent .article dd { margin-left:20px;  padding-bottom:10px;}
#mainContent .article blockquote { border:1px dotted #afafaf;padding:10px;  margin:10px 20px;line-height:160%;}
/* tag */
#mainContent .tagTrail { font-size:0.9em; font-family:"나눔고딕", "맑은 고딕", "애플 고딕", "돋움", verdana, Arial, Helvetica, sans-serif; padding:5px 0px 5px 0px;  background:url(images/entry_tag.gif) center left no-repeat; clear:both;}
#mainContent .tagText { font-size:0.9em; font-family:"나눔고딕", "맑은 고딕", "애플 고딕", "돋움", verdana, Arial, Helvetica, sans-serif;  color:#558bcf;font-weight:bold}

#mainContent .actionTrail { padding:0.6em 0 0.4em 0;font-size:0.8em; clear:both;border-bottom:0.1em solid #eaeaea}
#mainContent .actionTrail .cnt { color:#b92828;}
/* trackback */
#mainContent .trackback {padding:0.2em;overflow:hidden;margin-top:0.8em;border-bottom:0.1em solid #eaeaea;}
#mainContent .trackback a { color:#505050;}
#mainContent .trackback h3 { font-size:0.8em;color:#505050; margin:0.2em;}
#mainContent .trackback h4 { font-size:0.6em;font-weight:normal;  margin:0;}
#mainContent .trackback ol { margin:0;  padding:0;  list-style:none;}
#mainContent .trackback li { border-top:0.1em dotted #AFAFAF;  padding:0.4em;}
#mainContent .trackback .date { font-size:0.6em; color:#777;}
#mainContent .trackback p { font-size:0.7em; color:#999;  margin:0.2em 0 0 0; padding:0}
#mainContent .trackback a.delete { background:url(images/iconDelete.gif) left top no-repeat;  padding-left:0.6em;  text-decoration:none;}
#mainContent .trackback a.delete span { display:none;}
/* comment */
#mainContent .comment {padding:0.2em;overflow:hidden;margin-top:0.8em}
#mainContent .comment p { margin:0.2em 0 0 0; padding:0;}
#mainContent .comment a:link {color:#369;text-decoration:none}
#mainContent .comment a:visited {color:#369;text-decoration:none}
#mainContent .comment a:hover {color:#369;text-decoration:underline}
#mainContent .comment h3 { color:#369;font-size:0.8em;margin:0;text-align:center;border-bottom:1px dotted #CCC;padding:3px 0 3px 0; margin:0 auto; width:63em;}
#mainContent .comment ol,
#mainContent .comment ul {margin:0;padding:0;list-style:none;}
#mainContent .comment .name {color:#369;font-weight:bold}
#mainContent .comment .date {font-size:0.8em; color:#505050}
#mainContent .comment .control {font-size:0.8em; color:#505050}
#mainContent .comment ol li {margin:0;border-bottom:0.1em solid #eaeaea;padding:1.2em 5px 1.2em 0.4em;margin:0;list-style:none;}
#mainContent .comment li ul li {border:0.1em dotted #afafaf;background-color:#f8f8f8;margin-top:1em;margin-left:2em;}
#mainContent .comment .control a.address {color:#505050;font:0.6em}
#mainContent .comment .control a.modify {color:#505050;font:0.6em}
#mainContent .comment .control a.write {color:#505050;font:0.6em}
/* commentWrite */
#mainContent .commentWrite { padding:0.4em; margin:1em 0 0 0;text-align:center;}
#mainContent .commentWrite p {margin:0; padding:0;}
#mainContent .commentWrite .name {
	padding:0.3em 0.1em 0 3em;margin:0.1em;
	color:#505050;font-size:0.8em;line-height:1em;height:1.4em;width:12em;
	border:0.1em solid #d1d1d1;background-color:#FFF;background-image:url(./images/formbg_name_n.gif); background-repeat:no-repeat;}
#mainContent .commentWrite .password {
	padding:0.3em 0.1em 0 5em;margin:0.1em;
	color:#505050;font-size:0.8em;line-height:1em;height:1.4em;width:10em;
	border:0.1em solid #d1d1d1;background-color:#FFF;background-image:url(./images/formbg_password_n.gif); background-repeat:no-repeat;}
#mainContent .commentWrite .homepage {
	padding:0.3em 0.1em 0 5em;margin:0.1em;
	color:#505050;font-size:0.8em;line-height:1em;height:1.4em;width:20em;
	border:0.1em solid #d1d1d1;background-color:#FFF;background-image:url(./images/formbg_homepage_n.gif); background-repeat:no-repeat;}
#mainContent .commentWrite textarea {
	padding:1.4em 0.4em 0.4em 0.4em;margin:0.4em 0.1em 0.1em 0.1em;
	color:#505050;font-size:0.8em;line-height:1.3em;overflow:auto;height:6em;width:62em;
	border:0.1em solid #d1d1d1;background-color:#FFFFFF;background-image:url(./images/formbg_comment_n.gif); background-repeat:no-repeat;overflow:visible;}
#mainContent .commentWrite .submit {
	padding:0 1em 0 0;margin:0;
	color:#CD7575;font-size:0.8em;line-height:1.2em;height:2em;width:62em;
	border:0;background-color:#FFFFFF;background-image:url(./images/form_confirm.gif); background-repeat:no-repeat; background-position:right top;}


/* **** footer **** */
#footer {
	font-size:0.8em;
}
#footer p {
	margin: 0.5em 0 1em 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}



/* ******************************** */
/* 반드시 들어가야 하는 스타일 시작 */
/* 페이징 - 현재 페이지 */
	.selected { font:1em; font-weight:bold;  color:#fff;background-color:#558bcf;padding:0 0.2em 0 0.2em}
	.paging { padding:0.5em 0;  text-align:center;font:0.7em;}
	.paging .no-more-prev,
	.paging .no-more-next { color:#505050; font:0.7em;}
	.paging .numbox { border-left:1px solid #afafaf; padding-left:0.6em; margin-left:0.7em;}
	.paging .num { font-size:0.7em; font-weight:bold;border-right:0.1em solid #afafaf; padding-right:0.7em; margin-right:0.4em;}
	.paging .prev,
	.paging .next { font:0.7em;}
	.paging a:link,
	.paging a:visited {font-size:0.8em;color:#505050;text-decoration:none}
	.paging a:hover { text-decoration:underline; font-size: 0.8em;}

/* 카테고리 - 이미지 버튼 */
	.ib { cursor:pointer;}
/* 카테고리 - 트리 셀 */
	.branch3 { cursor:pointer;font:0.9em; }
/* 카테고리 - 카테고리 옆 개수 스타일 */
	.c_cnt { font-size:0.6em; font-family:'Tahoma';  color:#b92828;}

/* 달력 월 표시 */
	.cal_month {color:#505050;font:0.9em;  height:18px; font-weight:bold;}
	.cal_month a:link {color:#505050}
	.cal_month a:visited {color:#505050}
	.cal_month a:hover {color:#B92828;text-decoration:underline}
/* 달력 요일 표시(th 영역) */
    .cal_week1 { font:0.8em;  height:1.2em;  font-weight:normal;color:#505050}
/* 달력 일요일 표시(th 영역) */
    .cal_week2 { font:0.8em;  color:#B92828; }
/* 달력 Week(tr 영역)  */
    .cal_week {  }
    .cal_current_week {  }
/* 달력 Day(td 영역) */
    .cal_day { font-size:0.9em;  color:#505050;  text-align:center;}
/* 달력 Day, 일요일 (td 영역)  */
    .cal_day_sunday { color:#b92828 !important}
    .cal_day_sunday a { color:#b92828 !important}
/* 달력 지난 달 날짜 표시(td)   */
    .cal_day1 { color:#B7B7B7;}
/* 달력 다음 달 날짜 표시(td)   */
    .cal_day2 { color:#B7B7B7;}
/* 달력 이번 달 날짜 표시(td) */
    .cal_day3 { color:#505050;}
/* 달력 오늘 날짜 표시(td) */
    .cal_day4 { font-weight:bold; background-color:#adb1b0;text-decoration:none}
	.cal_day4 a:link,
	.cal_day4 a:visited {text-decoration:none }
	.cal_day4 a:hover {text-decoration:underline}
/* 달력 글쓴 날 링크 스타일 */
    a.cal_click:link { text-decoration:underline}
    a.cal_click:visited { text-decoration:underline}
    a.cal_click:hover { font-weight:bold;text-decoration:underline}

/* 종류별 코멘트 [##_rp_rep_class_##] */
    .rp_general {  }
    .rp_admin { background:url(./images/iconAdmin.gif) no-repeat;  padding-left:20px; }
    .rp_secret { background:url(./images/iconSecret.gif) no-repeat;  padding-left:20px; }
/* 종류별 방명록 [##_guest_rep_class_##] */
    .guest_general { }
    .guest_admin { background:url(./images/iconAdmin.gif) no-repeat; padding-left:20px;}
    
/* 비밀 댓글 (로그아웃시 비밀글 표현)    */
    .hiddenComment { background:url(./images/iconSecret.gif) no-repeat;  padding-left:20px;  font-weight:normal;}

/* 이미지 아래 캡션 스타일 */
    .cap1 { margin-top:5px;color:#505050; text-align:center}

/* 그림 */
    .imageblock img { border:0px;}
/* 왼쪽 */
    .left { float:left; text-align:left;}
/* 가운데 */
    .center { float:none; text-align:center;}
/* 오른쪽 */
    .right { float:right; text-align:right;}
/* 그림 2개 배치 */
    .dual { margin-bottom:5px;}
/* 그림 3개 배치 */
    .triple { margin-bottom:5px;}

/* 본문 - more/less */
    .moreless_fold { background:url(./images/iconMore.gif) left no-repeat;  padding-left:10px; color:#B92828;margin-bottom:5px;}
    .moreless_top { background:url(./images/iconLess.gif) left no-repeat;  padding-left:10px; color:#B92828;margin-bottom:5px;}
    .moreless_content { width:70em;border:1px dotted #AFAFAF;padding:5px;}
	.moreless_body { background-color:#FFFFFF;border:5px solid #AFAFAF}
    .moreless_bottom { background:url(./images/iconLess.gif) right no-repeat;  padding-right:10px; color:#B92828; text-align:right;margin-top:5px}

/* 키워드 */ 
    .key1 { cursor: pointer; border-bottom: 1px dotted #808080; }

/* 
반드시 들어가야하는 스타일 끝 - 이 아래는 자유롭게 추가, 삭제 가능 
*/

.tFont2 {font-size:1.4em;}
.tFont1 {font-size:1.2em;}
.tFont {font-size:1.0em;}
.tFont-1 {font-size:0.8em;}
.tFont-2 {font-size:0.6em;}





/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

