diff --git a/addons/spamfilter/spamfilter.addon.php b/addons/spamfilter/spamfilter.addon.php
index e605e64ce..9c52ebfe3 100644
--- a/addons/spamfilter/spamfilter.addon.php
+++ b/addons/spamfilter/spamfilter.addon.php
@@ -82,7 +82,7 @@
}
// act==procReceiveTrackback (트랙백)일때 check_trackback==true이면 검사
- if($this->act=='procReceiveTrackback' && $check_trackback){
+ if($this->act=='trackback' && $check_trackback){
$oTrackbackModel = &getModel('trackback');
$document_srl = Context::get('document_srl');
$count = $oTrackbackModel->getTrackbackCountByIPAddress($document_srl, $ipaddress);
diff --git a/classes/file/FileHandler.class.php b/classes/file/FileHandler.class.php
index fd4521d7e..934618562 100644
--- a/classes/file/FileHandler.class.php
+++ b/classes/file/FileHandler.class.php
@@ -184,6 +184,8 @@
**/
function createImageFile($source_file, $target_file, $resize_width = 0, $resize_height = 0, $target_type = '') {
if(!file_exists($source_file)) return;
+ if(!$resize_width) $resize_width = 100;
+ if(!$resize_height) $resize_height = $resize_width;
// 이미지 정보를 구함
list($width, $height, $type, $attrs) = @getimagesize($source_file);
@@ -219,10 +221,15 @@
@imagefilledrectangle($thumb,0,0,$resize_width-1,$resize_height-1,$white);
// 이미지 정보가 정해진 크기보다 크면 크기를 바꿈 (%를 구해서 처리)
- if($resize_width>0 && $width >= $resize_width) $width_per = $resize_width / $width;
+ if($resize_width > 0 && $width >= $resize_width) $width_per = $resize_width / $width;
+ else $width_per = $width / $resize_width;
+
if($resize_height>0 && $height >= $resize_height) $height_per = $resize_height / $height;
- if($width_per < $height_per) $per = $height_per;
+ else $height_per = $height / $resize_height;
+
+ if($width_per > $height_per) $per = $height_per;
else $per = $width_per;
+
if(!$per) $per = 1;
// 원본 이미지의 타입으로 임시 이미지 생성
diff --git a/classes/optimizer/Optimizer.class.php b/classes/optimizer/Optimizer.class.php
index 2209eba0a..d840d2896 100644
--- a/classes/optimizer/Optimizer.class.php
+++ b/classes/optimizer/Optimizer.class.php
@@ -131,7 +131,7 @@ EndOfBuff;
**/
function replaceCssPath($file, $str) {
$this->tmp_css_path = Context::getRequestUri().ereg_replace("^\.\/","",dirname($file))."/";
- $str = preg_replace_callback('!url\(("|\'){0,1}([^\)]+)("|\'){0,1}\)!is', array($this, '_replaceCssPath'), $str);
+ $str = preg_replace_callback('!url\(("|\')?([^\)]+)("|\')?\)!is', array($this, '_replaceCssPath'), $str);
$str = preg_replace('!\/([^\/]*)\/\.\.\/!is','/', $str);
@@ -139,9 +139,8 @@ EndOfBuff;
}
function _replaceCssPath($matches) {
- if(eregi("^http",$matches[2])) return $matches[0];
- if(eregi("^\.\/common\/",$matches[2])) return $matches[0];
- return sprintf('url(%s)', $this->tmp_css_path.$matches[2]);
+ if(eregi("^(http|\/|\.\/common\/)",$matches[2])) return $matches[0];
+ return sprintf('url(%s%s)', $matches[1], $this->tmp_css_path.$matches[2]);
}
}
diff --git a/config/config.inc.php b/config/config.inc.php
index 84840bf98..c10e32a68 100644
--- a/config/config.inc.php
+++ b/config/config.inc.php
@@ -14,7 +14,7 @@
* 이 내용은 제로보드XE의 버전을 관리자 페이지에 표시하기 위한 용도이며
* config.inc.php의 수정이 없더라도 공식 릴리즈시에 수정되어 함께 배포되어야 함
**/
- define('__ZBXE_VERSION__', '0.1.7');
+ define('__ZBXE_VERSION__', '0.1.8');
/**
* @brief 디버깅 메세지 출력
diff --git a/modules/admin/lang/en.lang.php b/modules/admin/lang/en.lang.php
index 642c8964d..5a0e87639 100644
--- a/modules/admin/lang/en.lang.php
+++ b/modules/admin/lang/en.lang.php
@@ -9,11 +9,11 @@
$lang->env_setup = "Setting";
- $lang->env_information = "환경 정보";
- $lang->current_version = "설치된 버전";
- $lang->current_path = "설치된 경로";
- $lang->released_version = "최신 버전";
- $lang->about_download_link = "설치된 버전보다 최신의 버전이 배포되었습니다. download링크를 클릭하시면 다운 받으실 수 있습니다.";
+ $lang->env_information = "Environment Information";
+ $lang->current_version = "Current Version";
+ $lang->current_path = "Installed Path";
+ $lang->released_version = "Latest Version";
+ $lang->about_download_link = "Newer version of Zerboard XE is available. To download the latest version, click download link.";
$lang->item_module = "Module List";
$lang->item_addon = "Addon List";
@@ -35,7 +35,7 @@
$lang->welcome_to_zeroboard_xe = 'Welcome to the admin page of Zeroboard XE';
$lang->about_admin_page = "Admin page is still being developing,\nWe will add essential contents by accepting many good suggestions during Closebeta.";
- $lang->about_lang_env = "위 설정한 언어셋을 처음 방문하는 사용자들에게 동일하게 적용하기 위해서는 원하는 언어로 변경후 아래 [저장] 버튼을 클릭하시면 됩니다";
+ $lang->about_lang_env = "To apply selected language set to users as default, click the [Save] button after changing it.";
$lang->zeroboard_xe_user_links = 'Links for Users';
$lang->zeroboard_xe_developer_links = 'Links for Developers';
diff --git a/modules/blog/skins/cozy_simple/comment.html b/modules/blog/skins/cozy_simple/comment.html
deleted file mode 100644
index 9aaefded9..000000000
--- a/modules/blog/skins/cozy_simple/comment.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
diff --git a/modules/blog/skins/cozy_simple/comment_form.html b/modules/blog/skins/cozy_simple/comment_form.html
deleted file mode 100644
index f922c34bd..000000000
--- a/modules/blog/skins/cozy_simple/comment_form.html
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/css/blog_tree_menu.css b/modules/blog/skins/cozy_simple/css/blog_tree_menu.css
deleted file mode 100644
index 95137d8c7..000000000
--- a/modules/blog/skins/cozy_simple/css/blog_tree_menu.css
+++ /dev/null
@@ -1,88 +0,0 @@
-
-#blog_category .title_box { position:relative; padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; font-size:1em; color:#ef2121; font-family:Tahoma;}
-*:first-child+html #blog_category .title_box { height:20px; color:#ef2121;}
-
-#blog_category .category_list { padding:.8em 0 .8em 0; }
-
-#blog_category .node_item a { color:#6b6b6b; }
-
-#blog_category .unselected { cursor:pointer; font-size:1em; color:#54564b; }
-
-#blog_category .document_count {
- margin-left:5px;
- color:#AAAAAA;
- font-size:.8em;
-}
-
-#blog_category .page {
- cursor:pointer;
- background:url(../images/common/iconList.gif) no-repeat left;
-}
-
-#blog_category .folder_open {
- cursor:pointer;
- background:url(../images/common/iconFolderClose.gif) no-repeat left;
-}
-
-#blog_category .folder_close {
- cursor:pointer;
- background:url(../images/common/iconFolderClose.gif) no-repeat left;
-}
-
-#blog_category .item_open {
- display:block;
- padding-left:18px;
-}
-
-#blog_category .item_close {
- display:none;
- padding-left:18px;
-}
-
-#blog_category .line_null {
- padding-left:13px;
-}
-
-#blog_category .line_open {
- display:block;
- padding-left:18px;
- /*background:url(../images/tree_menu/line.gif) repeat-y left;*/
-}
-
-#blog_category .line_close {
- display:none;
- padding-left:18px;
- /*background:url(../images/tree_menu/line.gif) repeat-y left;*/
-}
-
-#blog_category .plus {
- padding-left:18px;
- /*background:url(../images/tree_menu/plus.gif) repeat-y left;*/
-}
-
-#blog_category .plus_bottom {
- padding-left:18px;
- /*background:url(../images/tree_menu/plusbottom.gif) no-repeat left;*/
-}
-
-#blog_category .minus {
- padding-left:18px;
- /*background:url(../images/tree_menu/minus.gif) repeat-y left;*/
-}
-
-#blog_category .minus_bottom {
- padding-left:18px;
- /*background:url(../images/tree_menu/minusbottom.gif) no-repeat left;*/
-}
-
-#blog_category .join {
- padding-left:18px;
- margin:0;
- /*background:url(../images/tree_menu/join.gif) repeat-y left;*/
-}
-
-#blog_category .join_bottom {
- padding-left:18px;
- /*background:url(../images/tree_menu/joinbottom.gif) no-repeat left;*/
-}
-
diff --git a/modules/blog/skins/cozy_simple/css/blue.css b/modules/blog/skins/cozy_simple/css/blue.css
deleted file mode 100644
index 14c8ecef6..000000000
--- a/modules/blog/skins/cozy_simple/css/blue.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@charset "utf-8";
-
-/* Blog Layout - Header */
-#header { margin:0 9px .8em 9px; clear:both; margin-top:.6em; background:#1187d8 url(../images/blue/bg_header.gif) no-repeat 2.5em top; border:1px solid #FFFFFF; overflow:hidden;}
-#blog_category .selected { font-weight:bold; cursor:default; font-size:1em; color:#1187d8; }
-#header #globalNavigation li.on a { color:#1187d8;}
-#header #tagLine { padding:0 0 0 30px; color:#bfdff4;}
-
-/* blogHeader */
-.blogHeader { position:relative; _width:100%; background:#1187d8 url(../images/blue/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.blogList { width:100%; position:relative; border-bottom:2px solid #1187d8; border-collapse:collapse; }
-
-.blogList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/blue/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.blogList td .replyAndTrackback { font:.8em Tahoma; color:#007ed5; cursor:default; position:relative; top:-.2em;}
-.blogList td.recommend { font:bold .8em Tahoma; color:#007ed5; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#007ed5; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.blogRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #1187d8;}
-.blogRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #1187d8; overflow:hidden;}
-.blogRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#007ed5;}
-
-.blogWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.blogWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/blue/bg_title_norepeat.gif) no-repeat left bottom;}
-.blogWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/blue/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/blog/skins/cozy_simple/css/bluish_green.css b/modules/blog/skins/cozy_simple/css/bluish_green.css
deleted file mode 100644
index 929242bf0..000000000
--- a/modules/blog/skins/cozy_simple/css/bluish_green.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@charset "utf-8";
-
-/* Blog Layout - Header */
-#header { margin:0 9px .8em 9px; clear:both; margin-top:.6em; background:#9ab09f url(../images/bluish_green/bg_header.gif) no-repeat 2.5em top; border:1px solid #FFFFFF; overflow:hidden;}
-#blog_category .selected { font-weight:bold; cursor:default; font-size:1em; color:#9ab09f; }
-#header #globalNavigation li.on a { color:#9ab09f;}
-#header #tagLine { padding:0 0 0 30px; color:#e6ebe7;}
-
-/* blogHeader */
-.blogHeader { position:relative; _width:100%; background:#9ab09f url(../images/bluish_green/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.blogList { width:100%; position:relative; border-bottom:2px solid #9ab09f; border-collapse:collapse; }
-
-.blogList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/bluish_green/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.blogList td .replyAndTrackback { font:.8em Tahoma; color:#9ab09f; cursor:default; position:relative; top:-.2em;}
-.blogList td.recommend { font:bold .8em Tahoma; color:#9ab09f; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#9ab09f; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.blogRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #9ab09f;}
-.blogRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #9ab09f; overflow:hidden;}
-.blogRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#9ab09f;}
-
-.blogWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.blogWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/bluish_green/bg_title_norepeat.gif) no-repeat left bottom;}
-.blogWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/bluish_green/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/blog/skins/cozy_simple/css/common.css b/modules/blog/skins/cozy_simple/css/common.css
deleted file mode 100644
index 24dd74a6b..000000000
--- a/modules/blog/skins/cozy_simple/css/common.css
+++ /dev/null
@@ -1,441 +0,0 @@
-@charset "utf-8";
-/*
-NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
-Jeong, Chan Myeong 070601~070630
-*/
-
-/* ----- List+Read+Write+Modify | Start ----- */
-.blogHeader h3 { float:left; clear:both; padding:1.9em 1.5em 1.8em 1.5em; font-size:1.2em; color:#FFFFFF;}
-
-/* blogInformation */
-.blogInformation { width:100%; clear:both; margin:0 0 .5em 0; background:#EFEFEF; color:#8D8D8D; overflow:hidden;}
-.articleNum { float:left; padding:.5em 0 .5em 2.3em; font:.8em Tahoma;}
-.articleNum strong { margin:0 0 0 .5em; padding:0 0 0 .7em; font:bold .9em Tahoma; color:#6F6F6F; background:url(../images/common/bar_1x8_c0c0c0.gif) no-repeat left .1em;}
-.accountNavigation { float:right; margin:.3em .5em 0 0; overflow:hidden;}
-.accountNavigation li { list-style:none; float:left; margin:0 0 0 -.1em; padding:.1em .8em 0 .8em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left .3em;}
-.accountNavigation li a {}
-
-/* blogList */
-.blogList tr:first-child td, .blogList tr.first-child td {}
-.blogList tr.notice {}
-.blogList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
-
-.blogList th a { color:#3e3f3e;}
-.blogList th span.on { font-weight:bold;}
-.blogList th.num { background-position:-3px bottom; padding:0;}
-.blogList th select { height:20px; }
-.blogList th.category { padding:0 .2em 0 .5em;}
-.blogList th.category.thumbStyle { background-position:-3px bottom !important; border-left:1px solid #ffffff; text-align:left;}
-.blogList th:first-child { background-position:-2px bottom;}
-.blogList th.first-child { background-position:-2px bottom;}
-.blogList th.author {}
-.blogList th.title {}
-.blogList th.reading { white-space:nowrap;}
-.blogList th.recommend { white-space:nowrap;}
-.blogList th.reply { white-space:nowrap;}
-.blogList th.date {}
-.blogList th.check { padding:0;}
-.blogList th.user {}
-.blogList th.registDate {}
-.blogList th.checkDate {}
-.blogList th.friendGroup {}
-.blogList th.userId {}
-.blogList th.userName {}
-.blogList th.userNick {}
-.blogList th.sendMessage {}
-.blogList th.last-child { border-right:1px solid #ffffff;}
-.blogList th .sort { padding:0 .2em; vertical-align:middle;}
-.blogList th select,
-.blogList th input { vertical-align:middle;}
-
-.blogList td { padding:.3em; border-bottom:1px solid #e4e4e2;}
-.blogList td.noline { border-bottom:none;}
-.blogList td.num { font:.8em Tahoma; color:#999999; padding:.5em .5em .5em 1.5em;}
-.blogList td.category {}
-.blogList tr.notice td { padding:.3em; white-space:nowrap;}
-.blogList tr.notice td img { margin:-.1em .3em 0 0;}
-.blogList td.thumb { padding:.5em 0 .5em .5em; width:145px; table-layout:fixed; white-space:nowrap;}
-.blogList td.thumb * { vertical-align:middle;}
-.blogList td.title.bold { font-size:1em; font-weight:bold;}
-.blogList td.title.bold a { position:relative; top:.3em;}
-.blogList td.title * { vertical-align:middle;}
-.blogList td.title,
-.blogList td.title a { color:#444444; text-decoration:none; }
-.blogList td.title a:visited { color:#777777;}
-.blogList td.title .title_wrap { width:100%; overflow:hidden; white-space:nowrap;}
-.blogList td.author { padding:0 .5em 0 1.3em; color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
-.blogList td.author a { font-size:1em; color:#333333;}
-.blogList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
-.blogList td.reply { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
-.blogList td.date { font:.8em Tahoma; color:#999999; text-align:center;}
-.blogList td.registDate { font:.8em Tahoma; color:#999999; text-align:center;}
-.blogList td.checkDate { font:.8em Tahoma; color:#333333; text-align:center;}
-.blogList td.summary { border-top:none; vertical-align:top; color:#666666; line-height:1.25em;}
-.blogList td.summary a { color:#666666; text-decoration:none; line-height:inherit;}
-.blogList td.summary a:visited { color:#999999;}
-.blogList td.check { text-align:center;}
-.blogList td.user { color:#333333; font-size:.9em;}
-.blogList td.user a { color:#333333;}
-.blogList td.userId { font:.9em Tahoma;}
-.blogList td.userName {}
-.blogList td.userNick { font-size:.9em; color:#999999;}
-.blogList td.friendGroup {}
-.blogList td.sendMessage { text-align:center; padding:0;}
-.blogList td.sendMessage .buttonFixedLeft { position:relative; left:20%; _left:0;}
-*:first-child+html .blogList td.sendMessage .buttonFixedLeft { left:0;}
-.blogList td input { _margin:-3px;}
-.blogList td.title.bold .replyAndTrackback { font:.6em Tahoma; color:#ff6600; cursor:default; position:relative; top:.3em;}
-.blogList td .replyAndTrackback strong { font:bold 1em Tahoma;}
-
-.blogList td .thumbnailSmall { margin:0 .3em 0 .3em;}
-.blogList td .thumbnailSmall img {}
-.blogList td .thumbnailMedium { margin:0 .3em 0 .3em;}
-.blogList td .thumbnailMedium img {}
-
-.blogList.thumbnail {}
-.blogList.thumbnail td { border-top:none; border-bottom:1px solid #eff0ed; padding:1.5em 0 0 1.5em; overflow:hidden;}
-.blogList.thumbnail div.cell { float:left; width:131px; margin:0 1.6em 0 0; padding-bottom:1.5em;}
-.blogList.thumbnail div.cell .fix_img { width:131px; height:106px; overflow:hidden;}
-.blogList.thumbnail div.title { color:#444444; margin:.5em 0 .2em 0;}
-.blogList.thumbnail div.title a { color:#444444;}
-.blogList.thumbnail div.nameAndDate { font-size:.9em; color:#999999; margin-bottom:.2em; padding-left:3px;}
-.blogList.thumbnail div.nameAndDate a { color:#999999;}
-.blogList.thumbnail div.nameAndDate .date { font:.8em Tahoma; color:#999999;}
-.blogList.thumbnail div.readAndRecommend { font-size:.9em; color:#666666; padding-left:3px;}
-.blogList.thumbnail div.readAndRecommend .num { font:.8em Tahoma;}
-.blogList.thumbnail div.readAndRecommend .vr { color:#dddddd;}
-.blogList.thumbnail div.readAndRecommend strong.num { font:bold .8em Tahoma; color:#494949;}
-
-/* blogSearch */
-.blogSearch { clear:both; text-align:center; margin-top:3em;}
-.blogSearch fieldset { display:inline; padding:10px 15px 10px 15px; border:none; background:#F4F4F4; overflow:hidden; }
-.blogSearch fieldset legend { overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.blogSearch * { vertical-align:middle;}
-.blogSearch select { float:left;}
-.blogSearch input { float:left; margin:0 .3em; background:#fbfbfb;}
-.searchButton ul { overflow:hidden;}
-.searchButton li { float:left; margin-right:.3em; list-style:none;}
-
-.buttonTypeGo { border:none; cursor:pointer; width:24px; height:20px; background:url(../images/common/buttonTypeInput24.gif) no-repeat; font:.75em Tahoma; text-align:center;}
-
-
-/* pageNavigation */
-.pageNavigation { text-align:center; display:block; margin:2.2em 0 2em 1.1em; font:bold .8em Tahoma; }
-.pageNavigation a, .pageNavigation a:visited, .pageNavigation a:active { margin-left:-4px; font:bold .8em Tahoma; color:#676767; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-.pageNavigation a:hover { text-decoration:none; }
-.pageNavigation a.goToFirst,
-.pageNavigation a.goToLast { border:none; border-right:1px solid #ffffff; border-left:1px solid #ffffff; z-index:99; padding:1px 5px 3px 4px;}
-.pageNavigation a.goToFirst img,
-.pageNavigation a.goToLast img { vertical-align:middle;}
-
-.buttonBox { float:right; margin:1.2em 0 0 0; }
-
-/* blogRead */
-#blog .blogRead { position:relative; margin:0; _overflow:hidden;}
-.blogRead .originalContent { padding:2em 0 2em 0;}
-.blogRead .titleAndCategory { float:left;}
-.blogRead .titleAndCategory h4 { font-size:1.4em; display:inline; padding-left:.2em;}
-.blogRead .titleAndCategory h4 a { color:#333333; }
-.blogRead .titleAndCategory .vr { font-size:.9em; margin:0 .3em; color:#c5c7c0;}
-.blogRead .titleAndCategory .category { font-size:.9em; color:#999999; white-space:nowrap;}
-
-.blogRead .dateAndModify { font-size:.8em; float:right; white-space:nowrap;}
-.blogRead .dateAndModify .date { font-size:.8em; font-family:Tahoma; color:#999999; margin-right:.5em; float:left; position:relative; top:.1em;}
-.blogRead .dateAndModify .date strong { font-size:1em; font-family:Tahoma;}
-.blogRead .dateAndModify ul { display:inline; margin:0 .4em 0 0;}
-.blogRead .dateAndModify ul li { float:left; margin-left:.3em; list-style:none;}
-.blogRead dl.uri { float:right; overflow:hidden; margin:0 0 3em .3em;}
-.blogRead dl.uri dt { float:left; clear:left; font-size:.9em; margin-right:.3em; color:#999999;}
-.blogRead dl.uri dd { clear:right; font-size:.8em; color:#d4d5d0;}
-.blogRead dl.uri dd span { font-family:Tahoma; color:#d4d5d0;}
-.blogRead .readBody { padding:0 .3em; color:#555555; overflow:hidden; margin-bottom:2em;}
-.blogRead .readBody p { margin:1em 0; line-height:1.5em;}
-.blogRead .contentBody { width:100%; overflow:hidden; }
-
-.blogRead .userInfo { float:left; white-space:nowrap;}
-.blogRead .userInfo .author { padding:0 .3em 0 0; color:#3074a5; margin-right:.3em;}
-.blogRead .userInfo .ipaddress { font-size:.9em; font-family:Tahoma; color:#888888; margin-right:.5em; }
-
-/* extraVars list */
-.extraVarsList { width:100%; border:1px solid #e0e1db; clear:both; margin-bottom:1em;}
-.extraVarsList tr.notice { background:#f8f8f8;}
-.extraVarsList tr.notice .num { font-size:.9em; font-weight:bold;}
-.extraVarsList tr.bg1 { background:#ffffff}
-.extraVarsList tr.bg2 { background:#fbfbfb;}
-.extraVarsList th { color:#3e3f3e; font-weight:bold; padding:.8em .5em .5em .5em; border-bottom:1px solid #eff0ed; border-right:1px solid #eff0ed;}
-.extraVarsList td { border-bottom:1px solid #eff0ed; padding:.5em .5em .5em 1em;}
-
-.blogRead .readFooter { border-top:1px solid #dfe0db; }
-.blogRead .readFooter .tag { margin-bottom:1em; padding:1em 0 0 0; }
-.blogRead .readFooter .tag h5 { display:inline; font-size:1em; margin:0 .3em 0 1.8em;}
-.blogRead .readFooter .tag ul,
-.blogRead .readFooter .tag li { display:inline;}
-.blogRead .readFooter .tag a { color:#444444; text-decoration:none;}
-.blogRead .readFooter .tag .tagIcon { vertical-align:middle;}
-.blogRead .readFooter .fileAttached { padding:1em 1em .8em 0; position:relative; _width:100%; border-bottom:1px solid #dfdfdd; overflow:hidden; background:#f9f9f9;}
-.blogRead .readFooter .fileAttached h5 {}
-.blogRead .readFooter .fileAttached ul { margin-left:1.8em;}
-.blogRead .readFooter .fileAttached li { float:left; margin-right:.75em; line-height:1.6em; color:#888888; white-space:nowrap; list-style:none;}
-.blogRead .readFooter .fileAttached li a { font-size:.9em; padding:.1em 0 .1em .2em; white-space:nowrap; position:relative; color:#888888; text-decoration:none; }
-.blogRead .readFooter .fileAttached li a:visited { color:#777777;}
-
-.listButton li { list-style:none; clear:both; text-align:right; margin-top:.5em; }
-
-.blogRead .replyAndTrackback { float:left; width:100%; background:url(../images/common/bg_repeat_x_eaeaea.gif) repeat-x left bottom; overflow:hidden;}
-.blogRead .replyAndTrackback li { float:left; font-weight:bold; margin:.3em 0 0 0; padding:.7em 1.1em .7em 1.2em; color:#FFFFFF; background:#B8B8B8; list-style:none;}
-.blogRead .replyAndTrackback li a { color:#FFFFFF; text-decoration:none; }
-.blogRead .replyAndTrackback li strong { padding:0 1.1em 0 0; background:#B8B8B8 url(../images/common/icon_close.gif) no-repeat right .2em;}
-.blogRead .replyAndTrackback li.selected a { color:#666666;}
-.blogRead .replyAndTrackback li.selected strong { padding:0 1.1em 0 0; background:#FFFFFF url(../images/common/icon_open.gif) no-repeat right .2em;}
-.blogRead .replyAndTrackback a#toggleReply { background:url(../images/common/buttonToggleReply.gif) no-repeat right top;}
-.blogRead .replyAndTrackback a#toggleTrackback { background:url(../images/common/buttonToggleReply.gif) no-repeat right -13px;}
-
-.blogRead .reply,
-.blogRead .trackback { color:#666666; border-left:1px solid #EAEAEA; border-right:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; padding-top:1em;}
-.blogRead .reply { }
-.blogRead .trackback { display:none;}
-
-.blogRead .topBorder { border-top:1px solid #EAEAEA; }
-
-.blogRead .reply .contentBox,
-.blogRead .trackback .contentBox { line-height:1.25em; color:#676767; clear:both; padding:1em; overflow:hidden;}
-.blogRead .reply .top_border,
-.blogRead .trackback .top_border { border-top:1px dashed #d8d8d8; }
-
-.blogRead .contentBox .content { width:100%; overflow:hidden; clear:both; margin-bottom:1em; }
-.blogRead .contentBox .author { float:left; overflow:hidden; color:#3173a3;}
-.blogRead .contentBox .date { float:right; font:.8em Tahoma; color:#cccccc; margin-left:.5em; }
-.blogRead .contentBox .replyOption { float:right; display:inline; white-space:nowrap; margin-left:.5em; }
-.blogRead .contentBox .replyOption img { vertical-align:middle;}
-
-.blogRead .contentBox .fileAttached { position:relative; _width:100%; overflow:hidden; clear:both; }
-.blogRead .contentBox .fileAttached h5 {}
-.blogRead .contentBox .fileAttached ul { margin-bottom:.5em;}
-.blogRead .contentBox .fileAttached li { float:left; margin-right:.75em; line-height:1.6em; color:#888888; white-space:nowrap; list-style:none;}
-.blogRead .contentBox .fileAttached li a { font-size:.9em; padding:.1em 0 .1em .2em; white-space:nowrap; position:relative; color:#888888; text-decoration:none; }
-.blogRead .contentBox .fileAttached li a:visited { color:#777777;}
-
-.blogRead .contentBox .title a { color:#676767 ; margin-right:.3em; text-decoration:none;}
-.blogRead .contentBox address a { font-size:.9em; color:#3173a3; margin-right:.3em; text-decoration:none; }
-.blogRead .contentBox address .trackback_date { font:.8em Tahoma; color:#cccccc; margin-left:.5em; }
-.blogRead .indent_box { background-color:#FBFBFB; }
-.blogRead .contentBox .indent {padding-left:1.5em; background:url(../images/common/icon_arrow_reply.gif) no-repeat left .1em;}
-
-/* blogEditor */
-.blogEditor { padding:.5em 0 1em 0; width:100%; overflow:hidden;}
-.blogEditor.reply { padding:.5em 1em 1em 1em; width:auto; overflow:hidden;}
-.blogEditor legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em;}
-.blogEditor fieldset { _width:100%; border:0px solid #eaeae7; border-top:none;}
-.blogEditor .userNameAndPw { position:relative; background:#fbfbfb; border-top:1px solid #eaeae7; border-bottom:1px solid #e1e1e1; padding:.5em 1em; white-space:nowrap;}
-.blogEditor .userNameAndPw * { vertical-align:middle;}
-.blogEditor .userNameAndPw label { margin-right:.2em; color:#666760;}
-.blogEditor .userNameAndPw input { color:#aaaaaa;}
-.blogEditor .userNameAndPw .userName { width:6em; margin-right:.8em;}
-.blogEditor .userNameAndPw .userPw { width:5em;}
-.blogEditor .userNameAndPw .emailAddress { width:6em;}
-.blogEditor .userNameAndPw .homePage { width:6em;}
-.blogEditor .userNameAndPw .checkSecret { position:absolute; right:2em; top:.7em;}
-.blogEditor .commentForm { width:100%; padding-bottom:.5em;}
-
-/* blogWrite */
-.blogWrite { width:100%; position:relative;}
-.blogWrite .userNameAndPw { margin-bottom:-1px;}
-
-.blogWrite div.title label.title { display:block; float:left; font-weight:bold; padding:.4em 0 0 1.5em; width:9.5em; white-space:nowrap;}
-.blogWrite div.title input#title { width:350px;}
-
-.blogWrite .option dt { display:block; float:left; font-weight:bold; padding:.3em 0 0 1.5em; width:9.5em; white-space:nowrap;}
-.blogWrite .option dd { float:left; margin-right:1em; padding-top:.2em; _padding-top:.1em;}
-.blogWrite .option dd * { vertical-align:middle;}
-.blogWrite .inputTypeText { background:#fbfbfb;}
-.blogWrite .trackbackURI { clear:both; border-top:1px solid #eff0ed; padding:4px 0 .8em 0;}
-.blogWrite .trackbackURI label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.blogWrite .trackbackURI .inputTypeText { width:50%;}
-.blogWrite .tag { clear:both; border-top:1px solid #eff0ed; padding:.8em 0;}
-.blogWrite .tag label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.blogWrite .tag .inputTypeText { width:50%;}
-.blogWrite .tag .help { vertical-align:middle;}
-.blogWrite .tag .info { padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
-.blogWrite .extra_vars { clear:both; border-top:1px solid #eff0ed; padding:.8em 0;}
-.blogWrite .extra_vars label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.blogWrite .extra_vars .info { clear:both; padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
-.blogWrite .extra_vars ul li { float:left; margin-right:1em; }
-
-/* ----- List+Read+Write+Modify | End ----- */
-
-
-/* ----- Member | Start ----- */
-
-.memberHeader { position:relative; _width:100%; background:#ED2027 url(../images/common/bg_top_title.gif) no-repeat 23px -6px; overflow:hidden;}
-.memberHeader h3 { float:left; clear:both; padding:1.2em 0 1em 1.7em; font-size:1.1em; color:#FFFFFF;}
-.memberInformation { width:100%; clear:both; margin:0 0 .5em 0; background:#EFEFEF; color:#8D8D8D; overflow:hidden;}
-.memberInformation .friendNum { float:left; padding:.7em 0 .7em 2em; background:url(../images/common/iconFriend.gif) no-repeat .5em .4em;}
-.memberInformation .friendNum strong { font:bold 11px Tahoma; color:#ec2127;}
-.memberInformation .addGroup { float:right; margin:.8em 1em .7em 0;}
-.memberInformation .instantMessage { float:right; margin:.7em; overflow:hidden;}
-.memberInformation .instantMessage li { float:left; margin:0 0 0 -.1em; padding:0 .5em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left .25em;}
-.memberInformation .instantMessage li a {white-space:nowrap; color:#666666;}
-.memberInformation .instantMessage li.on a { background-position:left -14px; font-weight:bold;}
-.memberInformation .instantMessage li a strong { font:bold 0.75em tahoma; color:#ee202a;}
-
-/* 친구목록 */
-.memberList { width:100%; position:relative; border-bottom:2px solid #ED2A32; border-collapse:collapse;}
-
-.memberList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/common/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.memberList th.check { padding:0;}
-.memberList th.friendGroup { padding:0 0 0 .3em; text-align:left;}
-.memberList th select,
-.memberList th input { vertical-align:middle;}
-.memberList th.repeat_bg { background:#ffffff url(../images/common/bg_title_repeat_x.gif) repeat-x left bottom;}
-
-.memberList td { padding:.3em; border-bottom:1px solid #e4e4e2;}
-.memberList td.noline { border-bottom:none;}
-.memberList td.check { text-align:center;}
-.memberList td.friendGroup { }
-.memberList td.userId { text-align:center; font:.9em Tahoma;}
-.memberList td.userName { text-align:center;}
-.memberList td.userNick { text-align:center; color:#999999;}
-.memberList td.registDate { text-align:center; font:.8em Tahoma;}
-.memberList td.sendMessage { text-align:center;}
-
-
-.smallBox { margin:5em auto 1em auto;}
-.smallBox.w268 { width:268px;}
-.smallBox.w298 { width:298px;}
-.smallBox.w498 { width:498px;}
-.smallBox .header { position:relative; _width:100%; background:#ed2027; overflow:hidden;}
-.smallBox .header h3 { font-size:1.2em; color:#FFFFFF; padding:1em 2em .8em 1em;}
-.smallBox .login { position:relative; border:none; padding:2.4em 0 2em 2.3em;}
-.smallBox .login legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.smallBox .login dl { overflow:hidden; width:162px; float:left;}
-.smallBox .login dl dt { float:left; width:55px; color:#54564b; height:22px; padding-top:5px;}
-.smallBox .login dl dd { float:left; width:105px; height:27px;}
-.smallBox .login dl dd input { width:90px;}
-.smallBox .login .loginButton { display:block; float:left; margin-top:27px; _margin-top:28px;}
-*:first-child+html .smallBox .login .loginButton { margin-top:28px;}
-.smallBox .login .keep { float:left; clear:both; white-space:nowrap; position:relative; left:55px; _left:52px;}
-*:first-child+html .smallBox .login .keep { left:52px;}
-.smallBox .login .keep input { vertical-align:middle;}
-.smallBox .login .keep label { font-size:11px; color:#999999;}
-.smallBox .help { background:#F7F7F7; border-top:1px solid #ed2a32; border-bottom:2px solid #ee2b33; overflow:hidden; padding:1.1em; text-align:center; height:1em;}
-.smallBox .help li { display:inline; padding:0 .3em 0 .7em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left center;}
-.smallBox .help li:first-child { background:none;}
-.smallBox .help li.first-child { _background:none;}
-.smallBox .help li a { font-size:11px; color:#54564b;}
-.smallBox .text { color:#54564b; text-align:center; padding:4.25em 2em 4.8em 2em;}
-.smallBox .text p { margin-bottom:.5em;}
-.smallBox .button img { vertical-align:top;}
-.smallBox.w268 .button ul { position:absolute; left:79px; }
-.smallBox.w298 .button ul { position:absolute; left:110px; }
-.smallBox.w498 .button ul { position:absolute; left:220px; }
-.smallBox .button ul li { float:left; margin-right:.3em;}
-.smallBox .complex { padding:1.5em 2em 2em 2em;}
-.smallBox .friend { width:100%;}
-.smallBox .friend th { width:7em; padding:.9em; border-bottom:1px solid #e4e5e0;}
-.smallBox .friend td { padding:.9em; border-bottom:1px solid #e4e5e0; background:url(../images/common/bar_1x18_e4e5e0.gif) no-repeat left bottom;}
-.smallBox .leftHeaderType { border-top:1px solid #e0e1db; border-left:1px solid #e0e1db; width:100%;}
-.smallBox .leftHeaderType th,
-.smallBox .leftHeaderType td { border-right:1px solid #e0e1db; border-bottom:1px solid #e0e1db; padding:.8em 1em .6em 1em;}
-.smallBox .leftHeaderType th { color:#333333; text-align:left; background:#f5f5f3;}
-.smallBox .leftHeaderType td { color:#444444;}
-.smallBox .inputTypeText { background:#fbfbfb;}
-.smallBox .group { overflow:hidden; padding:.5em 0; margin-top:.7em;}
-.smallBox .group select { float:left; width:180px; margin-top:1px;}
-.smallBox .pwModify { border:none;}
-.smallBox .pwModify legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.smallBox .pwModify input { width:9em;}
-.smallBox .pwModify br { display:block; margin-bottom:.2em}
-.smallBox .pwModify p { text-align:center; margin-top:1em; color:#54564b;}
-
-
-/* messageList */
-.messageList { width:100%; position:relative; border-bottom:2px solid #ed2a32; border-collapse:collapse;}
-.messageList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
-
-.messageList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/common/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.messageList th:first-child,
-.messageList th.first-child { background-position:-3px bottom;}
-.messageList th.author { background:url(../images/common/bg_title_repeat_x.gif) repeat-x left bottom; text-align:left;}
-.messageList th.check { padding:0;}
-.messageList th select,
-.messageList th input { vertical-align:middle;}
-
-.messageList td { padding:.3em; border-bottom:1px solid #EFEFEF;}
-.messageList td.noline { border-bottom:none;}
-.messageList td.category {}
-.messageList tr.notice td { padding:.7em .7em .7em .9em; white-space:nowrap;}
-.messageList tr.notice td img { margin:-.1em .3em 0 0;}
-.messageList td.thumb { padding:.5em 0 .5em .5em; width:145px; table-layout:fixed; white-space:nowrap;}
-.messageList td.thumb * { vertical-align:middle;}
-.messageList td.title {}
-.messageList td.title.bold { font-size:1em; font-weight:bold;}
-.messageList td.title.bold a { position:relative; top:.3em;}
-.messageList td.title * { vertical-align:middle;}
-.messageList td.title,
-.messageList td.title a { color:#444444;}
-.messageList td.title a:visited { color:#777777;}
-.messageList td.author { padding:0 .5em 0 1.3em; color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
-.messageList td.author a { font-size:1em; color:#333333;}
-.messageList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.recommend { font:bold .8em Tahoma; color:#ec2127; text-align:center;}
-.messageList td.reply { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
-.messageList td.date { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.registDate { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.checkDate { font:.8em Tahoma; color:#333333; text-align:center;}
-.messageList td.summary { border-top:none; vertical-align:top; color:#666666; line-height:1.25em;}
-.messageList td.summary a { color:#666666; text-decoration:none; line-height:inherit;}
-.messageList td.summary a:visited { color:#999999;}
-.messageList td.check { text-align:center;}
-.messageList td.user { color:#333333; font-size:.9em;}
-.messageList td.user a { color:#333333;}
-.messageList td.userId { font:.9em Tahoma;}
-.messageList td.userNick { font-size:.9em; color:#999999;}
-.messageList td.sendMessage { text-align:center; padding:0;}
-.messageList td.sendMessage .buttonFixedLeft { position:relative; left:20%; _left:0;}
-
-.readMessage { margin-bottom:2em;}
-.readMessage .messageHeader { padding:1.5em; height:1em; overflow:hidden;}
-.readMessage .messageHeader h4 { float:left; padding-left:.5em; font-size:1em; background:url(../images/common/iconArrow99.gif) no-repeat left .3em;}
-.readMessage .messageHeader address { float:right; white-space:nowrap;}
-.readMessage .messageHeader address em { font-size:.9em; font-style:normal; color:#333333; margin-right:.3em;}
-.readMessage .messageHeader address em a { color:#333333;}
-.readMessage .messageHeader address .date { font:.8em Tahoma; color:#999999;}
-.readMessage .messageBody { border:1px solid #e0e1db; margin:0 1.5em 1.5em 1.5em; padding:1em; position:relative; color:#666666;}
-.readMessage .deleteOrKeep { padding:.5em 0; overflow:hidden; background:#f5f5f3; border-top:1px solid #eaebe7; _width:100%;}
-.readMessage .deleteOrKeep li { position:relative; left:40%; float:left; margin-right:.5em;}
-.readMessage .button { position:relative; background:#f7f7f7; border-top:1px solid #ee2b33; border-bottom:2px solid #ee2b33; overflow:hidden; padding:.7em; text-align:center;}
-
-
-.joinTable.typeA { border-top:2px solid #ee1b24; border-collapse:collapse;}
-.joinTable.typeB { border-bottom:2px solid #ee1b24; background:#f9f9f9;}
-.joinTable.typeC { border-top:2px solid #ee2b33; border-bottom:2px solid #ee2b33; border-collapse:collapse;}
-.joinTable.typeB caption { border-top:1px dashed #919191; background:#f9f9f9;}
-.joinTable { width:100%;}
-.joinTable caption { padding:2em 0 .5em 1.5em; font-weight:bold; text-align:left; background:url(../images/common/iconH3.gif) no-repeat .5em 2em;}
-.joinTable th,
-.joinTable td { padding:.7em .5em .7em 1.5em; text-align:left; border-top:1px solid #eff0eb;}
-.joinTable td { background:url(../images/common/bar_1x18_e4e5e0.gif) no-repeat left bottom;}
-.joinTable th { width:10em;}
-.joinTable td textarea { width:40em; height:4.5em; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; line-height:1em; background:#fbfbfb; vertical-align:middle; float:left; margin-right:.5em; margin-bottom:.5em; color:#666666; overflow:auto;}
-.joinTable td input { border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; height:1em; line-height:1em; background:#fbfbfb; vertical-align:middle; float:left; margin-right:.5em; margin-bottom:.5em; color:#666666;}
-.joinTable td input.radio,
-.joinTable td input.check { border:none; padding:0; margin:0; background:none; margin-top:.4em;}
-.joinTable td input.w4em { width:4em;}
-.joinTable td input.w2em { width:2em;}
-.joinTable td select { float:left; margin-right:.5em;}
-.joinTable td .fl { margin-right:.5em;}
-.joinTable td br { clear:both;}
-.joinTable td p { float:left; font-size:.9em; color:#999999; padding-top:.5em; margin-right:.5em;}
-.joinTable td label { float:left; color:#3f4040; padding-top:.3em; margin-right:.5em;}
-.joinTable td a { color:#333333;}
-.joinTable .no_line { border:none;}
-.join_button { margin:1em 0 0 0; text-align:center;}
-.joinTable .add_info { padding:2.5em .5em .7em 1.5em; background:#f9f9f9; border-top:1px dashed #919191;}
-.buttonTypeWrite.join { margin-top:1.2em;}
-
-/* ----- Member | End ----- */
-
-
-.smallBox .inputPassword { position:relative; border:none; padding:2em 2em 1.5em 2em;}
-.smallBox .inputPassword .inputTypeText { float:left; margin-right:.5em; width:8em;}
-.smallBox .inputPassword legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
diff --git a/modules/blog/skins/cozy_simple/css/green.css b/modules/blog/skins/cozy_simple/css/green.css
deleted file mode 100644
index dcab06c12..000000000
--- a/modules/blog/skins/cozy_simple/css/green.css
+++ /dev/null
@@ -1,26 +0,0 @@
-@charset "utf-8";
-
-/* Blog Layout - Header */
-#header { margin:0 9px .8em 9px; clear:both; margin-top:.6em; background:#8dc63f url(../images/green/bg_header.gif) no-repeat 2.5em top; border:1px solid #FFFFFF; overflow:hidden;}
-#blog_category .selected { font-weight:bold; cursor:default; font-size:1em; color:#8dc63f; }
-#header #globalNavigation li.on a { color:#8dc63f;}
-#header #tagLine { padding:0 0 0 30px; color:#e2f1cf;}
-
-/* blogHeader */
-.blogHeader { position:relative; _width:100%; background:#8dc63f url(../images/green/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.blogList { width:100%; position:relative; border-bottom:2px solid #8dc63f; border-collapse:collapse; }
-
-.blogList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/green/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.blogList td .replyAndTrackback { font:.8em Tahoma; color:#27a939; cursor:default; position:relative; top:-.2em;}
-.blogList td.recommend { font:bold .8em Tahoma; color:#27a939; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#27a939; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.blogRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #8dc63f;}
-.blogRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #8dc63f; overflow:hidden;}
-.blogRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#8dc63f;}
-
-.blogWrite fieldset.bottomBorder { border-bottom:2px solid #8dc63f;}
-.blogWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/green/bg_title_norepeat.gif) no-repeat left bottom;}
-.blogWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/green/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
-
diff --git a/modules/blog/skins/cozy_simple/css/layout.css b/modules/blog/skins/cozy_simple/css/layout.css
deleted file mode 100644
index 805337694..000000000
--- a/modules/blog/skins/cozy_simple/css/layout.css
+++ /dev/null
@@ -1,94 +0,0 @@
-@charset "utf-8";
-/*
-NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
-Jeong, Chan Myeong 070601~070630
-*/
-
-li { list-style:none; }
-a { text-decoration:none; }
-
-/* Common Layout of Content Group */
-#content { width:100%; position:relative; padding-bottom:2em;}
-
-/* Blog Layout - Common */
-#bodyWrap { width:860px; margin:0 auto; overflow:hidden; background-color:#FFFFFF;}
-
-/* Blog Layout - Content Body */
-#contentBody { overflow:hidden; padding-bottom:2em; _width:100%;}
-
-/* Blog Layout - ColumnLeft */
-#columnLeft { float:left; width:182px; margin:0px 8px 0px 10px; _margin-left:5px;padding:0px;}
-
-/* Blog Layout - ColumnRight */
-#columnRight {}
-
-/* Blog Layout - Content */
-#content { float:left; width:650px; overflow:hidden; padding-right:10px; _width:640px; }
-
-/* ----- Blog | Start ----- */
-#headerWrap { width:860px; margin:0 auto; overflow:hidden;}
-#headerWrap #login_menu { margin-top:20px; padding:0 1.2em;}
-#headerWrap #login_menu .login {float:right}
-#headerWrap #login_menu .member { float:right}
-#headerWrap #login_menu .member li {display:inline; margin:0 0 0 -.1em; padding:0 .6em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left center;}
-
-/* Blog header Child*/
-#header h1 { font:bold 1.3em 돋움; margin:2em 0 .4em 30px; letter-spacing:-.05em; }
-#header h1 a { color:#FFFFFF;}
-#header #globalNavigation { width:100%; margin:2.4em 0 0 0; padding:.8em 0 .8em 0; background:#e4e4e4; overflow:hidden;}
-#header #globalNavigation ul { float:right; }
-#header #globalNavigation li { float:left; margin-left:-1px; background:url(../images/common/bar_1x10_c0c0c0.gif) no-repeat left bottom;}
-#header #globalNavigation li.no_bg { background:none;}
-#header #globalNavigation li a { display:block; float:left; padding:0 1.2em; font:bold .8em Tahoma; color:#54564b; white-space:nowrap;}
-
-/* Column Left & Right Common Child */
-.boxTypeA { position:relative; border:5px solid #F2F2F2; margin-bottom:.7em;}
-.boxTypeB { position:relative; margin-bottom:.7em;}
-.boxTypeB h2 { position:relative; padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; font-size:1em; color:#ef2121; font-family:Tahoma;}
-*:first-child+html .boxTypeB h2 { height:20px; color:#ef2121;}
-.boxTypeB .toggleMask {position:absolute; top:8px; right:5px; cursor:pointer; width:13px; height:13px; overflow:hidden;}
-.boxTypeB .showHide { position:relative;}
-.boxTypeB .optionList { position:absolute; top:8px; right:0; overflow:hidden;}
-.boxTypeB .optionList li { float:left; padding:0 .5em; margin-left:-1px; background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat left center;}
-.boxTypeB .optionList li a { color:#a4a4a4; font-size:.9em;}
-.boxTypeB .optionList li.on a { color:#000000;}
-.boxTypeB .showAll { color:#737373; font:bold .9em tahoma; white-space:nowrap; display:inline-block; padding:.4em .8em; background:url(../images/common/bar_1x8_c0c0c0.gif) no-repeat right center;}
-.boxTypeB .showAll.no_bg { background:none;}
-
-/* Profile */
-div#profile { padding:6px; overflow:hidden;}
-div#profile img.profile { width:153px; display:block; margin-bottom:1.2em;}
-div#profile dl#hello {}
-div#profile dl#hello dt { color:#333333; margin-bottom:.5em;}
-div#profile dl#hello dt a { color:#333333;}
-div#profile dl#hello dd { color:#777777; margin-bottom:1em;}
-div#profile ul#admin { overflow:hidden; height:1.2em;}
-div#profile ul#admin li { float:left; padding:0 .4em; font-size:.8em;}
-div#profile ul#admin li a { display:block;}
-div#profile ul#admin li.write a {}
-div#profile ul#admin li.setup { border-left:1px solid #e3e3e3;}
-div#profile ul#admin li.setup a {}
-div#profile ul#admin li a { color:#666666;}
-
-/* Category */
-div#category {}
-div#category #categoryList { padding:1em .8em .5em .8em;}
-div#category #categoryList li { position:relative; padding:0 0 0 15px; background:url(../images/common/iconFolderClose.gif) no-repeat 2px top;}
-div#category #categoryList li li {}
-div#category #categoryList li li li { background:url(../images/common/iconList.gif) no-repeat 5px top;}
-div#category #categoryList a { display:block; _display:inline-block; color:#6b6b6b; margin:0 0 6px 5px;}
-
-/* Search Box */
-div#searchBox { margin-bottom:.7em; padding:.6em; background:#f5f5f5; overflow:hidden; _height:25px;}
-div#searchBox fieldset { border:none;}
-div#searchBox fieldset legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-
-.blogWrite div.title { border-top:2px solid #ed1b24;}
-.write_post h3 {margin:1.5em 1em 1em 1em; font:bold 1.2em 돋움;}
-/* ----- Blog | End ----- */
-
-.blogHeader2 { width:100%; overflow:hidden; padding:2em 0 2em 0; color:#333333;}
-.blogHeader2 h3 { float:left; font-size:1.2em; padding-left:1em; background:url(../images/common/iconH3.gif) no-repeat .5em center;}
-.blogHeader2 .info { float:right; position:relative; right:1.2em; top:.3em; font-size:.8em; color:#8d8d8d;}
-.blogHeader2 .info q { quotes:none; font-weight:bold; font:bold 1.2em 돋움; color:#676767;}
-.blogHeader2 .info strong { font:bold .9em Tahoma; color:#696969;}
diff --git a/modules/blog/skins/cozy_simple/css/pink.css b/modules/blog/skins/cozy_simple/css/pink.css
deleted file mode 100644
index 6cce40855..000000000
--- a/modules/blog/skins/cozy_simple/css/pink.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@charset "utf-8";
-
-/* Blog Layout - Header */
-#header { margin:0 9px .8em 9px; clear:both; margin-top:.6em; background:#f70795 url(../images/pink/bg_header.gif) no-repeat 2.5em top; border:1px solid #FFFFFF; overflow:hidden;}
-#blog_category .selected { font-weight:bold; cursor:default; font-size:1em; color:#f70795; }
-#header #globalNavigation li.on a { color:#f70795;}
-#header #tagLine { padding:0 0 0 30px; color:#fdc1e4;}
-
-/* blogHeader */
-.blogHeader { position:relative; _width:100%; background:#f70795 url(../images/pink/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.blogList { width:100%; position:relative; border-bottom:2px solid #f70795; border-collapse:collapse; }
-
-.blogList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/pink/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.blogList td .replyAndTrackback { font:.8em Tahoma; color:#f70795; cursor:default; position:relative; top:-.2em;}
-.blogList td.recommend { font:bold .8em Tahoma; color:#f70795; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#f70795; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.blogRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #f70795;}
-.blogRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #f70795; overflow:hidden;}
-.blogRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#f70795;}
-
-.blogWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.blogWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/pink/bg_title_norepeat.gif) no-repeat left bottom;}
-.blogWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/pink/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/blog/skins/cozy_simple/css/red.css b/modules/blog/skins/cozy_simple/css/red.css
deleted file mode 100644
index 9e9e808c6..000000000
--- a/modules/blog/skins/cozy_simple/css/red.css
+++ /dev/null
@@ -1,25 +0,0 @@
-@charset "utf-8";
-
-/* Blog Layout - Header */
-#header { margin:0 9px .8em 9px; clear:both; margin-top:.6em; background:#ed2027 url(../images/red/bg_header.gif) no-repeat 2.5em top; border:1px solid #FFFFFF; overflow:hidden;}
-#blog_category .selected { font-weight:bold; cursor:default; font-size:1em; color:#ed2027; }
-#header #globalNavigation li.on a { color:#ee2126;}
-#header #tagLine { padding:0 0 0 30px; color:#f6c8c8;}
-
-/* blogHeader */
-.blogHeader { position:relative; _width:100%; background:#ED2027 url(../images/red/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.blogList { width:100%; position:relative; border-bottom:2px solid #ed2a32; border-collapse:collapse; }
-
-.blogList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/red/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.blogList td .replyAndTrackback { font:.8em Tahoma; color:#ed1f29; cursor:default; position:relative; top:-.2em;}
-.blogList td.recommend { font:bold .8em Tahoma; color:#ec2127; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#ff6600; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.blogRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #ed2228;}
-.blogRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #ee202a; overflow:hidden;}
-.blogRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#eb1c22;}
-
-.blogWrite fieldset.bottomBorder { border-bottom:2px solid #ed1b24;}
-.blogWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/red/bg_title_norepeat.gif) no-repeat left bottom;}
-.blogWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/red/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/blog/skins/cozy_simple/delete_comment_form.html b/modules/blog/skins/cozy_simple/delete_comment_form.html
deleted file mode 100644
index 984c3ac8e..000000000
--- a/modules/blog/skins/cozy_simple/delete_comment_form.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/delete_form.html b/modules/blog/skins/cozy_simple/delete_form.html
deleted file mode 100644
index 1ca638c93..000000000
--- a/modules/blog/skins/cozy_simple/delete_form.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/delete_trackback_form.html b/modules/blog/skins/cozy_simple/delete_trackback_form.html
deleted file mode 100644
index f907b6793..000000000
--- a/modules/blog/skins/cozy_simple/delete_trackback_form.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/extra_var_form.html b/modules/blog/skins/cozy_simple/extra_var_form.html
deleted file mode 100644
index 564cec9d9..000000000
--- a/modules/blog/skins/cozy_simple/extra_var_form.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
- {@ $val->default = explode(',',$val->default) }
-
-
-
-{@ $val->column_name = "extra_vars".$key}
-
-
-{@ $val->value = $oDocument->getExtraValue($key)}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {zdate($val->value,"Y-m-d")}
- {$lang->cmd_open_calendar}
-
-
-
-{$val->desc}
-
diff --git a/modules/blog/skins/cozy_simple/extra_var_value.html b/modules/blog/skins/cozy_simple/extra_var_value.html
deleted file mode 100644
index 0d5b21657..000000000
--- a/modules/blog/skins/cozy_simple/extra_var_value.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-{@ $val->column_name = "extra_vars".$key}
-
-
-{@ $val->value = $oDocument->getExtraValue($key)}
-
-
-
- {htmlspecialchars($val->value)}
-
-
-
-
- {$val->value}
-
-
-
-
-
-
-
- {$val->value}
-
-
-
-
-
-
- {htmlspecialchars($val->value[0])}
- -
- {htmlspecialchars($val->value[1])}
- -
- {htmlspecialchars($val->value[2])}
-
-
-
- {nl2br(htmlspecialchars($val->value))}
-
-
-
-
- {@ $_tmp_value[] = htmlspecialchars($v)}
-
- {implode(",",$_tmp_value)}
-
-
-
- {htmlspecialchars($val->value)}
-
-
-
- {zdate($val->value,"Y-m-d")}
-
-
-
diff --git a/modules/blog/skins/cozy_simple/filter/delete_comment.xml b/modules/blog/skins/cozy_simple/filter/delete_comment.xml
deleted file mode 100644
index 86ca3fb71..000000000
--- a/modules/blog/skins/cozy_simple/filter/delete_comment.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/filter/delete_document.xml b/modules/blog/skins/cozy_simple/filter/delete_document.xml
deleted file mode 100644
index 263ca7e86..000000000
--- a/modules/blog/skins/cozy_simple/filter/delete_document.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/filter/delete_trackback.xml b/modules/blog/skins/cozy_simple/filter/delete_trackback.xml
deleted file mode 100644
index 1d8841ba3..000000000
--- a/modules/blog/skins/cozy_simple/filter/delete_trackback.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/filter/input_password.xml b/modules/blog/skins/cozy_simple/filter/input_password.xml
deleted file mode 100644
index f2d1c0c42..000000000
--- a/modules/blog/skins/cozy_simple/filter/input_password.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/filter/insert.xml b/modules/blog/skins/cozy_simple/filter/insert.xml
deleted file mode 100644
index 3938eaf42..000000000
--- a/modules/blog/skins/cozy_simple/filter/insert.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/filter/insert_comment.xml b/modules/blog/skins/cozy_simple/filter/insert_comment.xml
deleted file mode 100644
index cedadbc8e..000000000
--- a/modules/blog/skins/cozy_simple/filter/insert_comment.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/footer.html b/modules/blog/skins/cozy_simple/footer.html
deleted file mode 100644
index c6171637a..000000000
--- a/modules/blog/skins/cozy_simple/footer.html
+++ /dev/null
@@ -1,2 +0,0 @@
-
-{$module_info->footer_text}
diff --git a/modules/blog/skins/cozy_simple/header.html b/modules/blog/skins/cozy_simple/header.html
deleted file mode 100644
index 5de3a6ef1..000000000
--- a/modules/blog/skins/cozy_simple/header.html
+++ /dev/null
@@ -1,2 +0,0 @@
-
-{$module_info->header_text}
diff --git a/modules/blog/skins/cozy_simple/images/blue/bg_header.gif b/modules/blog/skins/cozy_simple/images/blue/bg_header.gif
deleted file mode 100644
index 78d56c054..000000000
Binary files a/modules/blog/skins/cozy_simple/images/blue/bg_header.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/blue/bg_title.gif b/modules/blog/skins/cozy_simple/images/blue/bg_title.gif
deleted file mode 100644
index ff67b452b..000000000
Binary files a/modules/blog/skins/cozy_simple/images/blue/bg_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/blue/bg_title_norepeat.gif b/modules/blog/skins/cozy_simple/images/blue/bg_title_norepeat.gif
deleted file mode 100644
index aec4de0b0..000000000
Binary files a/modules/blog/skins/cozy_simple/images/blue/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/blue/bg_top_title.gif b/modules/blog/skins/cozy_simple/images/blue/bg_top_title.gif
deleted file mode 100644
index 99eecde67..000000000
Binary files a/modules/blog/skins/cozy_simple/images/blue/bg_top_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/bluish_green/bg_header.gif b/modules/blog/skins/cozy_simple/images/bluish_green/bg_header.gif
deleted file mode 100644
index d21c552ad..000000000
Binary files a/modules/blog/skins/cozy_simple/images/bluish_green/bg_header.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/bluish_green/bg_title.gif b/modules/blog/skins/cozy_simple/images/bluish_green/bg_title.gif
deleted file mode 100644
index c5cf6b136..000000000
Binary files a/modules/blog/skins/cozy_simple/images/bluish_green/bg_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/bluish_green/bg_title_norepeat.gif b/modules/blog/skins/cozy_simple/images/bluish_green/bg_title_norepeat.gif
deleted file mode 100644
index 227cf252b..000000000
Binary files a/modules/blog/skins/cozy_simple/images/bluish_green/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/bluish_green/bg_top_title.gif b/modules/blog/skins/cozy_simple/images/bluish_green/bg_top_title.gif
deleted file mode 100644
index 160682e41..000000000
Binary files a/modules/blog/skins/cozy_simple/images/bluish_green/bg_top_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/bar_1x7_c0c0c0.gif b/modules/blog/skins/cozy_simple/images/common/bar_1x7_c0c0c0.gif
deleted file mode 100644
index 1d2f92ff7..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/bar_1x7_c0c0c0.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/bar_1x8_c0c0c0.gif b/modules/blog/skins/cozy_simple/images/common/bar_1x8_c0c0c0.gif
deleted file mode 100644
index f37814f58..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/bar_1x8_c0c0c0.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/bg_repeat_x_eaeaea.gif b/modules/blog/skins/cozy_simple/images/common/bg_repeat_x_eaeaea.gif
deleted file mode 100644
index 0b011fe5d..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/bg_repeat_x_eaeaea.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn2_search.gif b/modules/blog/skins/cozy_simple/images/common/btn2_search.gif
deleted file mode 100644
index d521e671c..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn2_search.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn4_join_us.gif b/modules/blog/skins/cozy_simple/images/common/btn4_join_us.gif
deleted file mode 100644
index dbbea00f7..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn4_join_us.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn4_login.gif b/modules/blog/skins/cozy_simple/images/common/btn4_login.gif
deleted file mode 100644
index e649de24a..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn4_login.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn4_logout.gif b/modules/blog/skins/cozy_simple/images/common/btn4_logout.gif
deleted file mode 100644
index 36f1d6ec1..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn4_logout.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn4_rss.gif b/modules/blog/skins/cozy_simple/images/common/btn4_rss.gif
deleted file mode 100644
index 50584f6d5..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn4_rss.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn4_rss.gif.1 b/modules/blog/skins/cozy_simple/images/common/btn4_rss.gif.1
deleted file mode 100644
index 50584f6d5..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn4_rss.gif.1 and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_admin.gif b/modules/blog/skins/cozy_simple/images/common/btn_admin.gif
deleted file mode 100644
index bea6e158e..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_admin.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_cancel.gif b/modules/blog/skins/cozy_simple/images/common/btn_cancel.gif
deleted file mode 100644
index 65b303e06..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_cancel.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_cancel3.gif b/modules/blog/skins/cozy_simple/images/common/btn_cancel3.gif
deleted file mode 100644
index 5dfcfd0b7..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_cancel3.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_delete.gif b/modules/blog/skins/cozy_simple/images/common/btn_delete.gif
deleted file mode 100644
index 84a26c508..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_delete.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_delete2.gif b/modules/blog/skins/cozy_simple/images/common/btn_delete2.gif
deleted file mode 100644
index 1fcb5e906..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_delete2.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_edit.gif b/modules/blog/skins/cozy_simple/images/common/btn_edit.gif
deleted file mode 100644
index 3f7bd62b1..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_edit.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_findid.gif b/modules/blog/skins/cozy_simple/images/common/btn_findid.gif
deleted file mode 100644
index de53c3d16..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_findid.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_findpw.gif b/modules/blog/skins/cozy_simple/images/common/btn_findpw.gif
deleted file mode 100644
index 26f254d9a..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_findpw.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_joinus.gif b/modules/blog/skins/cozy_simple/images/common/btn_joinus.gif
deleted file mode 100644
index beed35641..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_joinus.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_list.gif b/modules/blog/skins/cozy_simple/images/common/btn_list.gif
deleted file mode 100644
index 8e56215c8..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_list.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_login.gif b/modules/blog/skins/cozy_simple/images/common/btn_login.gif
deleted file mode 100755
index b5e6a3e9e..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_login.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_logout.gif b/modules/blog/skins/cozy_simple/images/common/btn_logout.gif
deleted file mode 100644
index 0233282e6..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_logout.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_manage.gif b/modules/blog/skins/cozy_simple/images/common/btn_manage.gif
deleted file mode 100755
index 6f5cd05b7..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_manage.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_modify.gif b/modules/blog/skins/cozy_simple/images/common/btn_modify.gif
deleted file mode 100644
index 7b4321472..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_modify.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_my.gif b/modules/blog/skins/cozy_simple/images/common/btn_my.gif
deleted file mode 100644
index 72e626189..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_my.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_preview.gif b/modules/blog/skins/cozy_simple/images/common/btn_preview.gif
deleted file mode 100755
index e66ee6ca5..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_preview.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_print.gif b/modules/blog/skins/cozy_simple/images/common/btn_print.gif
deleted file mode 100755
index 56e0efb04..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_print.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_reply.gif b/modules/blog/skins/cozy_simple/images/common/btn_reply.gif
deleted file mode 100644
index 1482218b6..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_reply.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_reply2.gif b/modules/blog/skins/cozy_simple/images/common/btn_reply2.gif
deleted file mode 100644
index 5f34a2ea8..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_reply2.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_rss.gif b/modules/blog/skins/cozy_simple/images/common/btn_rss.gif
deleted file mode 100755
index 424624cfd..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_rss.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_scrap.gif b/modules/blog/skins/cozy_simple/images/common/btn_scrap.gif
deleted file mode 100755
index 29d9beb44..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_scrap.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_search.gif b/modules/blog/skins/cozy_simple/images/common/btn_search.gif
deleted file mode 100644
index 0a12014d3..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_search.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_vote.gif b/modules/blog/skins/cozy_simple/images/common/btn_vote.gif
deleted file mode 100755
index 5a637cb0e..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_vote.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/btn_write.gif b/modules/blog/skins/cozy_simple/images/common/btn_write.gif
deleted file mode 100644
index 53a2e1cf0..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/btn_write.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/buttonAscending.gif b/modules/blog/skins/cozy_simple/images/common/buttonAscending.gif
deleted file mode 100644
index b405cc323..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/buttonAscending.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/buttonDescending.gif b/modules/blog/skins/cozy_simple/images/common/buttonDescending.gif
deleted file mode 100644
index 2dc5575ff..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/buttonDescending.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/buttonTypeInput24.gif b/modules/blog/skins/cozy_simple/images/common/buttonTypeInput24.gif
deleted file mode 100644
index 0dcfc0e3d..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/buttonTypeInput24.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/iconArrow.gif b/modules/blog/skins/cozy_simple/images/common/iconArrow.gif
deleted file mode 100644
index 267b36495..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/iconArrow.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/iconFile.gif b/modules/blog/skins/cozy_simple/images/common/iconFile.gif
deleted file mode 100644
index d48f9c181..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/iconFile.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/iconFolderClose.gif b/modules/blog/skins/cozy_simple/images/common/iconFolderClose.gif
deleted file mode 100644
index 169ca65d6..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/iconFolderClose.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/iconH3.gif b/modules/blog/skins/cozy_simple/images/common/iconH3.gif
deleted file mode 100644
index 8ea0cec82..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/iconH3.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/iconList.gif b/modules/blog/skins/cozy_simple/images/common/iconList.gif
deleted file mode 100644
index 74ede5564..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/iconList.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/iconTag.gif b/modules/blog/skins/cozy_simple/images/common/iconTag.gif
deleted file mode 100644
index ecfdb5585..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/iconTag.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/icon_arrow_reply.gif b/modules/blog/skins/cozy_simple/images/common/icon_arrow_reply.gif
deleted file mode 100644
index bbabbd7ea..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/icon_arrow_reply.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/icon_gofirst.gif b/modules/blog/skins/cozy_simple/images/common/icon_gofirst.gif
deleted file mode 100644
index 68ba6ef96..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/icon_gofirst.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/icon_golast.gif b/modules/blog/skins/cozy_simple/images/common/icon_golast.gif
deleted file mode 100644
index f2450047d..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/icon_golast.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/icon_notice.gif b/modules/blog/skins/cozy_simple/images/common/icon_notice.gif
deleted file mode 100644
index d9fb255f3..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/icon_notice.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_admin.gif b/modules/blog/skins/cozy_simple/images/common/txt_admin.gif
deleted file mode 100644
index bf301b8a6..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_admin.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_date.gif b/modules/blog/skins/cozy_simple/images/common/txt_date.gif
deleted file mode 100644
index 524d2d782..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_date.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_friend.gif b/modules/blog/skins/cozy_simple/images/common/txt_friend.gif
deleted file mode 100644
index 178b5ffe0..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_friend.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_hit.gif b/modules/blog/skins/cozy_simple/images/common/txt_hit.gif
deleted file mode 100644
index cc9771319..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_hit.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_hot.gif b/modules/blog/skins/cozy_simple/images/common/txt_hot.gif
deleted file mode 100644
index 34e12c1ee..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_hot.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_message.gif b/modules/blog/skins/cozy_simple/images/common/txt_message.gif
deleted file mode 100644
index 54560b9e3..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_message.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_my.gif b/modules/blog/skins/cozy_simple/images/common/txt_my.gif
deleted file mode 100644
index 3c1687494..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_my.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_name.gif b/modules/blog/skins/cozy_simple/images/common/txt_name.gif
deleted file mode 100644
index 789dba359..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_name.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_option.gif b/modules/blog/skins/cozy_simple/images/common/txt_option.gif
deleted file mode 100644
index 9cb5202b7..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_option.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/common/txt_title.gif b/modules/blog/skins/cozy_simple/images/common/txt_title.gif
deleted file mode 100644
index 34125f7a7..000000000
Binary files a/modules/blog/skins/cozy_simple/images/common/txt_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/green/bg_header.gif b/modules/blog/skins/cozy_simple/images/green/bg_header.gif
deleted file mode 100644
index 8f2419252..000000000
Binary files a/modules/blog/skins/cozy_simple/images/green/bg_header.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/green/bg_title.gif b/modules/blog/skins/cozy_simple/images/green/bg_title.gif
deleted file mode 100644
index 9223e8058..000000000
Binary files a/modules/blog/skins/cozy_simple/images/green/bg_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/green/bg_title_norepeat.gif b/modules/blog/skins/cozy_simple/images/green/bg_title_norepeat.gif
deleted file mode 100644
index 57aa0ebea..000000000
Binary files a/modules/blog/skins/cozy_simple/images/green/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/green/bg_top_title.gif b/modules/blog/skins/cozy_simple/images/green/bg_top_title.gif
deleted file mode 100644
index 95cfa0245..000000000
Binary files a/modules/blog/skins/cozy_simple/images/green/bg_top_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/pink/bg_header.gif b/modules/blog/skins/cozy_simple/images/pink/bg_header.gif
deleted file mode 100644
index a8dd48b31..000000000
Binary files a/modules/blog/skins/cozy_simple/images/pink/bg_header.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/pink/bg_title.gif b/modules/blog/skins/cozy_simple/images/pink/bg_title.gif
deleted file mode 100644
index 4c587d473..000000000
Binary files a/modules/blog/skins/cozy_simple/images/pink/bg_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/pink/bg_title_norepeat.gif b/modules/blog/skins/cozy_simple/images/pink/bg_title_norepeat.gif
deleted file mode 100644
index 80a473e84..000000000
Binary files a/modules/blog/skins/cozy_simple/images/pink/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/pink/bg_top_title.gif b/modules/blog/skins/cozy_simple/images/pink/bg_top_title.gif
deleted file mode 100644
index d218b2a9e..000000000
Binary files a/modules/blog/skins/cozy_simple/images/pink/bg_top_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/poweredbyzbxe.png b/modules/blog/skins/cozy_simple/images/poweredbyzbxe.png
deleted file mode 100644
index e15f5af89..000000000
Binary files a/modules/blog/skins/cozy_simple/images/poweredbyzbxe.png and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/red/bg_header.gif b/modules/blog/skins/cozy_simple/images/red/bg_header.gif
deleted file mode 100644
index cdb5ebffa..000000000
Binary files a/modules/blog/skins/cozy_simple/images/red/bg_header.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/red/bg_title.gif b/modules/blog/skins/cozy_simple/images/red/bg_title.gif
deleted file mode 100644
index f693fc693..000000000
Binary files a/modules/blog/skins/cozy_simple/images/red/bg_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/red/bg_title_norepeat.gif b/modules/blog/skins/cozy_simple/images/red/bg_title_norepeat.gif
deleted file mode 100644
index f1b2417f5..000000000
Binary files a/modules/blog/skins/cozy_simple/images/red/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/images/red/bg_top_title.gif b/modules/blog/skins/cozy_simple/images/red/bg_top_title.gif
deleted file mode 100644
index c4ae66243..000000000
Binary files a/modules/blog/skins/cozy_simple/images/red/bg_top_title.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/input_password_form.html b/modules/blog/skins/cozy_simple/input_password_form.html
deleted file mode 100644
index 985f1ffd5..000000000
--- a/modules/blog/skins/cozy_simple/input_password_form.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/js/blog.js b/modules/blog/skins/cozy_simple/js/blog.js
deleted file mode 100644
index b430fbaac..000000000
--- a/modules/blog/skins/cozy_simple/js/blog.js
+++ /dev/null
@@ -1,120 +0,0 @@
-/**
- * @file modules/blog/js/blog.js
- * @author zero (zero@nzeo.com)
- * @brief blog 모듈의 javascript
- **/
-
-/* 글쓰기 작성후 */
-function completeDocumentInserted(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var category_srl = ret_obj['category_srl'];
-
- alert(message);
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(category_srl) url = url.setQuery('category',category_srl);
- location.href = url;
-}
-
-/* 글 삭제 */
-function completeDeleteDocument(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('act','').setQuery('document_srl','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 검색 실행 */
-function completeSearch(fo_obj, params) {
- fo_obj.submit();
-}
-
-// 현재 페이지 reload
-function completeReload(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
-
- location.href = location.href;
-}
-
-/* 댓글쓰기 submit */
-function doCommentSubmit() {
- var fo_obj = xGetElementById('fo_comment_write');
- procFilter(fo_obj, insert);
-}
-
-/* 댓글 글쓰기 작성후 */
-function completeInsertComment(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var comment_srl = ret_obj['comment_srl'];
-
- alert(message);
- var url = current_url.setQuery('comment_srl','').setQuery('act','').setQuery('rnd',comment_srl);
- if(comment_srl) url += '#comment_'+comment_srl;
- location.href = url;
-}
-
-/* 댓글 삭제 */
-function completeDeleteComment(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 트랙백 삭제 */
-function completeDeleteTrackback(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var page = ret_obj['page'];
-
- var url = "./?mid="+mid+'&document_srl='+document_srl;
- if(page) url += "&page="+page;
-
- alert(message);
-
- location.href = url;
-}
-
-/* 카테고리 이동 */
-function doChangeCategory(sel_obj, url) {
- var category_srl = sel_obj.options[sel_obj.selectedIndex].value;
- if(!category_srl) location.href=url;
- else location.href=url+'&category='+category_srl;
-}
-
-// Editor Reply And Trackback Toggle
-function toggleReply(id) {
- xGetElementById('reply_'+id).style.display = 'block';
- xGetElementById('trackback_'+id).style.display = 'none';
- xGetElementById('toggleReply_'+id).parentNode.className = 'selected';
- xGetElementById('toggleTrackback_'+id).parentNode.className = '';
-}
-
-function toggleTrackback(id) {
- xGetElementById('reply_'+id).style.display = 'none';
- xGetElementById('trackback_'+id).style.display = 'block';
- xGetElementById('toggleReply_'+id).parentNode.className = '';
- xGetElementById('toggleTrackback_'+id).parentNode.className = 'selected';
-}
diff --git a/modules/blog/skins/cozy_simple/js/blog_tree_menu.js b/modules/blog/skins/cozy_simple/js/blog_tree_menu.js
deleted file mode 100644
index 167ba1734..000000000
--- a/modules/blog/skins/cozy_simple/js/blog_tree_menu.js
+++ /dev/null
@@ -1,282 +0,0 @@
-/**
- * @file blog_tree_menu.js
- * @author zero (zero@nzeo.com)
- * @brief xml파일을 읽어서 트리 메뉴를 그려줌
- *
- * common/tpl/tree_menu.js 를 서비스용으로만 사용하기 위해서 수정한 것.
- * 관리 기능이 없고 css 적용이 가능
- **/
-
-// 폴더를 모두 열고/닫기 위한 변수 설정
-var blog_tree_menu_folder_list = new Array();
-
-// 노드의 정보를 가지고 있을 변수
-var blog_node_info_list = new Array();
-
-// 카테고리별 문서 수를 가지고 있는 전역 변수
-var category_document_count = new Array();
-var total_document_count = 0;
-
-// 카테고리의 문서 갯수를 세팅하는 함수
-function setDocumentCount(node_srl, document_count) {
- category_document_count[node_srl] = document_count;
- total_document_count += document_count;
-}
-
-// 카테고리의 node_srl로 문서 갯수를 리턴하는 함수
-function getDocumentCount(node_srl) {
- return parseInt(category_document_count[node_srl],10);
-}
-
-// 트리메뉴의 정보를 담고 있는 xml파일을 읽고 drawTreeMenu()를 호출하는 함수
-function blogLoadTreeMenu(xml_url, title, index_url) {
- // 일단 그릴 곳을 찾아서 사전 작업을 함 (그릴 곳이 없다면 아예 시도를 안함)
- var zone = xGetElementById("blog_category");
- if(typeof(zone)=="undefined") return;
-
- // 제목이 없으면 제목을 category로 지정
- if(typeof(title)=="undefined" || !title) title = "category";
-
- // index url이 없으면 현재 # 으로 대체
- if(!index_url) index_url= "#";
-
- // xml_handler를 이용해서 직접 메뉴 xml파일를 읽음
- if(!xml_url) return;
- var oXml = new xml_handler();
- oXml.reset();
- oXml.xml_path = xml_url;
-
- var param = {"title":title, "index_url":index_url}
-
- // 요청후 drawTreeMenu()함수를 호출 (xml_handler.js에서 request method를 직접 이용)
- oXml.request(blogDrawTreeMenu, oXml, null, null, null, param);
-}
-
-// 트리메뉴 XML정보를 이용해서 정해진 zone에 출력
-var blog_menu_selected = false;
-function blogDrawTreeMenu(oXml, callback_func, resopnse_tags, null_func, param) {
- var title = param.title;
- var index_url = param.index_url;
-
- var zone = xGetElementById("blog_category");
- var html = "";
-
- // 받아온 xml내용을 이용하여 트리 메뉴 그림
- var xmlDoc = oXml.getResponseXml();
- if(!xmlDoc) {
- xInnerHtml(zone, html);
- return null;
- }
-
- // node 태그에 해당하는 값들을 가져와서 html을 작성
- var node_list = xmlDoc.getElementsByTagName("node");
- if(node_list.length>0) {
- var root = xmlDoc.getElementsByTagName("root")[0];
- var output = blogDrawNode(root,0);
- html += output.html;
- }
-
- // 제목 지정
- var title_class = "selected";
- if(blog_menu_selected) title_class = "unselected";
- var title_html = ''+title+' ';
- if(total_document_count) title_html += '('+total_document_count+')';
- html = title_html+'
'+html+'
';
-
- // 출력하려는 zone이 없다면 load후에 출력하도록 함
- if(!zone) {
- xAddEventListener(window, 'load', function() { blogDrawTeeMenu(html); });
-
- // 출력하려는 zone을 찾아졌다면 바로 출력
- } else {
- xInnerHtml(zone, html);
- }
-
- return null;
-}
-
-// 페이지 랜더링 중에 메뉴의 html이 완성되었을때 window.onload event 후에 그리기 재시도를 하게 될 함수
-function blogDrawTeeMenu(html) {
- xInnerHtml("blog_category", html);
-}
-
-// root부터 시작해서 recursive하게 노드를 표혐
-function blogDrawNode(parent_node, depth) {
- var output = {html:"", expand:"N"}
-
- for (var i=0; i< parent_node.childNodes.length; i++) {
- var html = "";
- var selected = false;
-
- // nodeName이 node가 아니면 패스~
- var node = parent_node.childNodes.item(i);
- if(node.nodeName!="node") continue;
-
- // node의 기본 변수들 체크
- var node_srl = node.getAttribute("node_srl");
- var text = node.getAttribute("text");
- var url = node.getAttribute("url");
- var expand = node.getAttribute("expand");
- if(!text) continue;
-
- // 자식 노드가 있는지 확인
- var hasChild = false;
- if(node.hasChildNodes()) hasChild = true;
-
- // nextSibling가 있는지 확인
- var hasNextSibling = false;
- if(i==parent_node.childNodes.length-1) hasNextSibling = true;
-
- // 후에 사용하기 위해 blog_node_info_list에 node_srl을 값으로 하여 node object 추가
- blog_node_info_list[node_srl] = node;
-
- // zone_id 값을 세팅
- var zone_id = "blog_category_"+node_srl;
- blog_tree_menu_folder_list[blog_tree_menu_folder_list.length] = zone_id;
-
- var current_category = current_url.getQuery('category');
- if(current_category == node_srl) {
- selected = true;
- blog_menu_selected = true;
- }
-
- // blog_selected_node이 node_srl과 같으면 펼침으로 처리
- if(selected) expand = "Y";
-
- // 아이콘 설정
- var line_class = null;
- var folder_class = null;
-
- // 자식 노드가 있을 경우 자식 노드의 html을 구해옴
- var child_output = null;
- var child_html = "";
-
- if(hasChild) {
- // 자식 노드의 zone id를 세팅
- var child_zone_id = zone_id+"_child";
- blog_tree_menu_folder_list[blog_tree_menu_folder_list.length] = child_zone_id;
-
- // html을 받아옴
- child_output = blogDrawNode(node, depth+1);
- var chtml = child_output.html;
- var cexpand = child_output.expand;
- if(cexpand == "Y") expand = "Y";
-
- // 무조건 펼침이 아닐 경우
- if(expand!="Y") {
- var line_class = "line_close";
- if(hasNextSibling) line_class = "item_close";
- //if(depth==0) line_class = "line_null";
- child_html += ''+chtml+'
';
-
- // 무조건 펼침일 경우
- } else {
- var line_class = "line_open";
- if(hasNextSibling) line_class = "item_open";
- //if(depth==0) line_class = "line_null";
- child_html += ''+chtml+'
';
- }
- }
-
- // 자식 노드가 있는지 확인하여 있으면 아이콘을 바꿈
- if(hasChild) {
-
- // 무조건 펼침이 아닐 경우
- if(expand != "Y") {
- if(!hasNextSibling) {
- line_class = "minus";
- folder_class = "folder_close";
- } else {
- line_class = "minus_bottom";
- folder_class = "folder_close";
- }
- // 무조건 펼침일 경우
- } else {
- if(!hasNextSibling) {
- line_class = "plus";
- folder_class = "folder_open";
- } else {
- line_class = "plus_bottom";
- folder_class = "folder_open";
- }
- }
-
- // 자식 노드가 없을 경우
- } else {
- if(hasNextSibling) {
- line_class = "join_bottom";
- folder_class = "page";
- } else {
- line_class = "join";
- folder_class = "page";
- }
- }
-
- if(depth==0) line_class = 'line_null';
-
-
- // html 작성
- var click_str = ' class="'+folder_class+'"' ;
- if(hasChild) click_str += ' onclick="blogToggleFolder(\''+zone_id+'\');return false;" ';
-
- var text_class = "unselected";
- if(selected) text_class = "selected";
-
- var document_count_text = "";
- var document_count = getDocumentCount(node_srl);
- if(document_count>0) document_count_text = '('+document_count+')';
-
- // 왼쪽 폴더/페이지와 텍스트 위치를 맞추기 위해;;; table태그 일단 사용. 차후 바꾸자..
- html += ''+
- '
';
-
- if(hasChild && child_html) html += child_html;
-
- html += '
';
-
- output.html += html;
-
- if(expand=="Y") output.expand = "Y";
- }
- return output;
-}
-
-// 노드의 폴더 아이콘 클릭시
-function blogToggleFolder(zone_id) {
- // 아이콘을 클릭한 대상을 찾아봄
- var child_zone = xGetElementById(zone_id+"_child");
- if(!child_zone) return;
-
- var line_obj = xGetElementById(zone_id+'_line');
- var folder_obj = xGetElementById(zone_id+'_folder');
-
-
- // 대상의 자식 노드들이 숨겨져 있다면 열고 아니면 닫기
- if(folder_obj.className == "folder_open") {
- child_zone.style.display = "none";
-
- if(!line_obj.className.search('null')) {
- if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'plus_bottom';
- else line_obj.className = 'plus';
- }
-
- folder_obj.className = 'folder_close'
- } else {
- child_zone.style.display = "block";
-
- if(!line_obj.className.search('null')) {
- if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'minus_bottom';
- else line_obj.className = 'minus';
- }
-
- folder_obj.className = 'folder_open';
- }
-}
-
-// 노드 클릭시
-function blogSelectNode(url) {
- location.href = url;
-}
diff --git a/modules/blog/skins/cozy_simple/layout.html b/modules/blog/skins/cozy_simple/layout.html
deleted file mode 100644
index 4605404d0..000000000
--- a/modules/blog/skins/cozy_simple/layout.html
+++ /dev/null
@@ -1,170 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- {@$layout_info->colorset = "red"}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

-
-
-
-
-
- - {$layout_info->profile}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

-
-
-

-
-
-

-
-
-

-
-
-

-
-
-

-
-
-

-
-
-

-
-
-
-

-
-
-
-
-
-
{$content}
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/list.html b/modules/blog/skins/cozy_simple/list.html
deleted file mode 100644
index 3f4fb04ad..000000000
--- a/modules/blog/skins/cozy_simple/list.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-  |
-  |
-  |
-
-
-
-
-
- | {$no} |
-
- {$document->getTitleText()}
-
- [R{$document->getCommentCount()}]
-
-
- [T{$document->getTrackbackCount()}]
-
-
- |
- {$document->get('readed_count')} |
- {$document->getRegdate('Y-m-d')} |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

-
-
-
{$page_no}
-
-
{$page_no}
-
-
-

-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/message.html b/modules/blog/skins/cozy_simple/message.html
deleted file mode 100644
index 00bf01814..000000000
--- a/modules/blog/skins/cozy_simple/message.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- {$message}
-
-
-
- {$lang->cmd_login}
-
-
-
diff --git a/modules/blog/skins/cozy_simple/screenshot/blue.gif b/modules/blog/skins/cozy_simple/screenshot/blue.gif
deleted file mode 100644
index af9f7f695..000000000
Binary files a/modules/blog/skins/cozy_simple/screenshot/blue.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/screenshot/bluish_green.gif b/modules/blog/skins/cozy_simple/screenshot/bluish_green.gif
deleted file mode 100644
index d2a805bf4..000000000
Binary files a/modules/blog/skins/cozy_simple/screenshot/bluish_green.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/screenshot/green.gif b/modules/blog/skins/cozy_simple/screenshot/green.gif
deleted file mode 100644
index e88a23d4f..000000000
Binary files a/modules/blog/skins/cozy_simple/screenshot/green.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/screenshot/pink.gif b/modules/blog/skins/cozy_simple/screenshot/pink.gif
deleted file mode 100644
index 2a9caf480..000000000
Binary files a/modules/blog/skins/cozy_simple/screenshot/pink.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/screenshot/red.gif b/modules/blog/skins/cozy_simple/screenshot/red.gif
deleted file mode 100644
index 27402a75b..000000000
Binary files a/modules/blog/skins/cozy_simple/screenshot/red.gif and /dev/null differ
diff --git a/modules/blog/skins/cozy_simple/skin.xml b/modules/blog/skins/cozy_simple/skin.xml
deleted file mode 100644
index 3a881a139..000000000
--- a/modules/blog/skins/cozy_simple/skin.xml
+++ /dev/null
@@ -1,158 +0,0 @@
-
-
- cozy simple style
- Cozyシンプルスタイル
- cozy simple style
- Cozy样式皮肤
-
- (주)NHN
- (株)NHN
- (株)NHN
- NHN Corp
-
- cozy simple 스킨의 목록형입니다.
- 디자인 : 서기정 (http://blog.naver.com/addcozy)
- HTML/CSS : 소지훈
-
-
- Cozyシンプルスキンのリストスタイルです。
- デザイン:ソギジョン(http://blog.naver.com/addcozy)
- HTML/CSS:ソジフン
-
-
- This is list style blog of cozy simple skin.
- Design : Ki-Jeong Seo (http://blog.naver.com/addcozy)
- HTML/CSS : Ji-Hun So
-
-
- Cozy样式目录型皮肤。
- 设计 : Ki-Jeong Seo (http://blog.naver.com/addcozy)
- HTML/CSS : Ji-Hun So
-
-
-
-
- 빨간색(기본)
- 赤
- Red (default)
- 红色(默认)
-
-
- 녹색
- 緑
- Green
- 绿色
-
-
- 파란색
- 青
- Blue
- 蓝色
-
-
- 분홍색
- ピンク
- Pink
- 粉红色
-
-
- 청록색
- 青緑
- Cyan
- 青绿色
-
-
-
-
- 상단 제목
- 上段タイトル
- 顶部标题
- Top Title
- 레이아웃의 상단에 표시할 제목을 입력하세요.
- レイアウト上段に表示させるタイトルを入力してください。
- 请输入布局顶部显示的标题。
- Please input title which will be displayed on top of layout.
-
-
- 부제
- サブタイトル
- 副标题
- Subtitle
- 레이아웃의 상단에 큰 제목 아래 부제목을 입력하세요.
- レイアウトの上段にメインタイトルの下のサブタイトルを入力してください。
- 请输入显示在布局顶部主标题下面的副标题。
- Please input subtitle which will be displayed under the top title.
-
-
- 로고이미지
- ロゴイメージ
- LOGO图片
- Logo Image
- 레이아웃의 상단에 표시될 로고이미지를 입력하세요.
- レイアウトの上段に表示されるロゴイメージを入力してください。
- 布局顶部显示的LOGO图片。
- Please input logo image which will be displayed on top of layout.
-
-
- 프로필 이미지
- プロフィールイメージ
- 博客个性图片
- Profile Image
- 프로필 이미지를 입력해 주세요 (가로 사이즈는 160px이 가장 보기 좋습니다)
- プロフィールイメージを入力してください(横幅は「160px」が一番適しています)。
- 请输入博客个性图片。(宽度160px图片为适)
- Please input profile image (It is recommended to set width as 160px)
-
-
- 배경 이미지
- 背景イメージ
- 背景图片
- Background Image
- 배경 이미지를 사용하시려면 등록해주세요.
- 背景イメージを使う場合は、登録してください。
- 要想使用背景图片请在这里上传。
- Please input if you want to use background image.
-
-
- 프로필
- プロフィール
- 简介
- Profile
- 간단한 프로필을 입력해주세요
- 簡単なプロフィールを入力してください。
- 请输入简单介绍。
- Please input your simple profile
-
-
- 카테고리명
- カテゴリ名
- 分类名
- Category
- 카테고리의 이름을 입력해주세요.
- カテゴリ名を入力してください。
- 请输入分类名。
- Please input the name of category.
-
-
- 글쓴이 표시
- 投稿者表示
- 显示作者
- Display Author
- 다수가 블로그를 함께 운영시에 글쓴이의 이름을 표시할 수 있습니다.
- 多数の人が一緒に運営している場合、投稿者の名前を表示させることができます。
- 多数人一起管理并使用同一个博客时,可以显示发表文章的作者。
- It can display authors' name when the blog is being administrated by many administrators.
- off
- on
-
-
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/trackback.html b/modules/blog/skins/cozy_simple/trackback.html
deleted file mode 100644
index 120a954fd..000000000
--- a/modules/blog/skins/cozy_simple/trackback.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
diff --git a/modules/blog/skins/cozy_simple/view_document.html b/modules/blog/skins/cozy_simple/view_document.html
deleted file mode 100644
index 82d0e537a..000000000
--- a/modules/blog/skins/cozy_simple/view_document.html
+++ /dev/null
@@ -1,120 +0,0 @@
-
-
-
-
-
-
-
-
- - {$lang->document_url} : {$oDocument->getPermanentUrl()}
-
- - {$lang->trackback_url} : {$oDocument->getTrackbackUrl()}
-
-
-
-
-
-
{$oDocument->getNickName()}
-
-
{$oDocument->get('ipaddress')}
-
-
-
-
-
-
-
-
-
-
{$oDocument->getContent()}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {@ $document_srl = $oDocument->document_srl; }
-
-
-
-
diff --git a/modules/blog/skins/cozy_simple/write_form.html b/modules/blog/skins/cozy_simple/write_form.html
deleted file mode 100644
index 289d37553..000000000
--- a/modules/blog/skins/cozy_simple/write_form.html
+++ /dev/null
@@ -1,113 +0,0 @@
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/comment.html b/modules/board/skins/cozy_simple_gallery/comment.html
deleted file mode 100644
index d92cb2cfb..000000000
--- a/modules/board/skins/cozy_simple_gallery/comment.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
diff --git a/modules/board/skins/cozy_simple_gallery/comment_form.html b/modules/board/skins/cozy_simple_gallery/comment_form.html
deleted file mode 100644
index 0e2048ede..000000000
--- a/modules/board/skins/cozy_simple_gallery/comment_form.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/css/blue.css b/modules/board/skins/cozy_simple_gallery/css/blue.css
deleted file mode 100644
index 085c6985c..000000000
--- a/modules/board/skins/cozy_simple_gallery/css/blue.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#1187d8 url(../images/blue/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #1187d8; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/blue/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#007ed5; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#007ed5; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#007ed5; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #1187d8;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #1187d8; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#007ed5;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/blue/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/blue/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_gallery/css/bluish_green.css b/modules/board/skins/cozy_simple_gallery/css/bluish_green.css
deleted file mode 100644
index 9c221ce62..000000000
--- a/modules/board/skins/cozy_simple_gallery/css/bluish_green.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#9ab09f url(../images/bluish_green/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #9ab09f; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/bluish_green/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#9ab09f; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#9ab09f; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#9ab09f; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #9ab09f;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #9ab09f; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#9ab09f;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/bluish_green/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/bluish_green/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_gallery/css/common.css b/modules/board/skins/cozy_simple_gallery/css/common.css
deleted file mode 100644
index db5910fe7..000000000
--- a/modules/board/skins/cozy_simple_gallery/css/common.css
+++ /dev/null
@@ -1,539 +0,0 @@
-@charset "utf-8";
-/*
-NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
-Jeong, Chan Myeong 070601~070630
-*/
-
-/* ----- List+Read+Write+Modify | Start ----- */
-.boardHeader h3 { float:left; clear:both; padding:1.9em 1.5em 1.8em 1.5em; font-size:1.2em; color:#FFFFFF;}
-
-/* boardInformation */
-.boardInformation { width:100%; clear:both; margin:0 0 .5em 0; background:#EFEFEF; color:#8D8D8D; overflow:hidden;}
-.articleNum { float:left; padding:.5em 0 .5em 2.3em; font:.8em Tahoma;}
-.articleNum strong { margin:0 0 0 .5em; padding:0 0 0 .7em; font:bold .9em Tahoma; color:#6F6F6F; background:url(../images/common/bar_1x8_c0c0c0.gif) no-repeat left .1em;}
-.accountNavigation { float:right; margin:.3em .5em 0 0; overflow:hidden;}
-.accountNavigation li { list-style:none; float:left; margin:0 0 0 -.1em; padding:.1em .8em 0 .8em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left .3em;}
-.accountNavigation li a {}
-
-/* boardList */
-.boardList tr:first-child td, .boardList tr.first-child td {}
-.boardList tr.notice {}
-.boardList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
-
-.boardList th a { color:#3e3f3e;}
-.boardList th span.on { font-weight:bold;}
-.boardList th.num { background-position:-3px bottom; padding:0;}
-.boardList th select { height:20px; }
-.boardList th.category { padding:0 .2em 0 .5em;}
-.boardList th.category.thumbStyle { background-position:-3px bottom !important; border-left:1px solid #ffffff; text-align:left;}
-.boardList th:first-child { background-position:-2px bottom;}
-.boardList th.first-child { background-position:-2px bottom;}
-.boardList th.author {}
-.boardList th.title {}
-.boardList th.reading { white-space:nowrap;}
-.boardList th.recommend { white-space:nowrap;}
-.boardList th.reply { white-space:nowrap;}
-.boardList th.date {}
-.boardList th.check { padding:0;}
-.boardList th.user {}
-.boardList th.registDate {}
-.boardList th.checkDate {}
-.boardList th.friendGroup {}
-.boardList th.userId {}
-.boardList th.userName {}
-.boardList th.userNick {}
-.boardList th.sendMessage {}
-.boardList th.last-child { border-right:1px solid #ffffff;}
-.boardList th .sort { padding:0 .2em; vertical-align:middle;}
-.boardList th select,
-.boardList th input { vertical-align:middle;}
-
-.boardList td { padding:.3em; border-bottom:1px solid #e4e4e2;}
-.boardList td.noline { border-bottom:none;}
-.boardList td.num { font:.8em Tahoma; color:#999999; padding:.5em .5em .5em 1.5em;}
-.boardList td.category {}
-.boardList tr.notice td { padding:.3em; white-space:nowrap;}
-.boardList tr.notice td img { margin:-.1em .3em 0 0;}
-.boardList td.thumb { padding:.5em 0 .5em .5em; width:130px; table-layout:fixed; white-space:nowrap;}
-.boardList td.thumb * { vertical-align:middle;}
-.boardList td.title.bold { font-size:1em; font-weight:bold;}
-.boardList td.title.bold a { position:relative; top:.3em;}
-.boardList td.title * { vertical-align:middle;}
-.boardList td.title,
-.boardList td.title a { color:#444444; text-decoration:none; }
-.boardList td.title a:visited { color:#777777;}
-.boardList td.title .title_wrap { width:100%; overflow:hidden; white-space:nowrap;}
-.boardList td.author { padding:0 .5em 0 1.3em; color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
-.boardList td.author a { font-size:1em; color:#333333;}
-.boardList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
-.boardList td.reply { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
-.boardList td.date { font:.8em Tahoma; color:#999999; text-align:center;}
-.boardList td.registDate { font:.8em Tahoma; color:#999999; text-align:center;}
-.boardList td.checkDate { font:.8em Tahoma; color:#333333; text-align:center;}
-.boardList td.summary { border-top:none; vertical-align:top; color:#666666; line-height:1.25em;padding:5px 5px 10px 5px;}
-.boardList td.summary a { color:#666666; text-decoration:none; line-height:inherit;}
-.boardList td.summary a:visited { color:#999999;}
-.boardList td.check { text-align:center;}
-.boardList td.user { color:#333333; font-size:.9em;}
-.boardList td.user a { color:#333333;}
-.boardList td.userId { font:.9em Tahoma;}
-.boardList td.userName {}
-.boardList td.userNick { font-size:.9em; color:#999999;}
-.boardList td.friendGroup {}
-.boardList td.sendMessage { text-align:center; padding:0;}
-.boardList td.sendMessage .buttonFixedLeft { position:relative; left:20%; _left:0;}
-*:first-child+html .boardList td.sendMessage .buttonFixedLeft { left:0;}
-.boardList td input { _margin:-3px;}
-.boardList td.title.bold .replyAndTrackback { font:.6em Tahoma; color:#ff6600; cursor:default; position:relative; top:.3em;}
-.boardList td .replyAndTrackback strong { font:bold 1em Tahoma;}
-
-.boardList td .thumbnailSmall { margin:0 .3em 0 .3em;}
-.boardList td .thumbnailSmall img {}
-.boardList td .thumbnailMedium { margin:0 .3em 0 .3em;}
-.boardList td .thumbnailMedium img {}
-
-.boardList.thumbnail { margin-top:-1px; border-bottom:none;}
-.boardList.thumbnail td { border-top:none; border-bottom:1px solid #eff0ed; padding:1.5em 0 0 1.5em; overflow:hidden;}
-.boardList.thumbnail div.cell { float:left; width:142px; margin:0 .6em 0 0; padding-bottom:1.5em;overflow:hidden;}
-.boardList.thumbnail div.title { color:#444444; margin:.5em 0 .2em 0;}
-.boardList.thumbnail div.title a { color:#444444; text-decoration:none;}
-.boardList.thumbnail div.nameAndDate { font-size:.9em; color:#999999; margin-bottom:.2em; padding-left:3px;}
-.boardList.thumbnail div.nameAndDate a { color:#999999;}
-.boardList.thumbnail div.nameAndDate .date { font:.8em Tahoma; color:#999999;}
-.boardList.thumbnail div.readAndRecommend { font-size:.9em; color:#666666; padding-left:3px;}
-.boardList.thumbnail div.readAndRecommend .num { font:.8em Tahoma;}
-.boardList.thumbnail div.readAndRecommend .vr { color:#dddddd;}
-.boardList.thumbnail div.readAndRecommend strong.num { font:bold .8em Tahoma; color:#494949;}
-
-/* boardSearch */
-.boardSearch { clear:both; text-align:center; margin-top:3em;}
-.boardSearch fieldset { display:inline; padding:10px 15px 10px 15px; border:none; background:#F4F4F4; overflow:hidden; }
-.boardSearch fieldset legend { overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.boardSearch * { vertical-align:middle;}
-.boardSearch select { float:left;}
-.boardSearch input { float:left; margin:0 .3em; background:#fbfbfb;}
-.searchButton ul { overflow:hidden;}
-.searchButton li { float:left; margin-right:.3em; list-style:none;}
-
-.buttonTypeGo { border:none; cursor:pointer; width:24px; height:20px; background:url(../images/common/buttonTypeInput24.gif) no-repeat; font:.75em Tahoma; text-align:center;}
-
-
-/* pageNavigation */
-.pageNavigation { float:left; display:block; margin:2.2em 0 2em 1.1em; font:bold .8em Tahoma; }
-.pageNavigation a, .pageNavigation a:visited, .pageNavigation a:active { margin-left:-4px; font:bold .8em Tahoma; color:#676767; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-.pageNavigation a:hover { text-decoration:none; }
-.pageNavigation a.goToFirst,
-.pageNavigation a.goToLast { border:none; border-right:1px solid #ffffff; border-left:1px solid #ffffff; z-index:99; padding:1px 5px 3px 4px;}
-.pageNavigation a.goToFirst img,
-.pageNavigation a.goToLast img { vertical-align:middle;}
-
-.buttonBox { float:right; margin:1.2em 0 0 0; }
-
-/* boardRead */
-#blog .boardRead { position:relative; margin:0; _overflow:hidden;}
-.boardRead .originalContent { padding:2em 0 2em 0;}
-.boardRead .titleAndCategory { float:left;}
-.boardRead .titleAndCategory h4 { font-size:1.4em; display:inline; padding-left:.2em;}
-.boardRead .titleAndCategory .vr { font-size:.9em; margin:0 .3em; color:#c5c7c0;}
-.boardRead .titleAndCategory .category { font-size:.9em; color:#999999; white-space:nowrap;}
-
-.boardRead .dateAndModify { font-size:.8em; float:right; white-space:nowrap;}
-.boardRead .dateAndModify .date { font-size:.8em; font-family:Tahoma; color:#999999; margin-right:.5em; float:left; position:relative; top:.1em;}
-.boardRead .dateAndModify .date strong { font-size:1em; font-family:Tahoma;}
-.boardRead .dateAndModify ul { display:inline; margin:0 .4em 0 0;}
-.boardRead .dateAndModify ul li { float:left; margin-left:.3em; list-style:none;}
-.boardRead dl.uri { float:right; overflow:hidden; margin:0 0 3em .3em;}
-.boardRead dl.uri dt { float:left; clear:left; font-size:.9em; margin-right:.3em; color:#999999;}
-.boardRead dl.uri dd { clear:right; font-size:.8em; color:#d4d5d0;}
-.boardRead dl.uri dd span { font-family:Tahoma; color:#d4d5d0;}
-.boardRead .readBody { padding:0 .3em; color:#555555; overflow:hidden; margin-bottom:2em;}
-.boardRead .readBody p { margin:1em 0; line-height:1.5em;}
-.boardRead .contentBody { width:100%; overflow:hidden; }
-
-.boardRead .userInfo { float:left; white-space:nowrap;}
-.boardRead .userInfo .author { padding:0 .3em 0 0; color:#3074a5; margin-right:.3em;}
-.boardRead .userInfo .ipaddress { font-size:.9em; font-family:Tahoma; color:#888888; margin-right:.5em; }
-
-/* extraVars list */
-.extraVarsList { width:100%; border:1px solid #e0e1db; clear:both; margin-bottom:1em;}
-.extraVarsList tr.notice { background:#f8f8f8;}
-.extraVarsList tr.notice .num { font-size:.9em; font-weight:bold;}
-.extraVarsList tr.bg1 { background:#ffffff}
-.extraVarsList tr.bg2 { background:#fbfbfb;}
-.extraVarsList th { color:#3e3f3e; font-weight:bold; padding:.8em .5em .5em .5em; border-bottom:1px solid #eff0ed; border-right:1px solid #eff0ed;}
-.extraVarsList td { border-bottom:1px solid #eff0ed; padding:.5em .5em .5em 1em;}
-
-.boardRead .readFooter { border-top:1px solid #dfe0db; }
-.boardRead .readFooter .tag { margin-bottom:1em; padding:1em 0 0 0; }
-.boardRead .readFooter .tag h5 { display:inline; font-size:1em; margin:0 .3em 0 1.8em;}
-.boardRead .readFooter .tag ul,
-.boardRead .readFooter .tag li { display:inline;}
-.boardRead .readFooter .tag a { color:#444444; text-decoration:none;}
-.boardRead .readFooter .tag .tagIcon { vertical-align:middle;}
-.boardRead .readFooter .fileAttached { padding:1em 1em .8em 0; position:relative; _width:100%; border-bottom:1px solid #dfdfdd; overflow:hidden; background:#f9f9f9;}
-.boardRead .readFooter .fileAttached h5 {}
-.boardRead .readFooter .fileAttached ul { margin-left:1.8em;}
-.boardRead .readFooter .fileAttached li { float:left; margin-right:.75em; line-height:1.6em; color:#888888; white-space:nowrap; list-style:none;}
-.boardRead .readFooter .fileAttached li a { font-size:.9em; padding:.1em 0 .1em .2em; white-space:nowrap; position:relative; color:#888888; text-decoration:none; }
-.boardRead .readFooter .fileAttached li a:visited { color:#777777;}
-
-.listButton li { list-style:none; clear:both; text-align:right; margin-top:.5em; }
-
-.boardRead .replyAndTrackback { float:left; width:100%; background:url(../images/common/bg_repeat_x_eaeaea.gif) repeat-x left bottom; overflow:hidden;}
-.boardRead .replyAndTrackback li { float:left; font-weight:bold; margin:.3em 0 0 0; padding:.7em 1.1em .7em 1.2em; color:#FFFFFF; background:#B8B8B8; list-style:none;}
-.boardRead .replyAndTrackback li a { color:#FFFFFF; text-decoration:none; }
-.boardRead .replyAndTrackback li strong { padding:0 1.1em 0 0; background:#B8B8B8 url(../images/common/icon_close.gif) no-repeat right .2em;}
-.boardRead .replyAndTrackback li.selected a { color:#666666;}
-.boardRead .replyAndTrackback li.selected strong { padding:0 1.1em 0 0; background:#FFFFFF url(../images/common/icon_open.gif) no-repeat right .2em;}
-.boardRead .replyAndTrackback a#toggleReply { background:url(../images/common/buttonToggleReply.gif) no-repeat right top;}
-.boardRead .replyAndTrackback a#toggleTrackback { background:url(../images/common/buttonToggleReply.gif) no-repeat right -13px;}
-
-.boardRead #reply,
-.boardRead #trackback { color:#666666; border-left:1px solid #EAEAEA; border-right:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; padding-top:1em;}
-.boardRead #reply { }
-.boardRead #trackback { display:none;}
-
-.boardRead .topBorder { border-top:1px solid #EAEAEA; }
-
-.boardRead #reply .contentBox,
-.boardRead #trackback .contentBox { line-height:1.25em; color:#676767; clear:both; padding:1em; overflow:hidden;}
-.boardRead #reply .top_border,
-.boardRead #trackback .top_border { border-top:1px dashed #d8d8d8; }
-
-.boardRead .contentBox .content { width:100%; overflow:hidden; clear:both; margin-bottom:1em; }
-.boardRead .contentBox .author { float:left; overflow:hidden; color:#3173a3;}
-.boardRead .contentBox .date { float:right; font:.8em Tahoma; color:#cccccc; margin-left:.5em; }
-.boardRead .contentBox .replyOption { float:right; display:inline; white-space:nowrap; margin-left:.5em; }
-.boardRead .contentBox .replyOption img { vertical-align:middle;}
-
-.boardRead .contentBox .fileAttached { position:relative; _width:100%; overflow:hidden; clear:both; }
-.boardRead .contentBox .fileAttached h5 {}
-.boardRead .contentBox .fileAttached ul { margin-bottom:.5em;}
-.boardRead .contentBox .fileAttached li { float:left; margin-right:.75em; line-height:1.6em; color:#888888; white-space:nowrap; list-style:none;}
-.boardRead .contentBox .fileAttached li a { font-size:.9em; padding:.1em 0 .1em .2em; white-space:nowrap; position:relative; color:#888888; text-decoration:none; }
-.boardRead .contentBox .fileAttached li a:visited { color:#777777;}
-
-.boardRead .contentBox .title a { color:#676767 ; margin-right:.3em; text-decoration:none;}
-.boardRead .contentBox address a { font-size:.9em; color:#3173a3; margin-right:.3em; text-decoration:none; }
-.boardRead .contentBox address .trackback_date { font:.8em Tahoma; color:#cccccc; margin-left:.5em; }
-.boardRead .indent_box { background-color:#FBFBFB; }
-.boardRead .contentBox .indent {padding-left:1.5em; background:url(../images/common/icon_arrow_reply.gif) no-repeat left .1em;}
-
-/* boardEditor */
-.boardEditor { padding:.5em 0 1em 0; width:100%; overflow:hidden;}
-.boardEditor.reply { padding:.5em 1em 1em 1em; width:auto; overflow:hidden;}
-.boardEditor legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em;}
-.boardEditor fieldset { _width:100%; border:0px solid #eaeae7; border-top:none;}
-.boardEditor .userNameAndPw { position:relative; background:#fbfbfb; border-top:1px solid #eaeae7; border-bottom:1px solid #e1e1e1; padding:.5em 1em; white-space:nowrap;}
-.boardEditor .userNameAndPw * { vertical-align:middle;}
-.boardEditor .userNameAndPw label { margin-right:.2em; color:#666760;}
-.boardEditor .userNameAndPw input { color:#aaaaaa;}
-.boardEditor .userNameAndPw .userName { width:6em; margin-right:.8em;}
-.boardEditor .userNameAndPw .userPw { width:5em;}
-.boardEditor .userNameAndPw .emailAddress { width:6em;}
-.boardEditor .userNameAndPw .homePage { width:6em;}
-.boardEditor .userNameAndPw .checkSecret { position:absolute; right:2em; top:.7em;}
-
-/* boardWrite */
-.boardWrite { width:100%; position:relative;}
-.boardWrite .userNameAndPw { margin-bottom:-1px;}
-
-.boardWrite div.title label.title { display:block; float:left; font-weight:bold; padding:.4em 0 0 1.5em; width:9.5em; white-space:nowrap;}
-.boardWrite div.title input#title { width:60%;}
-
-.boardWrite .option dt { display:block; float:left; font-weight:bold; padding:.3em 0 0 1.5em; width:9.5em; white-space:nowrap;}
-.boardWrite .option dd { float:left; margin-right:1em; padding-top:.2em; _padding-top:.1em;}
-.boardWrite .option dd * { vertical-align:middle;}
-.boardWrite .inputTypeText { background:#fbfbfb;}
-.boardWrite .trackbackURI { clear:both; border-top:1px solid #eff0ed; padding:4px 0 .8em 0;}
-.boardWrite .trackbackURI label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.boardWrite .trackbackURI .inputTypeText { width:50%;}
-.boardWrite .tag { clear:both; border-top:1px solid #eff0ed; padding:.8em 0;}
-.boardWrite .tag label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.boardWrite .tag .inputTypeText { width:50%;}
-.boardWrite .tag .help { vertical-align:middle;}
-.boardWrite .tag .info { padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
-.boardWrite .extra_vars { clear:both; border-top:1px solid #eff0ed; padding:.8em 0;}
-.boardWrite .extra_vars label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.boardWrite .extra_vars .info { clear:both; padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
-.boardWrite .extra_vars ul li { float:left; margin-right:1em; }
-
-/* ----- List+Read+Write+Modify | End ----- */
-
-/* ----- Blog | Start ----- */
-#blog #bodyWrap #login_menu { padding:0 1.2em;}
-#blog #bodyWrap #login_menu .member { float:right}
-#blog #bodyWrap #login_menu .member li {display:inline; margin:0 0 0 -.1em; padding:0 .6em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left center;}
-#blog #bodyWrap #login_menu .login {float:right}
-
-
-/* Blog header Child*/
-#blog #header h1 { font:bold 1.3em 돋움; margin:2em 0 .4em 30px; letter-spacing:-.05em; }
-#blog #header h1 a { color:#FFFFFF;}
-#blog #header #tagLine { padding:0 0 0 30px; color:#f6c8c8;}
-#blog #header #globalNavigation { width:100%; margin:2.4em 0 0 0; padding:.8em 0 .8em 53.5em; background:#e4e4e4; overflow:hidden;}
-#blog #header #globalNavigation li { float:left; margin-left:-1px; background:url(../images/common/bar_1x10_c0c0c0.gif) no-repeat left bottom;}
-#blog #header #globalNavigation li.no_bg { background:none;}
-#blog #header #globalNavigation li a { display:block; float:left; padding:0 1.2em; font:bold .8em Tahoma; color:#54564b; white-space:nowrap;}
-#blog #header #globalNavigation li.on a { color:#ee2126;}
-
-/* Column Left & Right Common Child */
-.boxTypeA { position:relative; border:5px solid #F2F2F2; margin-bottom:.7em;}
-.boxTypeB { position:relative; margin-bottom:.7em;}
-.boxTypeB h2 { position:relative; padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; font-size:1em; color:#ef2121; font-family:Tahoma;}
-*:first-child+html .boxTypeB h2 { height:20px; color:#ef2121;}
-.boxTypeB .toggleMask {position:absolute; top:8px; right:5px; cursor:pointer; width:13px; height:13px; overflow:hidden;}
-.boxTypeB .showHide { position:relative;}
-.boxTypeB .optionList { position:absolute; top:8px; right:0; overflow:hidden;}
-.boxTypeB .optionList li { float:left; padding:0 .5em; margin-left:-1px; background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat left center;}
-.boxTypeB .optionList li a { color:#a4a4a4; font-size:.9em;}
-.boxTypeB .optionList li.on a { color:#000000;}
-.boxTypeB .showAll { color:#737373; font:bold .9em tahoma; white-space:nowrap; display:inline-block; padding:.4em .8em; background:url(../images/common/bar_1x8_c0c0c0.gif) no-repeat right center;}
-.boxTypeB .showAll.no_bg { background:none;}
-
-/* Profile */
-#blog div#profile { padding:6px; overflow:hidden;}
-#blog div#profile img.profile { width:153px; display:block; margin-bottom:1.2em;}
-#blog div#profile dl#hello {}
-#blog div#profile dl#hello dt { color:#333333; margin-bottom:.5em;}
-#blog div#profile dl#hello dt a { color:#333333;}
-#blog div#profile dl#hello dd { color:#777777; margin-bottom:1em;}
-#blog div#profile ul#admin { overflow:hidden; height:1.2em;}
-#blog div#profile ul#admin li { float:left; padding:0 .4em; font:.8em tahoma;}
-#blog div#profile ul#admin li a { display:block;}
-#blog div#profile ul#admin li.write a {}
-#blog div#profile ul#admin li.setup { border-left:1px solid #e3e3e3;}
-#blog div#profile ul#admin li.setup a {}
-#blog div#profile ul#admin li a { color:#666666;}
-
-/* Category */
-#blog div#category {}
-#blog div#category #categoryList { padding:1em .8em .5em .8em;}
-#blog div#category #categoryList li { position:relative; padding:0 0 0 15px; background:url(../images/common/iconFolderClose.gif) no-repeat 2px top;}
-#blog div#category #categoryList li li {}
-#blog div#category #categoryList li li li { background:url(../images/common/iconList.gif) no-repeat 5px top;}
-#blog div#category #categoryList a { display:block; _display:inline-block; color:#6b6b6b; margin:0 0 6px 5px;}
-
-/* Search Box */
-#blog div#searchBox { margin-bottom:.7em; padding:.6em; background:#f5f5f5; overflow:hidden;}
-#blog div#searchBox fieldset { border:none;}
-#blog div#searchBox fieldset legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-
-/* Tags */
-#blog div#tag { padding-bottom:1em;}
-#blog div#tag .tagList { padding:1.2em; overflow:hidden;}
-#blog div#tag .tagList li { display:inline; color:#a4a4a4; margin-right:.1em; line-height:1.5em;}
-#blog div#tag .tagList li a { color:#a4a4a4;}
-#blog div#tag .tagList li.typeA a { color:#717171; font-weight:bold;}
-#blog div#tag .tagList li.typeB a { color:#3d3d3d;}
-#blog div#tag .tagList li.typeC a { font-weight:bold;}
-#blog div#tag .tag_sort { width:100%; border-top:1px dashed #ababab; border-bottom:1px dashed #ababab; text-align:center; overflow:hidden;}
-
-/* Neighbor */
-#blog div#neighbor {}
-#blog div#neighbor #neighborList { padding:1.2em 1.2em 0 1.2em;}
-#blog div#neighbor #neighborList li { padding:0 0 .7em 1.2em; background:url(../images/common/iconPlus2.gif) no-repeat left top;}
-#blog div#neighbor #neighborList li img { padding-left:.3em; top:.1em;}
-#blog div#neighbor #neighborList li a { display:inline-block; color:#6b6b6b; font-weight:bold;}
-#blog div#neighbor #neighborList li ul { display:none; padding:.7em 0 0 0;}
-#blog div#neighbor #neighborList li ul li { padding:0 0 .6em .6em; margin-left:-.6em; background:url(../images/common/iconLineBD.gif) no-repeat left 5px;}
-#blog div#neighbor #neighborList li ul li a{ font-weight:normal;}
-
-/* Calendar */
-#blog div#calendar {}
-#blog div#calendar table { width:100%; background:url(../images/common/bg_line_dot_x.gif) repeat-x left top;}
-#blog div#calendar table caption { font:bold 1em 돋움; color:#ec1a25; padding:1em;}
-#blog div#calendar table caption .mm { font:bold 1em 돋움; color:#555650;}
-#blog div#calendar table caption a { padding:.2em;}
-#blog div#calendar table caption a img { vertical-align:middle;}
-#blog div#calendar table th { padding:.6em 0;}
-#blog div#calendar table td { padding:.25em 0;}
-#blog div#calendar table th { font:bold .7em tahoma; color:#717171;}
-#blog div#calendar table th.sun { color:#000000;}
-#blog div#calendar table td { text-align:center;}
-#blog div#calendar table td a { font:.7em Tahoma; color:#9a9a9a;}
-#blog div#calendar table td.sun { color:#000000;}
-#blog div#calendar table td.sun a { color:#000000;}
-#blog div#calendar table td.today a { font-weight:bold; color:#54564b;}
-#blog div#calendar table td.posted a { text-decoration:underline;}
-
-#blog .boardWrite div.title { border-top:2px solid #ed1b24;}
-#blog .write_post h3 {margin:1.5em 1em 1em 1em; font:bold 1.2em 돋움;}
-/* ----- Blog | End ----- */
-
-
-/* ----- Member | Start ----- */
-
-.memberHeader { position:relative; _width:100%; background:#ED2027 url(../images/common/bg_top_title.gif) no-repeat 23px -6px; overflow:hidden;}
-.memberHeader h3 { float:left; clear:both; padding:1.2em 0 1em 1.7em; font-size:1.1em; color:#FFFFFF;}
-.memberInformation { width:100%; clear:both; margin:0 0 .5em 0; background:#EFEFEF; color:#8D8D8D; overflow:hidden;}
-.memberInformation .friendNum { float:left; padding:.7em 0 .7em 2em; background:url(../images/common/iconFriend.gif) no-repeat .5em .4em;}
-.memberInformation .friendNum strong { font:bold 11px Tahoma; color:#ec2127;}
-.memberInformation .addGroup { float:right; margin:.8em 1em .7em 0;}
-.memberInformation .instantMessage { float:right; margin:.7em; overflow:hidden;}
-.memberInformation .instantMessage li { float:left; margin:0 0 0 -.1em; padding:0 .5em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left .25em;}
-.memberInformation .instantMessage li a {white-space:nowrap; color:#666666;}
-.memberInformation .instantMessage li.on a { background-position:left -14px; font-weight:bold;}
-.memberInformation .instantMessage li a strong { font:bold 0.75em tahoma; color:#ee202a;}
-
-/* 친구목록 */
-.memberList { width:100%; position:relative; border-bottom:2px solid #ED2A32; border-collapse:collapse;}
-
-.memberList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/common/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.memberList th.check { padding:0;}
-.memberList th.friendGroup { padding:0 0 0 .3em; text-align:left;}
-.memberList th select,
-.memberList th input { vertical-align:middle;}
-.memberList th.repeat_bg { background:#ffffff url(../images/common/bg_title_repeat_x.gif) repeat-x left bottom;}
-
-.memberList td { padding:.3em; border-bottom:1px solid #e4e4e2;}
-.memberList td.noline { border-bottom:none;}
-.memberList td.check { text-align:center;}
-.memberList td.friendGroup { }
-.memberList td.userId { text-align:center; font:.9em Tahoma;}
-.memberList td.userName { text-align:center;}
-.memberList td.userNick { text-align:center; color:#999999;}
-.memberList td.registDate { text-align:center; font:.8em Tahoma;}
-.memberList td.sendMessage { text-align:center;}
-
-
-.smallBox { margin:5em auto 1em auto;}
-.smallBox.w268 { width:268px;}
-.smallBox.w298 { width:298px;}
-.smallBox.w498 { width:498px;}
-.smallBox .header { position:relative; _width:100%; background:#ed2027; overflow:hidden;}
-.smallBox .header h3 { font-size:1.2em; color:#FFFFFF; padding:1em 2em .8em 1em;}
-.smallBox .login { position:relative; border:none; padding:2.4em 0 2em 2.3em;}
-.smallBox .login legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.smallBox .login dl { overflow:hidden; width:162px; float:left;}
-.smallBox .login dl dt { float:left; width:55px; color:#54564b; height:22px; padding-top:5px;}
-.smallBox .login dl dd { float:left; width:105px; height:27px;}
-.smallBox .login dl dd input { width:90px;}
-.smallBox .login .loginButton { display:block; float:left; margin-top:27px; _margin-top:28px;}
-*:first-child+html .smallBox .login .loginButton { margin-top:28px;}
-.smallBox .login .keep { float:left; clear:both; white-space:nowrap; position:relative; left:55px; _left:52px;}
-*:first-child+html .smallBox .login .keep { left:52px;}
-.smallBox .login .keep input { vertical-align:middle;}
-.smallBox .login .keep label { font-size:11px; color:#999999;}
-.smallBox .help { background:#F7F7F7; border-top:1px solid #ed2a32; border-bottom:2px solid #ee2b33; overflow:hidden; padding:1.1em; text-align:center; height:1em;}
-.smallBox .help li { display:inline; padding:0 .3em 0 .7em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left center;}
-.smallBox .help li:first-child { background:none;}
-.smallBox .help li.first-child { _background:none;}
-.smallBox .help li a { font-size:11px; color:#54564b;}
-.smallBox .text { color:#54564b; text-align:center; padding:4.25em 2em 4.8em 2em;}
-.smallBox .text p { margin-bottom:.5em;}
-.smallBox .button img { vertical-align:top;}
-.smallBox.w268 .button ul { position:absolute; left:79px; }
-.smallBox.w298 .button ul { position:absolute; left:110px; }
-.smallBox.w498 .button ul { position:absolute; left:220px; }
-.smallBox .button ul li { float:left; margin-right:.3em;}
-.smallBox .complex { padding:1.5em 2em 2em 2em;}
-.smallBox .friend { width:100%;}
-.smallBox .friend th { width:7em; padding:.9em; border-bottom:1px solid #e4e5e0;}
-.smallBox .friend td { padding:.9em; border-bottom:1px solid #e4e5e0; background:url(../images/common/bar_1x18_e4e5e0.gif) no-repeat left bottom;}
-.smallBox .leftHeaderType { border-top:1px solid #e0e1db; border-left:1px solid #e0e1db; width:100%;}
-.smallBox .leftHeaderType th,
-.smallBox .leftHeaderType td { border-right:1px solid #e0e1db; border-bottom:1px solid #e0e1db; padding:.8em 1em .6em 1em;}
-.smallBox .leftHeaderType th { color:#333333; text-align:left; background:#f5f5f3;}
-.smallBox .leftHeaderType td { color:#444444;}
-.smallBox .inputTypeText { background:#fbfbfb;}
-.smallBox .group { overflow:hidden; padding:.5em 0; margin-top:.7em;}
-.smallBox .group select { float:left; width:180px; margin-top:1px;}
-.smallBox .pwModify { border:none;}
-.smallBox .pwModify legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.smallBox .pwModify input { width:9em;}
-.smallBox .pwModify br { display:block; margin-bottom:.2em}
-.smallBox .pwModify p { text-align:center; margin-top:1em; color:#54564b;}
-
-
-/* messageList */
-.messageList { width:100%; position:relative; border-bottom:2px solid #ed2a32; border-collapse:collapse;}
-.messageList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
-
-.messageList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/common/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.messageList th:first-child,
-.messageList th.first-child { background-position:-3px bottom;}
-.messageList th.author { background:url(../images/common/bg_title_repeat_x.gif) repeat-x left bottom; text-align:left;}
-.messageList th.check { padding:0;}
-.messageList th select,
-.messageList th input { vertical-align:middle;}
-
-.messageList td { padding:.3em; border-bottom:1px solid #EFEFEF;}
-.messageList td.noline { border-bottom:none;}
-.messageList td.category {}
-.messageList tr.notice td { padding:.7em .7em .7em .9em; white-space:nowrap;}
-.messageList tr.notice td img { margin:-.1em .3em 0 0;}
-.messageList td.thumb { padding:.5em 0 .5em .5em; width:145px; table-layout:fixed; white-space:nowrap;}
-.messageList td.thumb * { vertical-align:middle;}
-.messageList td.title {}
-.messageList td.title.bold { font-size:1em; font-weight:bold;}
-.messageList td.title.bold a { position:relative; top:.3em;}
-.messageList td.title * { vertical-align:middle;}
-.messageList td.title,
-.messageList td.title a { color:#444444;}
-.messageList td.title a:visited { color:#777777;}
-.messageList td.author { padding:0 .5em 0 1.3em; color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
-.messageList td.author a { font-size:1em; color:#333333;}
-.messageList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.recommend { font:bold .8em Tahoma; color:#ec2127; text-align:center;}
-.messageList td.reply { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
-.messageList td.date { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.registDate { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.checkDate { font:.8em Tahoma; color:#333333; text-align:center;}
-.messageList td.summary { border-top:none; vertical-align:top; color:#666666; line-height:1.25em;}
-.messageList td.summary a { color:#666666; text-decoration:none; line-height:inherit;}
-.messageList td.summary a:visited { color:#999999;}
-.messageList td.check { text-align:center;}
-.messageList td.user { color:#333333; font-size:.9em;}
-.messageList td.user a { color:#333333;}
-.messageList td.userId { font:.9em Tahoma;}
-.messageList td.userNick { font-size:.9em; color:#999999;}
-.messageList td.sendMessage { text-align:center; padding:0;}
-.messageList td.sendMessage .buttonFixedLeft { position:relative; left:20%; _left:0;}
-
-.readMessage { margin-bottom:2em;}
-.readMessage .messageHeader { padding:1.5em; height:1em; overflow:hidden;}
-.readMessage .messageHeader h4 { float:left; padding-left:.5em; font-size:1em; background:url(../images/common/iconArrow99.gif) no-repeat left .3em;}
-.readMessage .messageHeader address { float:right; white-space:nowrap;}
-.readMessage .messageHeader address em { font-size:.9em; font-style:normal; color:#333333; margin-right:.3em;}
-.readMessage .messageHeader address em a { color:#333333;}
-.readMessage .messageHeader address .date { font:.8em Tahoma; color:#999999;}
-.readMessage .messageBody { border:1px solid #e0e1db; margin:0 1.5em 1.5em 1.5em; padding:1em; position:relative; color:#666666;}
-.readMessage .deleteOrKeep { padding:.5em 0; overflow:hidden; background:#f5f5f3; border-top:1px solid #eaebe7; _width:100%;}
-.readMessage .deleteOrKeep li { position:relative; left:40%; float:left; margin-right:.5em;}
-.readMessage .button { position:relative; background:#f7f7f7; border-top:1px solid #ee2b33; border-bottom:2px solid #ee2b33; overflow:hidden; padding:.7em; text-align:center;}
-
-
-.joinTable.typeA { border-top:2px solid #ee1b24; border-collapse:collapse;}
-.joinTable.typeB { border-bottom:2px solid #ee1b24; background:#f9f9f9;}
-.joinTable.typeC { border-top:2px solid #ee2b33; border-bottom:2px solid #ee2b33; border-collapse:collapse;}
-.joinTable.typeB caption { border-top:1px dashed #919191; background:#f9f9f9;}
-.joinTable { width:100%;}
-.joinTable caption { padding:2em 0 .5em 1.5em; font-weight:bold; text-align:left; background:url(../images/common/iconH3.gif) no-repeat .5em 2em;}
-.joinTable th,
-.joinTable td { padding:.7em .5em .7em 1.5em; text-align:left; border-top:1px solid #eff0eb;}
-.joinTable td { background:url(../images/common/bar_1x18_e4e5e0.gif) no-repeat left bottom;}
-.joinTable th { width:10em;}
-.joinTable td textarea { width:40em; height:4.5em; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; line-height:1em; background:#fbfbfb; vertical-align:middle; float:left; margin-right:.5em; margin-bottom:.5em; color:#666666; overflow:auto;}
-.joinTable td input { border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; height:1em; line-height:1em; background:#fbfbfb; vertical-align:middle; float:left; margin-right:.5em; margin-bottom:.5em; color:#666666;}
-.joinTable td input.radio,
-.joinTable td input.check { border:none; padding:0; margin:0; background:none; margin-top:.4em;}
-.joinTable td input.w4em { width:4em;}
-.joinTable td input.w2em { width:2em;}
-.joinTable td select { float:left; margin-right:.5em;}
-.joinTable td .fl { margin-right:.5em;}
-.joinTable td br { clear:both;}
-.joinTable td p { float:left; font-size:.9em; color:#999999; padding-top:.5em; margin-right:.5em;}
-.joinTable td label { float:left; color:#3f4040; padding-top:.3em; margin-right:.5em;}
-.joinTable td a { color:#333333;}
-.joinTable .no_line { border:none;}
-.join_button { margin:1em 0 0 0; text-align:center;}
-.joinTable .add_info { padding:2.5em .5em .7em 1.5em; background:#f9f9f9; border-top:1px dashed #919191;}
-.buttonTypeWrite.join { margin-top:1.2em;}
-
-/* ----- Member | End ----- */
-
-
-.smallBox .inputPassword { position:relative; border:none; padding:2em 2em 1.5em 2em;}
-.smallBox .inputPassword .inputTypeText { float:left; margin-right:.5em; width:8em;}
-.smallBox .inputPassword legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
diff --git a/modules/board/skins/cozy_simple_gallery/css/green.css b/modules/board/skins/cozy_simple_gallery/css/green.css
deleted file mode 100644
index 592d74f50..000000000
--- a/modules/board/skins/cozy_simple_gallery/css/green.css
+++ /dev/null
@@ -1,20 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#8dc63f url(../images/green/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #8dc63f; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/green/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#27a939; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#27a939; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#27a939; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #8dc63f;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #8dc63f; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#8dc63f;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #8dc63f;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/green/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/green/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
-
diff --git a/modules/board/skins/cozy_simple_gallery/css/pink.css b/modules/board/skins/cozy_simple_gallery/css/pink.css
deleted file mode 100644
index 7269ac2a4..000000000
--- a/modules/board/skins/cozy_simple_gallery/css/pink.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#f70795 url(../images/pink/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #f70795; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/pink/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#f70795; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#f70795; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#f70795; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #f70795;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #f70795; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#f70795;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/pink/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/pink/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_gallery/css/red.css b/modules/board/skins/cozy_simple_gallery/css/red.css
deleted file mode 100644
index b703a9dbb..000000000
--- a/modules/board/skins/cozy_simple_gallery/css/red.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#ED2027 url(../images/red/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #ed2a32; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/red/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#ed1f29; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#ec2127; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#ff6600; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #ed2228;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #ee202a; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#eb1c22;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #ed1b24;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/red/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/red/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_gallery/delete_comment_form.html b/modules/board/skins/cozy_simple_gallery/delete_comment_form.html
deleted file mode 100644
index 984c3ac8e..000000000
--- a/modules/board/skins/cozy_simple_gallery/delete_comment_form.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/delete_form.html b/modules/board/skins/cozy_simple_gallery/delete_form.html
deleted file mode 100644
index 1ca638c93..000000000
--- a/modules/board/skins/cozy_simple_gallery/delete_form.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/delete_trackback_form.html b/modules/board/skins/cozy_simple_gallery/delete_trackback_form.html
deleted file mode 100644
index f907b6793..000000000
--- a/modules/board/skins/cozy_simple_gallery/delete_trackback_form.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/extra_var_form.html b/modules/board/skins/cozy_simple_gallery/extra_var_form.html
deleted file mode 100644
index 564cec9d9..000000000
--- a/modules/board/skins/cozy_simple_gallery/extra_var_form.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
- {@ $val->default = explode(',',$val->default) }
-
-
-
-{@ $val->column_name = "extra_vars".$key}
-
-
-{@ $val->value = $oDocument->getExtraValue($key)}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {zdate($val->value,"Y-m-d")}
- {$lang->cmd_open_calendar}
-
-
-
-{$val->desc}
-
diff --git a/modules/board/skins/cozy_simple_gallery/extra_var_value.html b/modules/board/skins/cozy_simple_gallery/extra_var_value.html
deleted file mode 100644
index 0d5b21657..000000000
--- a/modules/board/skins/cozy_simple_gallery/extra_var_value.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-{@ $val->column_name = "extra_vars".$key}
-
-
-{@ $val->value = $oDocument->getExtraValue($key)}
-
-
-
- {htmlspecialchars($val->value)}
-
-
-
-
- {$val->value}
-
-
-
-
-
-
-
- {$val->value}
-
-
-
-
-
-
- {htmlspecialchars($val->value[0])}
- -
- {htmlspecialchars($val->value[1])}
- -
- {htmlspecialchars($val->value[2])}
-
-
-
- {nl2br(htmlspecialchars($val->value))}
-
-
-
-
- {@ $_tmp_value[] = htmlspecialchars($v)}
-
- {implode(",",$_tmp_value)}
-
-
-
- {htmlspecialchars($val->value)}
-
-
-
- {zdate($val->value,"Y-m-d")}
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/filter/delete_comment.xml b/modules/board/skins/cozy_simple_gallery/filter/delete_comment.xml
deleted file mode 100644
index 115ea00d9..000000000
--- a/modules/board/skins/cozy_simple_gallery/filter/delete_comment.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/filter/delete_document.xml b/modules/board/skins/cozy_simple_gallery/filter/delete_document.xml
deleted file mode 100644
index 7627f5a63..000000000
--- a/modules/board/skins/cozy_simple_gallery/filter/delete_document.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/filter/delete_trackback.xml b/modules/board/skins/cozy_simple_gallery/filter/delete_trackback.xml
deleted file mode 100644
index 2140675f8..000000000
--- a/modules/board/skins/cozy_simple_gallery/filter/delete_trackback.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/filter/input_password.xml b/modules/board/skins/cozy_simple_gallery/filter/input_password.xml
deleted file mode 100644
index 55cb6d8e0..000000000
--- a/modules/board/skins/cozy_simple_gallery/filter/input_password.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/filter/insert.xml b/modules/board/skins/cozy_simple_gallery/filter/insert.xml
deleted file mode 100644
index fbfb2d970..000000000
--- a/modules/board/skins/cozy_simple_gallery/filter/insert.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/filter/insert_comment.xml b/modules/board/skins/cozy_simple_gallery/filter/insert_comment.xml
deleted file mode 100644
index ba2216c8a..000000000
--- a/modules/board/skins/cozy_simple_gallery/filter/insert_comment.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/filter/search.xml b/modules/board/skins/cozy_simple_gallery/filter/search.xml
deleted file mode 100644
index 6c85e1254..000000000
--- a/modules/board/skins/cozy_simple_gallery/filter/search.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/filter/vote.xml b/modules/board/skins/cozy_simple_gallery/filter/vote.xml
deleted file mode 100644
index 0870a7551..000000000
--- a/modules/board/skins/cozy_simple_gallery/filter/vote.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/footer.html b/modules/board/skins/cozy_simple_gallery/footer.html
deleted file mode 100644
index c6171637a..000000000
--- a/modules/board/skins/cozy_simple_gallery/footer.html
+++ /dev/null
@@ -1,2 +0,0 @@
-
-{$module_info->footer_text}
diff --git a/modules/board/skins/cozy_simple_gallery/header.html b/modules/board/skins/cozy_simple_gallery/header.html
deleted file mode 100644
index faf6313b1..000000000
--- a/modules/board/skins/cozy_simple_gallery/header.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
- {@$module_info->colorset = "red"}
-
-
-
-
-
-
-
-
-
-
-
-
-{$module_info->header_text}
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/images/blank.gif b/modules/board/skins/cozy_simple_gallery/images/blank.gif
deleted file mode 100644
index 35d42e808..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/blank.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/blue/bg_title.gif b/modules/board/skins/cozy_simple_gallery/images/blue/bg_title.gif
deleted file mode 100644
index ff67b452b..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/blue/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/blue/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_gallery/images/blue/bg_title_norepeat.gif
deleted file mode 100644
index aec4de0b0..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/blue/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/blue/bg_top_title.gif b/modules/board/skins/cozy_simple_gallery/images/blue/bg_top_title.gif
deleted file mode 100644
index 99eecde67..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/blue/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/bluish_green/bg_title.gif b/modules/board/skins/cozy_simple_gallery/images/bluish_green/bg_title.gif
deleted file mode 100644
index c5cf6b136..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/bluish_green/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/bluish_green/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_gallery/images/bluish_green/bg_title_norepeat.gif
deleted file mode 100644
index 227cf252b..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/bluish_green/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/bluish_green/bg_top_title.gif b/modules/board/skins/cozy_simple_gallery/images/bluish_green/bg_top_title.gif
deleted file mode 100644
index 160682e41..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/bluish_green/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/bar_1x7_c0c0c0.gif b/modules/board/skins/cozy_simple_gallery/images/common/bar_1x7_c0c0c0.gif
deleted file mode 100644
index 1d2f92ff7..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/bar_1x7_c0c0c0.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/bar_1x8_c0c0c0.gif b/modules/board/skins/cozy_simple_gallery/images/common/bar_1x8_c0c0c0.gif
deleted file mode 100644
index f37814f58..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/bar_1x8_c0c0c0.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/bg_repeat_x_eaeaea.gif b/modules/board/skins/cozy_simple_gallery/images/common/bg_repeat_x_eaeaea.gif
deleted file mode 100644
index 0b011fe5d..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/bg_repeat_x_eaeaea.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn4_rss.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn4_rss.gif
deleted file mode 100644
index 50584f6d5..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn4_rss.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_admin.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_admin.gif
deleted file mode 100644
index bea6e158e..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_admin.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_cancel.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_cancel.gif
deleted file mode 100644
index 65b303e06..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_cancel.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_cancel3.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_cancel3.gif
deleted file mode 100644
index 5dfcfd0b7..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_cancel3.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_delete.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_delete.gif
deleted file mode 100644
index 84a26c508..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_delete.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_delete2.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_delete2.gif
deleted file mode 100644
index 1fcb5e906..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_delete2.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_edit.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_edit.gif
deleted file mode 100644
index 3f7bd62b1..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_edit.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_findid.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_findid.gif
deleted file mode 100644
index de53c3d16..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_findid.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_findpw.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_findpw.gif
deleted file mode 100644
index 26f254d9a..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_findpw.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_joinus.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_joinus.gif
deleted file mode 100644
index beed35641..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_joinus.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_list.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_list.gif
deleted file mode 100644
index 8e56215c8..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_list.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_login.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_login.gif
deleted file mode 100755
index b5e6a3e9e..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_login.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_logout.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_logout.gif
deleted file mode 100644
index 0233282e6..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_logout.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_manage.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_manage.gif
deleted file mode 100755
index 6f5cd05b7..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_manage.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_modify.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_modify.gif
deleted file mode 100644
index 7b4321472..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_modify.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_my.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_my.gif
deleted file mode 100644
index 72e626189..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_my.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_preview.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_preview.gif
deleted file mode 100755
index e66ee6ca5..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_preview.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_print.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_print.gif
deleted file mode 100755
index 56e0efb04..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_print.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_reply.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_reply.gif
deleted file mode 100644
index 1482218b6..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_reply.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_reply2.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_reply2.gif
deleted file mode 100644
index 5f34a2ea8..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_reply2.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_rss.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_rss.gif
deleted file mode 100755
index 424624cfd..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_rss.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_scrap.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_scrap.gif
deleted file mode 100755
index 29d9beb44..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_scrap.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_search.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_search.gif
deleted file mode 100644
index 0a12014d3..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_search.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_vote.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_vote.gif
deleted file mode 100755
index 5a637cb0e..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_vote.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/btn_write.gif b/modules/board/skins/cozy_simple_gallery/images/common/btn_write.gif
deleted file mode 100644
index 53a2e1cf0..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/btn_write.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/buttonAscending.gif b/modules/board/skins/cozy_simple_gallery/images/common/buttonAscending.gif
deleted file mode 100644
index b405cc323..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/buttonAscending.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/buttonDescending.gif b/modules/board/skins/cozy_simple_gallery/images/common/buttonDescending.gif
deleted file mode 100644
index 2dc5575ff..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/buttonDescending.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/buttonTypeInput24.gif b/modules/board/skins/cozy_simple_gallery/images/common/buttonTypeInput24.gif
deleted file mode 100644
index 0dcfc0e3d..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/buttonTypeInput24.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/iconArrow.gif b/modules/board/skins/cozy_simple_gallery/images/common/iconArrow.gif
deleted file mode 100644
index 267b36495..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/iconArrow.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/iconFile.gif b/modules/board/skins/cozy_simple_gallery/images/common/iconFile.gif
deleted file mode 100644
index d48f9c181..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/iconFile.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/iconTag.gif b/modules/board/skins/cozy_simple_gallery/images/common/iconTag.gif
deleted file mode 100644
index ecfdb5585..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/iconTag.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/icon_arrow_reply.gif b/modules/board/skins/cozy_simple_gallery/images/common/icon_arrow_reply.gif
deleted file mode 100644
index bbabbd7ea..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/icon_arrow_reply.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/icon_gofirst.gif b/modules/board/skins/cozy_simple_gallery/images/common/icon_gofirst.gif
deleted file mode 100644
index 68ba6ef96..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/icon_gofirst.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/icon_golast.gif b/modules/board/skins/cozy_simple_gallery/images/common/icon_golast.gif
deleted file mode 100644
index f2450047d..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/icon_golast.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/icon_notice.gif b/modules/board/skins/cozy_simple_gallery/images/common/icon_notice.gif
deleted file mode 100644
index d9fb255f3..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/icon_notice.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/txt_date.gif b/modules/board/skins/cozy_simple_gallery/images/common/txt_date.gif
deleted file mode 100644
index 524d2d782..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/txt_date.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/txt_hit.gif b/modules/board/skins/cozy_simple_gallery/images/common/txt_hit.gif
deleted file mode 100644
index cc9771319..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/txt_hit.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/txt_hot.gif b/modules/board/skins/cozy_simple_gallery/images/common/txt_hot.gif
deleted file mode 100644
index 34e12c1ee..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/txt_hot.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/txt_name.gif b/modules/board/skins/cozy_simple_gallery/images/common/txt_name.gif
deleted file mode 100644
index 789dba359..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/txt_name.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/txt_option.gif b/modules/board/skins/cozy_simple_gallery/images/common/txt_option.gif
deleted file mode 100644
index 9cb5202b7..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/txt_option.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/common/txt_title.gif b/modules/board/skins/cozy_simple_gallery/images/common/txt_title.gif
deleted file mode 100644
index 34125f7a7..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/common/txt_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/green/bg_title.gif b/modules/board/skins/cozy_simple_gallery/images/green/bg_title.gif
deleted file mode 100644
index 9223e8058..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/green/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/green/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_gallery/images/green/bg_title_norepeat.gif
deleted file mode 100644
index 57aa0ebea..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/green/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/green/bg_top_title.gif b/modules/board/skins/cozy_simple_gallery/images/green/bg_top_title.gif
deleted file mode 100644
index 95cfa0245..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/green/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/pink/bg_title.gif b/modules/board/skins/cozy_simple_gallery/images/pink/bg_title.gif
deleted file mode 100644
index 4c587d473..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/pink/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/pink/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_gallery/images/pink/bg_title_norepeat.gif
deleted file mode 100644
index 80a473e84..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/pink/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/pink/bg_top_title.gif b/modules/board/skins/cozy_simple_gallery/images/pink/bg_top_title.gif
deleted file mode 100644
index d218b2a9e..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/pink/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/red/bg_title.gif b/modules/board/skins/cozy_simple_gallery/images/red/bg_title.gif
deleted file mode 100644
index f693fc693..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/red/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/red/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_gallery/images/red/bg_title_norepeat.gif
deleted file mode 100644
index f1b2417f5..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/red/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/images/red/bg_top_title.gif b/modules/board/skins/cozy_simple_gallery/images/red/bg_top_title.gif
deleted file mode 100644
index c4ae66243..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/images/red/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/input_password_form.html b/modules/board/skins/cozy_simple_gallery/input_password_form.html
deleted file mode 100644
index 985f1ffd5..000000000
--- a/modules/board/skins/cozy_simple_gallery/input_password_form.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/js/board.js b/modules/board/skins/cozy_simple_gallery/js/board.js
deleted file mode 100644
index 494a561ab..000000000
--- a/modules/board/skins/cozy_simple_gallery/js/board.js
+++ /dev/null
@@ -1,137 +0,0 @@
-/**
- * @file modules/board/js/board.js
- * @author zero (zero@nzeo.com)
- * @brief board 모듈의 javascript
- **/
-
-/* 관리자가 카트 선택시 세션에 넣음 */
-function doAddCart(mid, obj) {
- var srl = obj.value;
- var check_flag = obj.checked?'add':'remove';
-
- var params = new Array();
- params["mid"] = mid;
- params["srl"] = srl;
- params["check_flag"] = check_flag;
-
- exec_xml("board","procBoardAdminAddCart", params, null);
-}
-
-/* 글쓰기 작성후 */
-function completeDocumentInserted(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var category_srl = ret_obj['category_srl'];
-
- alert(message);
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(category_srl) url = url.setQuery('category',category_srl);
- location.href = url;
-}
-
-/* 글 삭제 */
-function completeDeleteDocument(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('act','').setQuery('document_srl','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 검색 실행 */
-function completeSearch(fo_obj, params) {
- fo_obj.submit();
-}
-
-/* 추천, 추천은 별도의 폼입력이 필요 없어 직접 필터 사용 */
-function doVote() {
- var fo_obj = document.getElementById('fo_document_info');
- procFilter(fo_obj, vote);
-}
-
-function completeVote(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- alert(message);
- location.href = location.href;
-}
-
-// 현재 페이지 reload
-function completeReload(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
-
- location.href = location.href;
-}
-
-/* 댓글 글쓰기 작성후 */
-function completeInsertComment(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var comment_srl = ret_obj['comment_srl'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(comment_srl) url += "#comment_"+comment_srl;
-
- alert(message);
-
- location.href = url;
-}
-
-/* 댓글 삭제 */
-function completeDeleteComment(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 트랙백 삭제 */
-function completeDeleteTrackback(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 카테고리 이동 */
-function doChangeCategory() {
- var sel_obj = xGetElementById("board_category");
- var sel_idx = sel_obj.selectedIndex;
- var category_srl = sel_obj.options[sel_idx].value;
- location.href = current_url.setQuery('category',category_srl);
-}
-
-/* 스크랩 */
-function doScrap(document_srl) {
- var params = new Array();
- params["document_srl"] = document_srl;
- exec_xml("member","procMemberScrapDocument", params, null);
-}
diff --git a/modules/board/skins/cozy_simple_gallery/list.html b/modules/board/skins/cozy_simple_gallery/list.html
deleted file mode 100644
index afe6b4ee0..000000000
--- a/modules/board/skins/cozy_simple_gallery/list.html
+++ /dev/null
@@ -1,181 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {@ $order_icon = "buttonDescending.gif" }
- {@ $order_type = "asc"; }
-
- {@ $order_icon = "buttonAscending.gif" }
- {@ $order_type = "desc"; }
-
-
-
-
-
-
-
-
-
-
-
-
-
- })
-
- 
-
-
-
-
- {$lang->readed_count} {$document->get('readed_count')}
- | {$lang->voted_count} {$document->get('voted_count')}
-
-
-
-
- |
-
-
-
-
-
-
-
-

-
-
-
{$page_no}
-
-
{$page_no}
-
-
-

-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/message.html b/modules/board/skins/cozy_simple_gallery/message.html
deleted file mode 100644
index 00bf01814..000000000
--- a/modules/board/skins/cozy_simple_gallery/message.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- {$message}
-
-
-
- {$lang->cmd_login}
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/screenshot/blue.gif b/modules/board/skins/cozy_simple_gallery/screenshot/blue.gif
deleted file mode 100644
index 13e76a099..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/screenshot/blue.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/screenshot/bluish_green.gif b/modules/board/skins/cozy_simple_gallery/screenshot/bluish_green.gif
deleted file mode 100644
index 61e7d63c9..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/screenshot/bluish_green.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/screenshot/green.gif b/modules/board/skins/cozy_simple_gallery/screenshot/green.gif
deleted file mode 100644
index b1430d44a..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/screenshot/green.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/screenshot/pink.gif b/modules/board/skins/cozy_simple_gallery/screenshot/pink.gif
deleted file mode 100644
index c4a4ba4d1..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/screenshot/pink.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/screenshot/red.gif b/modules/board/skins/cozy_simple_gallery/screenshot/red.gif
deleted file mode 100644
index 63cd8880c..000000000
Binary files a/modules/board/skins/cozy_simple_gallery/screenshot/red.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_gallery/skin.xml b/modules/board/skins/cozy_simple_gallery/skin.xml
deleted file mode 100644
index 090036ff0..000000000
--- a/modules/board/skins/cozy_simple_gallery/skin.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
- cozy simple (갤러리형)
- Cozyシンプル(ギャラリースタイル)
- cozy simple skin (gallery style)
- Cozy样式皮肤(相册型)
-
- (주)NHN
- (株)NHN
- (株)NHN
- NHN Corp
-
- cozy simple 스킨의 갤러리형입니다.
- 디자인 : 서기정 (http://blog.naver.com/addcozy)
- HTML/CSS : 소지훈
-
-
- Cozyシンプルスキンのギャラリースタイルです。
- デザイン:ソギジョン(http://blog.naver.com/addcozy)
- HTML/CSS:ソジフン
-
-
- This is gallery style board of cozy simple skin.
- Design : Ki-Jeong Seo (http://blog.naver.com/addcozy)
- HTML/CSS : Ji-Hun So
-
-
- Cozy样式皮肤。(相册型)
- 设计 : Ki-Jeong Seo (http://blog.naver.com/addcozy)
- HTML/CSS : Ji-Hun So
-
-
-
-
- 빨간색(기본)
- 赤
- Red (default)
- 红色(默认)
-
-
- 녹색
- 緑
- Green
- 绿色
-
-
- 파란색
- 青
- Blue
- 蓝色
-
-
- 분홍색
- ピンク
- Pink
- 粉红色
-
-
- 청록색
- 青緑
- Cyan
- 青绿色
-
-
-
-
- 정렬 대상
- ソート対象
- 排序对象
- Align Target
- select
- 등록된 순서 또는 변경된 순서로 정렬을 할 수 있습니다.
- 登録された順、変更された順でソートできます。
- 可对主题按发表顺或最后更新顺进行排序。
- It can align articles as registered order or modified order.
- newest
- updated
-
-
- 게시판 제목
- 掲示板タイトル
- 版面标题
- Title of Board
- 게시판의 제목을 적어주세요.
- 掲示板タイトルを入力してください。
- 请输入版面标题。(留空为不显示)
- Please input the title of board.
-
-
- 제목 글자수
- タイトルの文字数
- 标题字数
- Length of Subject
- 제목 글자수를 지정할 수 있습니다. (0또는 비워주시면 자르지 않습니다)
- タイトルの文字数が指定できます(「0」または空欄の場合は、文字数を制限しません)。
- 可以指定标题字数。(0或留空为不限)
- You may set length of title. (0 or blank value will not restrict the length)
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/trackback.html b/modules/board/skins/cozy_simple_gallery/trackback.html
deleted file mode 100644
index 29b00b1d1..000000000
--- a/modules/board/skins/cozy_simple_gallery/trackback.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/view_document.html b/modules/board/skins/cozy_simple_gallery/view_document.html
deleted file mode 100644
index 90b7060d6..000000000
--- a/modules/board/skins/cozy_simple_gallery/view_document.html
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- - {$lang->document_url} : {$oDocument->getPermanentUrl()}
-
- - {$lang->trackback_url} : {$oDocument->getTrackbackUrl()}
-
-
-
-
-
{$oDocument->getNickName()}
-
-
{$oDocument->get('ipaddress')}
-
-
-
-
-
-
-
-
-
{$oDocument->getContent()}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_gallery/write_form.html b/modules/board/skins/cozy_simple_gallery/write_form.html
deleted file mode 100644
index 016412f57..000000000
--- a/modules/board/skins/cozy_simple_gallery/write_form.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/comment.html b/modules/board/skins/cozy_simple_list/comment.html
deleted file mode 100644
index d92cb2cfb..000000000
--- a/modules/board/skins/cozy_simple_list/comment.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
diff --git a/modules/board/skins/cozy_simple_list/comment_form.html b/modules/board/skins/cozy_simple_list/comment_form.html
deleted file mode 100644
index 0e2048ede..000000000
--- a/modules/board/skins/cozy_simple_list/comment_form.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/css/blue.css b/modules/board/skins/cozy_simple_list/css/blue.css
deleted file mode 100644
index 085c6985c..000000000
--- a/modules/board/skins/cozy_simple_list/css/blue.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#1187d8 url(../images/blue/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #1187d8; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/blue/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#007ed5; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#007ed5; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#007ed5; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #1187d8;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #1187d8; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#007ed5;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/blue/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/blue/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_list/css/bluish_green.css b/modules/board/skins/cozy_simple_list/css/bluish_green.css
deleted file mode 100644
index 9c221ce62..000000000
--- a/modules/board/skins/cozy_simple_list/css/bluish_green.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#9ab09f url(../images/bluish_green/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #9ab09f; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/bluish_green/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#9ab09f; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#9ab09f; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#9ab09f; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #9ab09f;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #9ab09f; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#9ab09f;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/bluish_green/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/bluish_green/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_list/css/common.css b/modules/board/skins/cozy_simple_list/css/common.css
deleted file mode 100644
index 628c96ab0..000000000
--- a/modules/board/skins/cozy_simple_list/css/common.css
+++ /dev/null
@@ -1,540 +0,0 @@
-@charset "utf-8";
-/*
-NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
-Jeong, Chan Myeong 070601~070630
-*/
-
-/* ----- List+Read+Write+Modify | Start ----- */
-.boardHeader h3 { float:left; clear:both; padding:1.9em 1.5em 1.8em 1.5em; font-size:1.2em; color:#FFFFFF;}
-
-/* boardInformation */
-.boardInformation { width:100%; clear:both; margin:0 0 .5em 0; background:#EFEFEF; color:#8D8D8D; overflow:hidden;}
-.articleNum { float:left; padding:.5em 0 .5em 2.3em; font:.8em Tahoma;}
-.articleNum strong { margin:0 0 0 .5em; padding:0 0 0 .7em; font:bold .9em Tahoma; color:#6F6F6F; background:url(../images/common/bar_1x8_c0c0c0.gif) no-repeat left .1em;}
-.accountNavigation { float:right; margin:.3em .5em 0 0; overflow:hidden;}
-.accountNavigation li { list-style:none; float:left; margin:0 0 0 -.1em; padding:.1em .8em 0 .8em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left .3em;}
-.accountNavigation li a {}
-
-/* boardList */
-.boardList tr:first-child td, .boardList tr.first-child td {}
-.boardList tr.notice {}
-.boardList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
-
-.boardList th a { color:#3e3f3e;}
-.boardList th span.on { font-weight:bold;}
-.boardList th.num { background-position:-3px bottom; padding:0;}
-.boardList th select { height:20px; }
-.boardList th.category { padding:0 .2em 0 .5em;}
-.boardList th.category.thumbStyle { background-position:-3px bottom !important; border-left:1px solid #ffffff; text-align:left;}
-.boardList th:first-child { background-position:-2px bottom;}
-.boardList th.first-child { background-position:-2px bottom;}
-.boardList th.author {}
-.boardList th.title {}
-.boardList th.reading { white-space:nowrap;}
-.boardList th.recommend { white-space:nowrap;}
-.boardList th.reply { white-space:nowrap;}
-.boardList th.date {}
-.boardList th.check { padding:0;}
-.boardList th.user {}
-.boardList th.registDate {}
-.boardList th.checkDate {}
-.boardList th.friendGroup {}
-.boardList th.userId {}
-.boardList th.userName {}
-.boardList th.userNick {}
-.boardList th.sendMessage {}
-.boardList th.last-child { border-right:1px solid #ffffff;}
-.boardList th .sort { padding:0 .2em; vertical-align:middle;}
-.boardList th select,
-.boardList th input { vertical-align:middle;}
-
-.boardList td { padding:.3em; border-bottom:1px solid #e4e4e2;}
-.boardList td.noline { border-bottom:none;}
-.boardList td.num { font:.8em Tahoma; color:#999999; padding:.5em .5em .5em 1.5em;}
-.boardList td.category {}
-.boardList tr.notice td { padding:.3em; white-space:nowrap;}
-.boardList tr.notice td img { margin:-.1em .3em 0 0;}
-.boardList td.thumb { padding:.5em 0 .5em .5em; width:145px; table-layout:fixed; white-space:nowrap;}
-.boardList td.thumb * { vertical-align:middle;}
-.boardList td.title.bold { font-size:1em; font-weight:bold;}
-.boardList td.title.bold a { position:relative; top:.3em;}
-.boardList td.title * { vertical-align:middle;}
-.boardList td.title,
-.boardList td.title a { color:#444444; text-decoration:none; }
-.boardList td.title a:visited { color:#777777;}
-.boardList td.title .title_wrap { width:100%; overflow:hidden; white-space:nowrap;}
-.boardList td.author { padding:0 .5em 0 1.3em; color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
-.boardList td.author a { font-size:1em; color:#333333;}
-.boardList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
-.boardList td.reply { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
-.boardList td.date { font:.8em Tahoma; color:#999999; text-align:center;}
-.boardList td.registDate { font:.8em Tahoma; color:#999999; text-align:center;}
-.boardList td.checkDate { font:.8em Tahoma; color:#333333; text-align:center;}
-.boardList td.summary { border-top:none; vertical-align:top; color:#666666; line-height:1.25em;}
-.boardList td.summary a { color:#666666; text-decoration:none; line-height:inherit;}
-.boardList td.summary a:visited { color:#999999;}
-.boardList td.check { text-align:center;}
-.boardList td.user { color:#333333; font-size:.9em;}
-.boardList td.user a { color:#333333;}
-.boardList td.userId { font:.9em Tahoma;}
-.boardList td.userName {}
-.boardList td.userNick { font-size:.9em; color:#999999;}
-.boardList td.friendGroup {}
-.boardList td.sendMessage { text-align:center; padding:0;}
-.boardList td.sendMessage .buttonFixedLeft { position:relative; left:20%; _left:0;}
-*:first-child+html .boardList td.sendMessage .buttonFixedLeft { left:0;}
-.boardList td input { _margin:-3px;}
-.boardList td.title.bold .replyAndTrackback { font:.6em Tahoma; color:#ff6600; cursor:default; position:relative; top:.3em;}
-.boardList td .replyAndTrackback strong { font:bold 1em Tahoma;}
-
-.boardList td .thumbnailSmall { margin:0 .3em 0 .3em;}
-.boardList td .thumbnailSmall img {}
-.boardList td .thumbnailMedium { margin:0 .3em 0 .3em;}
-.boardList td .thumbnailMedium img {}
-
-.boardList.thumbnail {}
-.boardList.thumbnail td { border-top:none; border-bottom:1px solid #eff0ed; padding:1.5em 0 0 1.5em; overflow:hidden;}
-.boardList.thumbnail div.cell { float:left; width:131px; margin:0 1.6em 0 0; padding-bottom:1.5em;}
-.boardList.thumbnail div.cell .fix_img { width:131px; height:106px; overflow:hidden;}
-.boardList.thumbnail div.title { color:#444444; margin:.5em 0 .2em 0;}
-.boardList.thumbnail div.title a { color:#444444;}
-.boardList.thumbnail div.nameAndDate { font-size:.9em; color:#999999; margin-bottom:.2em; padding-left:3px;}
-.boardList.thumbnail div.nameAndDate a { color:#999999;}
-.boardList.thumbnail div.nameAndDate .date { font:.8em Tahoma; color:#999999;}
-.boardList.thumbnail div.readAndRecommend { font-size:.9em; color:#666666; padding-left:3px;}
-.boardList.thumbnail div.readAndRecommend .num { font:.8em Tahoma;}
-.boardList.thumbnail div.readAndRecommend .vr { color:#dddddd;}
-.boardList.thumbnail div.readAndRecommend strong.num { font:bold .8em Tahoma; color:#494949;}
-
-/* boardSearch */
-.boardSearch { clear:both; text-align:center; margin-top:3em;}
-.boardSearch fieldset { display:inline; padding:10px 15px 10px 15px; border:none; background:#F4F4F4; overflow:hidden; }
-.boardSearch fieldset legend { overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.boardSearch * { vertical-align:middle;}
-.boardSearch select { float:left;}
-.boardSearch input { float:left; margin:0 .3em; background:#fbfbfb;}
-.searchButton ul { overflow:hidden;}
-.searchButton li { float:left; margin-right:.3em; list-style:none;}
-
-.buttonTypeGo { border:none; cursor:pointer; width:24px; height:20px; background:url(../images/common/buttonTypeInput24.gif) no-repeat; font:.75em Tahoma; text-align:center;}
-
-
-/* pageNavigation */
-.pageNavigation { float:left; display:block; margin:2.2em 0 2em 1.1em; font:bold .8em Tahoma; }
-.pageNavigation a, .pageNavigation a:visited, .pageNavigation a:active { margin-left:-4px; font:bold .8em Tahoma; color:#676767; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-.pageNavigation a:hover { text-decoration:none; }
-.pageNavigation a.goToFirst,
-.pageNavigation a.goToLast { border:none; border-right:1px solid #ffffff; border-left:1px solid #ffffff; z-index:99; padding:1px 5px 3px 4px;}
-.pageNavigation a.goToFirst img,
-.pageNavigation a.goToLast img { vertical-align:middle;}
-
-.buttonBox { float:right; margin:1.2em 0 0 0; }
-
-/* boardRead */
-#blog .boardRead { position:relative; margin:0; _overflow:hidden;}
-.boardRead .originalContent { padding:2em 0 2em 0;}
-.boardRead .titleAndCategory { float:left;}
-.boardRead .titleAndCategory h4 { font-size:1.4em; display:inline; padding-left:.2em;}
-.boardRead .titleAndCategory .vr { font-size:.9em; margin:0 .3em; color:#c5c7c0;}
-.boardRead .titleAndCategory .category { font-size:.9em; color:#999999; white-space:nowrap;}
-
-.boardRead .dateAndModify { font-size:.8em; float:right; white-space:nowrap;}
-.boardRead .dateAndModify .date { font-size:.8em; font-family:Tahoma; color:#999999; margin-right:.5em; float:left; position:relative; top:.1em;}
-.boardRead .dateAndModify .date strong { font-size:1em; font-family:Tahoma;}
-.boardRead .dateAndModify ul { display:inline; margin:0 .4em 0 0;}
-.boardRead .dateAndModify ul li { float:left; margin-left:.3em; list-style:none;}
-.boardRead dl.uri { float:right; overflow:hidden; margin:0 0 3em .3em;}
-.boardRead dl.uri dt { float:left; clear:left; font-size:.9em; margin-right:.3em; color:#999999;}
-.boardRead dl.uri dd { clear:right; font-size:.8em; color:#d4d5d0;}
-.boardRead dl.uri dd span { font-family:Tahoma; color:#d4d5d0;}
-.boardRead .readBody { padding:0 .3em; color:#555555; overflow:hidden; margin-bottom:2em;}
-.boardRead .readBody p { margin:1em 0; line-height:1.5em;}
-.boardRead .contentBody { width:100%; overflow:hidden; }
-
-.boardRead .userInfo { float:left; white-space:nowrap;}
-.boardRead .userInfo .author { padding:0 .3em 0 0; color:#3074a5; margin-right:.3em;}
-.boardRead .userInfo .ipaddress { font-size:.9em; font-family:Tahoma; color:#888888; margin-right:.5em; }
-
-/* extraVars list */
-.extraVarsList { width:100%; border:1px solid #e0e1db; clear:both; margin-bottom:1em;}
-.extraVarsList tr.notice { background:#f8f8f8;}
-.extraVarsList tr.notice .num { font-size:.9em; font-weight:bold;}
-.extraVarsList tr.bg1 { background:#ffffff}
-.extraVarsList tr.bg2 { background:#fbfbfb;}
-.extraVarsList th { color:#3e3f3e; font-weight:bold; padding:.8em .5em .5em .5em; border-bottom:1px solid #eff0ed; border-right:1px solid #eff0ed;}
-.extraVarsList td { border-bottom:1px solid #eff0ed; padding:.5em .5em .5em 1em;}
-
-.boardRead .readFooter { border-top:1px solid #dfe0db; }
-.boardRead .readFooter .tag { margin-bottom:1em; padding:1em 0 0 0; }
-.boardRead .readFooter .tag h5 { display:inline; font-size:1em; margin:0 .3em 0 1.8em;}
-.boardRead .readFooter .tag ul,
-.boardRead .readFooter .tag li { display:inline;}
-.boardRead .readFooter .tag a { color:#444444; text-decoration:none;}
-.boardRead .readFooter .tag .tagIcon { vertical-align:middle;}
-.boardRead .readFooter .fileAttached { padding:1em 1em .8em 0; position:relative; _width:100%; border-bottom:1px solid #dfdfdd; overflow:hidden; background:#f9f9f9;}
-.boardRead .readFooter .fileAttached h5 {}
-.boardRead .readFooter .fileAttached ul { margin-left:1.8em;}
-.boardRead .readFooter .fileAttached li { float:left; margin-right:.75em; line-height:1.6em; color:#888888; white-space:nowrap; list-style:none;}
-.boardRead .readFooter .fileAttached li a { font-size:.9em; padding:.1em 0 .1em .2em; white-space:nowrap; position:relative; color:#888888; text-decoration:none; }
-.boardRead .readFooter .fileAttached li a:visited { color:#777777;}
-
-.listButton li { list-style:none; clear:both; text-align:right; margin-top:.5em; }
-
-.boardRead .replyAndTrackback { float:left; width:100%; background:url(../images/common/bg_repeat_x_eaeaea.gif) repeat-x left bottom; overflow:hidden;}
-.boardRead .replyAndTrackback li { float:left; font-weight:bold; margin:.3em 0 0 0; padding:.7em 1.1em .7em 1.2em; color:#FFFFFF; background:#B8B8B8; list-style:none;}
-.boardRead .replyAndTrackback li a { color:#FFFFFF; text-decoration:none; }
-.boardRead .replyAndTrackback li strong { padding:0 1.1em 0 0; background:#B8B8B8 url(../images/common/icon_close.gif) no-repeat right .2em;}
-.boardRead .replyAndTrackback li.selected a { color:#666666;}
-.boardRead .replyAndTrackback li.selected strong { padding:0 1.1em 0 0; background:#FFFFFF url(../images/common/icon_open.gif) no-repeat right .2em;}
-.boardRead .replyAndTrackback a#toggleReply { background:url(../images/common/buttonToggleReply.gif) no-repeat right top;}
-.boardRead .replyAndTrackback a#toggleTrackback { background:url(../images/common/buttonToggleReply.gif) no-repeat right -13px;}
-
-.boardRead #reply,
-.boardRead #trackback { color:#666666; border-left:1px solid #EAEAEA; border-right:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; padding-top:1em;}
-.boardRead #reply { }
-.boardRead #trackback { display:none;}
-
-.boardRead .topBorder { border-top:1px solid #EAEAEA; }
-
-.boardRead #reply .contentBox,
-.boardRead #trackback .contentBox { line-height:1.25em; color:#676767; clear:both; padding:1em; overflow:hidden;}
-.boardRead #reply .top_border,
-.boardRead #trackback .top_border { border-top:1px dashed #d8d8d8; }
-
-.boardRead .contentBox .content { width:100%; overflow:hidden; clear:both; margin-bottom:1em; }
-.boardRead .contentBox .author { float:left; overflow:hidden; color:#3173a3;}
-.boardRead .contentBox .date { float:right; font:.8em Tahoma; color:#cccccc; margin-left:.5em; }
-.boardRead .contentBox .replyOption { float:right; display:inline; white-space:nowrap; margin-left:.5em; }
-.boardRead .contentBox .replyOption img { vertical-align:middle;}
-
-.boardRead .contentBox .fileAttached { position:relative; _width:100%; overflow:hidden; clear:both; }
-.boardRead .contentBox .fileAttached h5 {}
-.boardRead .contentBox .fileAttached ul { margin-bottom:.5em;}
-.boardRead .contentBox .fileAttached li { float:left; margin-right:.75em; line-height:1.6em; color:#888888; white-space:nowrap; list-style:none;}
-.boardRead .contentBox .fileAttached li a { font-size:.9em; padding:.1em 0 .1em .2em; white-space:nowrap; position:relative; color:#888888; text-decoration:none; }
-.boardRead .contentBox .fileAttached li a:visited { color:#777777;}
-
-.boardRead .contentBox .title a { color:#676767 ; margin-right:.3em; text-decoration:none;}
-.boardRead .contentBox address a { font-size:.9em; color:#3173a3; margin-right:.3em; text-decoration:none; }
-.boardRead .contentBox address .trackback_date { font:.8em Tahoma; color:#cccccc; margin-left:.5em; }
-.boardRead .indent_box { background-color:#FBFBFB; }
-.boardRead .contentBox .indent {padding-left:1.5em; background:url(../images/common/icon_arrow_reply.gif) no-repeat left .1em;}
-
-/* boardEditor */
-.boardEditor { padding:.5em 0 1em 0; width:100%; overflow:hidden;}
-.boardEditor.reply { padding:.5em 1em 1em 1em; width:auto; overflow:hidden;}
-.boardEditor legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em;}
-.boardEditor fieldset { _width:100%; border:0px solid #eaeae7; border-top:none;}
-.boardEditor .userNameAndPw { position:relative; background:#fbfbfb; border-top:1px solid #eaeae7; border-bottom:1px solid #e1e1e1; padding:.5em 1em; white-space:nowrap;}
-.boardEditor .userNameAndPw * { vertical-align:middle;}
-.boardEditor .userNameAndPw label { margin-right:.2em; color:#666760;}
-.boardEditor .userNameAndPw input { color:#aaaaaa;}
-.boardEditor .userNameAndPw .userName { width:6em; margin-right:.8em;}
-.boardEditor .userNameAndPw .userPw { width:5em;}
-.boardEditor .userNameAndPw .emailAddress { width:6em;}
-.boardEditor .userNameAndPw .homePage { width:6em;}
-.boardEditor .userNameAndPw .checkSecret { position:absolute; right:2em; top:.7em;}
-
-/* boardWrite */
-.boardWrite { width:100%; position:relative;}
-.boardWrite .userNameAndPw { margin-bottom:-1px;}
-
-.boardWrite div.title label.title { display:block; float:left; font-weight:bold; padding:.4em 0 0 1.5em; width:9.5em; white-space:nowrap;}
-.boardWrite div.title input#title { width:60%;}
-
-.boardWrite .option dt { display:block; float:left; font-weight:bold; padding:.3em 0 0 1.5em; width:9.5em; white-space:nowrap;}
-.boardWrite .option dd { float:left; margin-right:1em; padding-top:.2em; _padding-top:.1em;}
-.boardWrite .option dd * { vertical-align:middle;}
-.boardWrite .inputTypeText { background:#fbfbfb;}
-.boardWrite .trackbackURI { clear:both; border-top:1px solid #eff0ed; padding:4px 0 .8em 0;}
-.boardWrite .trackbackURI label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.boardWrite .trackbackURI .inputTypeText { width:50%;}
-.boardWrite .tag { clear:both; border-top:1px solid #eff0ed; padding:.8em 0;}
-.boardWrite .tag label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.boardWrite .tag .inputTypeText { width:50%;}
-.boardWrite .tag .help { vertical-align:middle;}
-.boardWrite .tag .info { padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
-.boardWrite .extra_vars { clear:both; border-top:1px solid #eff0ed; padding:.8em 0;}
-.boardWrite .extra_vars label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.boardWrite .extra_vars .info { clear:both; padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
-.boardWrite .extra_vars ul li { float:left; margin-right:1em; }
-
-/* ----- List+Read+Write+Modify | End ----- */
-
-/* ----- Blog | Start ----- */
-#blog #bodyWrap #login_menu { padding:0 1.2em;}
-#blog #bodyWrap #login_menu .member { float:right}
-#blog #bodyWrap #login_menu .member li {display:inline; margin:0 0 0 -.1em; padding:0 .6em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left center;}
-#blog #bodyWrap #login_menu .login {float:right}
-
-
-/* Blog header Child*/
-#blog #header h1 { font:bold 1.3em 돋움; margin:2em 0 .4em 30px; letter-spacing:-.05em; }
-#blog #header h1 a { color:#FFFFFF;}
-#blog #header #tagLine { padding:0 0 0 30px; color:#f6c8c8;}
-#blog #header #globalNavigation { width:100%; margin:2.4em 0 0 0; padding:.8em 0 .8em 53.5em; background:#e4e4e4; overflow:hidden;}
-#blog #header #globalNavigation li { float:left; margin-left:-1px; background:url(../images/common/bar_1x10_c0c0c0.gif) no-repeat left bottom;}
-#blog #header #globalNavigation li.no_bg { background:none;}
-#blog #header #globalNavigation li a { display:block; float:left; padding:0 1.2em; font:bold .8em Tahoma; color:#54564b; white-space:nowrap;}
-#blog #header #globalNavigation li.on a { color:#ee2126;}
-
-/* Column Left & Right Common Child */
-.boxTypeA { position:relative; border:5px solid #F2F2F2; margin-bottom:.7em;}
-.boxTypeB { position:relative; margin-bottom:.7em;}
-.boxTypeB h2 { position:relative; padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; font-size:1em; color:#ef2121; font-family:Tahoma;}
-*:first-child+html .boxTypeB h2 { height:20px; color:#ef2121;}
-.boxTypeB .toggleMask {position:absolute; top:8px; right:5px; cursor:pointer; width:13px; height:13px; overflow:hidden;}
-.boxTypeB .showHide { position:relative;}
-.boxTypeB .optionList { position:absolute; top:8px; right:0; overflow:hidden;}
-.boxTypeB .optionList li { float:left; padding:0 .5em; margin-left:-1px; background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat left center;}
-.boxTypeB .optionList li a { color:#a4a4a4; font-size:.9em;}
-.boxTypeB .optionList li.on a { color:#000000;}
-.boxTypeB .showAll { color:#737373; font:bold .9em tahoma; white-space:nowrap; display:inline-block; padding:.4em .8em; background:url(../images/common/bar_1x8_c0c0c0.gif) no-repeat right center;}
-.boxTypeB .showAll.no_bg { background:none;}
-
-/* Profile */
-#blog div#profile { padding:6px; overflow:hidden;}
-#blog div#profile img.profile { width:153px; display:block; margin-bottom:1.2em;}
-#blog div#profile dl#hello {}
-#blog div#profile dl#hello dt { color:#333333; margin-bottom:.5em;}
-#blog div#profile dl#hello dt a { color:#333333;}
-#blog div#profile dl#hello dd { color:#777777; margin-bottom:1em;}
-#blog div#profile ul#admin { overflow:hidden; height:1.2em;}
-#blog div#profile ul#admin li { float:left; padding:0 .4em; font:.8em tahoma;}
-#blog div#profile ul#admin li a { display:block;}
-#blog div#profile ul#admin li.write a {}
-#blog div#profile ul#admin li.setup { border-left:1px solid #e3e3e3;}
-#blog div#profile ul#admin li.setup a {}
-#blog div#profile ul#admin li a { color:#666666;}
-
-/* Category */
-#blog div#category {}
-#blog div#category #categoryList { padding:1em .8em .5em .8em;}
-#blog div#category #categoryList li { position:relative; padding:0 0 0 15px; background:url(../images/common/iconFolderClose.gif) no-repeat 2px top;}
-#blog div#category #categoryList li li {}
-#blog div#category #categoryList li li li { background:url(../images/common/iconList.gif) no-repeat 5px top;}
-#blog div#category #categoryList a { display:block; _display:inline-block; color:#6b6b6b; margin:0 0 6px 5px;}
-
-/* Search Box */
-#blog div#searchBox { margin-bottom:.7em; padding:.6em; background:#f5f5f5; overflow:hidden;}
-#blog div#searchBox fieldset { border:none;}
-#blog div#searchBox fieldset legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-
-/* Tags */
-#blog div#tag { padding-bottom:1em;}
-#blog div#tag .tagList { padding:1.2em; overflow:hidden;}
-#blog div#tag .tagList li { display:inline; color:#a4a4a4; margin-right:.1em; line-height:1.5em;}
-#blog div#tag .tagList li a { color:#a4a4a4;}
-#blog div#tag .tagList li.typeA a { color:#717171; font-weight:bold;}
-#blog div#tag .tagList li.typeB a { color:#3d3d3d;}
-#blog div#tag .tagList li.typeC a { font-weight:bold;}
-#blog div#tag .tag_sort { width:100%; border-top:1px dashed #ababab; border-bottom:1px dashed #ababab; text-align:center; overflow:hidden;}
-
-/* Neighbor */
-#blog div#neighbor {}
-#blog div#neighbor #neighborList { padding:1.2em 1.2em 0 1.2em;}
-#blog div#neighbor #neighborList li { padding:0 0 .7em 1.2em; background:url(../images/common/iconPlus2.gif) no-repeat left top;}
-#blog div#neighbor #neighborList li img { padding-left:.3em; top:.1em;}
-#blog div#neighbor #neighborList li a { display:inline-block; color:#6b6b6b; font-weight:bold;}
-#blog div#neighbor #neighborList li ul { display:none; padding:.7em 0 0 0;}
-#blog div#neighbor #neighborList li ul li { padding:0 0 .6em .6em; margin-left:-.6em; background:url(../images/common/iconLineBD.gif) no-repeat left 5px;}
-#blog div#neighbor #neighborList li ul li a{ font-weight:normal;}
-
-/* Calendar */
-#blog div#calendar {}
-#blog div#calendar table { width:100%; background:url(../images/common/bg_line_dot_x.gif) repeat-x left top;}
-#blog div#calendar table caption { font:bold 1em 돋움; color:#ec1a25; padding:1em;}
-#blog div#calendar table caption .mm { font:bold 1em 돋움; color:#555650;}
-#blog div#calendar table caption a { padding:.2em;}
-#blog div#calendar table caption a img { vertical-align:middle;}
-#blog div#calendar table th { padding:.6em 0;}
-#blog div#calendar table td { padding:.25em 0;}
-#blog div#calendar table th { font:bold .7em tahoma; color:#717171;}
-#blog div#calendar table th.sun { color:#000000;}
-#blog div#calendar table td { text-align:center;}
-#blog div#calendar table td a { font:.7em Tahoma; color:#9a9a9a;}
-#blog div#calendar table td.sun { color:#000000;}
-#blog div#calendar table td.sun a { color:#000000;}
-#blog div#calendar table td.today a { font-weight:bold; color:#54564b;}
-#blog div#calendar table td.posted a { text-decoration:underline;}
-
-#blog .boardWrite div.title { border-top:2px solid #ed1b24;}
-#blog .write_post h3 {margin:1.5em 1em 1em 1em; font:bold 1.2em 돋움;}
-/* ----- Blog | End ----- */
-
-
-/* ----- Member | Start ----- */
-
-.memberHeader { position:relative; _width:100%; background:#ED2027 url(../images/common/bg_top_title.gif) no-repeat 23px -6px; overflow:hidden;}
-.memberHeader h3 { float:left; clear:both; padding:1.2em 0 1em 1.7em; font-size:1.1em; color:#FFFFFF;}
-.memberInformation { width:100%; clear:both; margin:0 0 .5em 0; background:#EFEFEF; color:#8D8D8D; overflow:hidden;}
-.memberInformation .friendNum { float:left; padding:.7em 0 .7em 2em; background:url(../images/common/iconFriend.gif) no-repeat .5em .4em;}
-.memberInformation .friendNum strong { font:bold 11px Tahoma; color:#ec2127;}
-.memberInformation .addGroup { float:right; margin:.8em 1em .7em 0;}
-.memberInformation .instantMessage { float:right; margin:.7em; overflow:hidden;}
-.memberInformation .instantMessage li { float:left; margin:0 0 0 -.1em; padding:0 .5em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left .25em;}
-.memberInformation .instantMessage li a {white-space:nowrap; color:#666666;}
-.memberInformation .instantMessage li.on a { background-position:left -14px; font-weight:bold;}
-.memberInformation .instantMessage li a strong { font:bold 0.75em tahoma; color:#ee202a;}
-
-/* 친구목록 */
-.memberList { width:100%; position:relative; border-bottom:2px solid #ED2A32; border-collapse:collapse;}
-
-.memberList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/common/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.memberList th.check { padding:0;}
-.memberList th.friendGroup { padding:0 0 0 .3em; text-align:left;}
-.memberList th select,
-.memberList th input { vertical-align:middle;}
-.memberList th.repeat_bg { background:#ffffff url(../images/common/bg_title_repeat_x.gif) repeat-x left bottom;}
-
-.memberList td { padding:.3em; border-bottom:1px solid #e4e4e2;}
-.memberList td.noline { border-bottom:none;}
-.memberList td.check { text-align:center;}
-.memberList td.friendGroup { }
-.memberList td.userId { text-align:center; font:.9em Tahoma;}
-.memberList td.userName { text-align:center;}
-.memberList td.userNick { text-align:center; color:#999999;}
-.memberList td.registDate { text-align:center; font:.8em Tahoma;}
-.memberList td.sendMessage { text-align:center;}
-
-
-.smallBox { margin:5em auto 1em auto;}
-.smallBox.w268 { width:268px;}
-.smallBox.w298 { width:298px;}
-.smallBox.w498 { width:498px;}
-.smallBox .header { position:relative; _width:100%; background:#ed2027; overflow:hidden;}
-.smallBox .header h3 { font-size:1.2em; color:#FFFFFF; padding:1em 2em .8em 1em;}
-.smallBox .login { position:relative; border:none; padding:2.4em 0 2em 2.3em;}
-.smallBox .login legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.smallBox .login dl { overflow:hidden; width:162px; float:left;}
-.smallBox .login dl dt { float:left; width:55px; color:#54564b; height:22px; padding-top:5px;}
-.smallBox .login dl dd { float:left; width:105px; height:27px;}
-.smallBox .login dl dd input { width:90px;}
-.smallBox .login .loginButton { display:block; float:left; margin-top:27px; _margin-top:28px;}
-*:first-child+html .smallBox .login .loginButton { margin-top:28px;}
-.smallBox .login .keep { float:left; clear:both; white-space:nowrap; position:relative; left:55px; _left:52px;}
-*:first-child+html .smallBox .login .keep { left:52px;}
-.smallBox .login .keep input { vertical-align:middle;}
-.smallBox .login .keep label { font-size:11px; color:#999999;}
-.smallBox .help { background:#F7F7F7; border-top:1px solid #ed2a32; border-bottom:2px solid #ee2b33; overflow:hidden; padding:1.1em; text-align:center; height:1em;}
-.smallBox .help li { display:inline; padding:0 .3em 0 .7em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left center;}
-.smallBox .help li:first-child { background:none;}
-.smallBox .help li.first-child { _background:none;}
-.smallBox .help li a { font-size:11px; color:#54564b;}
-.smallBox .text { color:#54564b; text-align:center; padding:4.25em 2em 4.8em 2em;}
-.smallBox .text p { margin-bottom:.5em;}
-.smallBox .button img { vertical-align:top;}
-.smallBox.w268 .button ul { position:absolute; left:79px; }
-.smallBox.w298 .button ul { position:absolute; left:110px; }
-.smallBox.w498 .button ul { position:absolute; left:220px; }
-.smallBox .button ul li { float:left; margin-right:.3em;}
-.smallBox .complex { padding:1.5em 2em 2em 2em;}
-.smallBox .friend { width:100%;}
-.smallBox .friend th { width:7em; padding:.9em; border-bottom:1px solid #e4e5e0;}
-.smallBox .friend td { padding:.9em; border-bottom:1px solid #e4e5e0; background:url(../images/common/bar_1x18_e4e5e0.gif) no-repeat left bottom;}
-.smallBox .leftHeaderType { border-top:1px solid #e0e1db; border-left:1px solid #e0e1db; width:100%;}
-.smallBox .leftHeaderType th,
-.smallBox .leftHeaderType td { border-right:1px solid #e0e1db; border-bottom:1px solid #e0e1db; padding:.8em 1em .6em 1em;}
-.smallBox .leftHeaderType th { color:#333333; text-align:left; background:#f5f5f3;}
-.smallBox .leftHeaderType td { color:#444444;}
-.smallBox .inputTypeText { background:#fbfbfb;}
-.smallBox .group { overflow:hidden; padding:.5em 0; margin-top:.7em;}
-.smallBox .group select { float:left; width:180px; margin-top:1px;}
-.smallBox .pwModify { border:none;}
-.smallBox .pwModify legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.smallBox .pwModify input { width:9em;}
-.smallBox .pwModify br { display:block; margin-bottom:.2em}
-.smallBox .pwModify p { text-align:center; margin-top:1em; color:#54564b;}
-
-
-/* messageList */
-.messageList { width:100%; position:relative; border-bottom:2px solid #ed2a32; border-collapse:collapse;}
-.messageList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
-
-.messageList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/common/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.messageList th:first-child,
-.messageList th.first-child { background-position:-3px bottom;}
-.messageList th.author { background:url(../images/common/bg_title_repeat_x.gif) repeat-x left bottom; text-align:left;}
-.messageList th.check { padding:0;}
-.messageList th select,
-.messageList th input { vertical-align:middle;}
-
-.messageList td { padding:.3em; border-bottom:1px solid #EFEFEF;}
-.messageList td.noline { border-bottom:none;}
-.messageList td.category {}
-.messageList tr.notice td { padding:.7em .7em .7em .9em; white-space:nowrap;}
-.messageList tr.notice td img { margin:-.1em .3em 0 0;}
-.messageList td.thumb { padding:.5em 0 .5em .5em; width:145px; table-layout:fixed; white-space:nowrap;}
-.messageList td.thumb * { vertical-align:middle;}
-.messageList td.title {}
-.messageList td.title.bold { font-size:1em; font-weight:bold;}
-.messageList td.title.bold a { position:relative; top:.3em;}
-.messageList td.title * { vertical-align:middle;}
-.messageList td.title,
-.messageList td.title a { color:#444444;}
-.messageList td.title a:visited { color:#777777;}
-.messageList td.author { padding:0 .5em 0 1.3em; color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
-.messageList td.author a { font-size:1em; color:#333333;}
-.messageList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.recommend { font:bold .8em Tahoma; color:#ec2127; text-align:center;}
-.messageList td.reply { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
-.messageList td.date { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.registDate { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.checkDate { font:.8em Tahoma; color:#333333; text-align:center;}
-.messageList td.summary { border-top:none; vertical-align:top; color:#666666; line-height:1.25em;}
-.messageList td.summary a { color:#666666; text-decoration:none; line-height:inherit;}
-.messageList td.summary a:visited { color:#999999;}
-.messageList td.check { text-align:center;}
-.messageList td.user { color:#333333; font-size:.9em;}
-.messageList td.user a { color:#333333;}
-.messageList td.userId { font:.9em Tahoma;}
-.messageList td.userNick { font-size:.9em; color:#999999;}
-.messageList td.sendMessage { text-align:center; padding:0;}
-.messageList td.sendMessage .buttonFixedLeft { position:relative; left:20%; _left:0;}
-
-.readMessage { margin-bottom:2em;}
-.readMessage .messageHeader { padding:1.5em; height:1em; overflow:hidden;}
-.readMessage .messageHeader h4 { float:left; padding-left:.5em; font-size:1em; background:url(../images/common/iconArrow99.gif) no-repeat left .3em;}
-.readMessage .messageHeader address { float:right; white-space:nowrap;}
-.readMessage .messageHeader address em { font-size:.9em; font-style:normal; color:#333333; margin-right:.3em;}
-.readMessage .messageHeader address em a { color:#333333;}
-.readMessage .messageHeader address .date { font:.8em Tahoma; color:#999999;}
-.readMessage .messageBody { border:1px solid #e0e1db; margin:0 1.5em 1.5em 1.5em; padding:1em; position:relative; color:#666666;}
-.readMessage .deleteOrKeep { padding:.5em 0; overflow:hidden; background:#f5f5f3; border-top:1px solid #eaebe7; _width:100%;}
-.readMessage .deleteOrKeep li { position:relative; left:40%; float:left; margin-right:.5em;}
-.readMessage .button { position:relative; background:#f7f7f7; border-top:1px solid #ee2b33; border-bottom:2px solid #ee2b33; overflow:hidden; padding:.7em; text-align:center;}
-
-
-.joinTable.typeA { border-top:2px solid #ee1b24; border-collapse:collapse;}
-.joinTable.typeB { border-bottom:2px solid #ee1b24; background:#f9f9f9;}
-.joinTable.typeC { border-top:2px solid #ee2b33; border-bottom:2px solid #ee2b33; border-collapse:collapse;}
-.joinTable.typeB caption { border-top:1px dashed #919191; background:#f9f9f9;}
-.joinTable { width:100%;}
-.joinTable caption { padding:2em 0 .5em 1.5em; font-weight:bold; text-align:left; background:url(../images/common/iconH3.gif) no-repeat .5em 2em;}
-.joinTable th,
-.joinTable td { padding:.7em .5em .7em 1.5em; text-align:left; border-top:1px solid #eff0eb;}
-.joinTable td { background:url(../images/common/bar_1x18_e4e5e0.gif) no-repeat left bottom;}
-.joinTable th { width:10em;}
-.joinTable td textarea { width:40em; height:4.5em; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; line-height:1em; background:#fbfbfb; vertical-align:middle; float:left; margin-right:.5em; margin-bottom:.5em; color:#666666; overflow:auto;}
-.joinTable td input { border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; height:1em; line-height:1em; background:#fbfbfb; vertical-align:middle; float:left; margin-right:.5em; margin-bottom:.5em; color:#666666;}
-.joinTable td input.radio,
-.joinTable td input.check { border:none; padding:0; margin:0; background:none; margin-top:.4em;}
-.joinTable td input.w4em { width:4em;}
-.joinTable td input.w2em { width:2em;}
-.joinTable td select { float:left; margin-right:.5em;}
-.joinTable td .fl { margin-right:.5em;}
-.joinTable td br { clear:both;}
-.joinTable td p { float:left; font-size:.9em; color:#999999; padding-top:.5em; margin-right:.5em;}
-.joinTable td label { float:left; color:#3f4040; padding-top:.3em; margin-right:.5em;}
-.joinTable td a { color:#333333;}
-.joinTable .no_line { border:none;}
-.join_button { margin:1em 0 0 0; text-align:center;}
-.joinTable .add_info { padding:2.5em .5em .7em 1.5em; background:#f9f9f9; border-top:1px dashed #919191;}
-.buttonTypeWrite.join { margin-top:1.2em;}
-
-/* ----- Member | End ----- */
-
-
-.smallBox .inputPassword { position:relative; border:none; padding:2em 2em 1.5em 2em;}
-.smallBox .inputPassword .inputTypeText { float:left; margin-right:.5em; width:8em;}
-.smallBox .inputPassword legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
diff --git a/modules/board/skins/cozy_simple_list/css/green.css b/modules/board/skins/cozy_simple_list/css/green.css
deleted file mode 100644
index 592d74f50..000000000
--- a/modules/board/skins/cozy_simple_list/css/green.css
+++ /dev/null
@@ -1,20 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#8dc63f url(../images/green/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #8dc63f; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/green/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#27a939; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#27a939; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#27a939; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #8dc63f;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #8dc63f; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#8dc63f;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #8dc63f;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/green/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/green/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
-
diff --git a/modules/board/skins/cozy_simple_list/css/pink.css b/modules/board/skins/cozy_simple_list/css/pink.css
deleted file mode 100644
index 7269ac2a4..000000000
--- a/modules/board/skins/cozy_simple_list/css/pink.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#f70795 url(../images/pink/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #f70795; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/pink/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#f70795; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#f70795; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#f70795; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #f70795;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #f70795; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#f70795;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/pink/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/pink/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_list/css/red.css b/modules/board/skins/cozy_simple_list/css/red.css
deleted file mode 100644
index b703a9dbb..000000000
--- a/modules/board/skins/cozy_simple_list/css/red.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#ED2027 url(../images/red/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #ed2a32; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/red/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#ed1f29; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#ec2127; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#ff6600; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #ed2228;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #ee202a; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#eb1c22;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #ed1b24;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/red/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/red/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_list/delete_comment_form.html b/modules/board/skins/cozy_simple_list/delete_comment_form.html
deleted file mode 100644
index 984c3ac8e..000000000
--- a/modules/board/skins/cozy_simple_list/delete_comment_form.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/delete_form.html b/modules/board/skins/cozy_simple_list/delete_form.html
deleted file mode 100644
index 1ca638c93..000000000
--- a/modules/board/skins/cozy_simple_list/delete_form.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/delete_trackback_form.html b/modules/board/skins/cozy_simple_list/delete_trackback_form.html
deleted file mode 100644
index f907b6793..000000000
--- a/modules/board/skins/cozy_simple_list/delete_trackback_form.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/extra_var_form.html b/modules/board/skins/cozy_simple_list/extra_var_form.html
deleted file mode 100644
index 564cec9d9..000000000
--- a/modules/board/skins/cozy_simple_list/extra_var_form.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
- {@ $val->default = explode(',',$val->default) }
-
-
-
-{@ $val->column_name = "extra_vars".$key}
-
-
-{@ $val->value = $oDocument->getExtraValue($key)}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {zdate($val->value,"Y-m-d")}
- {$lang->cmd_open_calendar}
-
-
-
-{$val->desc}
-
diff --git a/modules/board/skins/cozy_simple_list/extra_var_value.html b/modules/board/skins/cozy_simple_list/extra_var_value.html
deleted file mode 100644
index 0d5b21657..000000000
--- a/modules/board/skins/cozy_simple_list/extra_var_value.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-{@ $val->column_name = "extra_vars".$key}
-
-
-{@ $val->value = $oDocument->getExtraValue($key)}
-
-
-
- {htmlspecialchars($val->value)}
-
-
-
-
- {$val->value}
-
-
-
-
-
-
-
- {$val->value}
-
-
-
-
-
-
- {htmlspecialchars($val->value[0])}
- -
- {htmlspecialchars($val->value[1])}
- -
- {htmlspecialchars($val->value[2])}
-
-
-
- {nl2br(htmlspecialchars($val->value))}
-
-
-
-
- {@ $_tmp_value[] = htmlspecialchars($v)}
-
- {implode(",",$_tmp_value)}
-
-
-
- {htmlspecialchars($val->value)}
-
-
-
- {zdate($val->value,"Y-m-d")}
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/filter/delete_comment.xml b/modules/board/skins/cozy_simple_list/filter/delete_comment.xml
deleted file mode 100644
index 115ea00d9..000000000
--- a/modules/board/skins/cozy_simple_list/filter/delete_comment.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/filter/delete_document.xml b/modules/board/skins/cozy_simple_list/filter/delete_document.xml
deleted file mode 100644
index 7627f5a63..000000000
--- a/modules/board/skins/cozy_simple_list/filter/delete_document.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/filter/delete_trackback.xml b/modules/board/skins/cozy_simple_list/filter/delete_trackback.xml
deleted file mode 100644
index 2140675f8..000000000
--- a/modules/board/skins/cozy_simple_list/filter/delete_trackback.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/filter/input_password.xml b/modules/board/skins/cozy_simple_list/filter/input_password.xml
deleted file mode 100644
index 55cb6d8e0..000000000
--- a/modules/board/skins/cozy_simple_list/filter/input_password.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/filter/insert.xml b/modules/board/skins/cozy_simple_list/filter/insert.xml
deleted file mode 100644
index fbfb2d970..000000000
--- a/modules/board/skins/cozy_simple_list/filter/insert.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/filter/insert_comment.xml b/modules/board/skins/cozy_simple_list/filter/insert_comment.xml
deleted file mode 100644
index ba2216c8a..000000000
--- a/modules/board/skins/cozy_simple_list/filter/insert_comment.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/filter/search.xml b/modules/board/skins/cozy_simple_list/filter/search.xml
deleted file mode 100644
index 6c85e1254..000000000
--- a/modules/board/skins/cozy_simple_list/filter/search.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/filter/vote.xml b/modules/board/skins/cozy_simple_list/filter/vote.xml
deleted file mode 100644
index 0870a7551..000000000
--- a/modules/board/skins/cozy_simple_list/filter/vote.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/footer.html b/modules/board/skins/cozy_simple_list/footer.html
deleted file mode 100644
index c6171637a..000000000
--- a/modules/board/skins/cozy_simple_list/footer.html
+++ /dev/null
@@ -1,2 +0,0 @@
-
-{$module_info->footer_text}
diff --git a/modules/board/skins/cozy_simple_list/header.html b/modules/board/skins/cozy_simple_list/header.html
deleted file mode 100644
index 0f408784f..000000000
--- a/modules/board/skins/cozy_simple_list/header.html
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
- {@$module_info->colorset = "red"}
-
-
-
-
-
-
-
-
-
-
-
-
-{$module_info->header_text}
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/images/blue/bg_title.gif b/modules/board/skins/cozy_simple_list/images/blue/bg_title.gif
deleted file mode 100644
index ff67b452b..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/blue/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/blue/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_list/images/blue/bg_title_norepeat.gif
deleted file mode 100644
index aec4de0b0..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/blue/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/blue/bg_top_title.gif b/modules/board/skins/cozy_simple_list/images/blue/bg_top_title.gif
deleted file mode 100644
index 99eecde67..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/blue/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/bluish_green/bg_title.gif b/modules/board/skins/cozy_simple_list/images/bluish_green/bg_title.gif
deleted file mode 100644
index c5cf6b136..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/bluish_green/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/bluish_green/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_list/images/bluish_green/bg_title_norepeat.gif
deleted file mode 100644
index 227cf252b..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/bluish_green/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/bluish_green/bg_top_title.gif b/modules/board/skins/cozy_simple_list/images/bluish_green/bg_top_title.gif
deleted file mode 100644
index 160682e41..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/bluish_green/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/bar_1x7_c0c0c0.gif b/modules/board/skins/cozy_simple_list/images/common/bar_1x7_c0c0c0.gif
deleted file mode 100644
index 1d2f92ff7..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/bar_1x7_c0c0c0.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/bar_1x8_c0c0c0.gif b/modules/board/skins/cozy_simple_list/images/common/bar_1x8_c0c0c0.gif
deleted file mode 100644
index f37814f58..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/bar_1x8_c0c0c0.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/bg_repeat_x_eaeaea.gif b/modules/board/skins/cozy_simple_list/images/common/bg_repeat_x_eaeaea.gif
deleted file mode 100644
index 0b011fe5d..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/bg_repeat_x_eaeaea.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn4_rss.gif b/modules/board/skins/cozy_simple_list/images/common/btn4_rss.gif
deleted file mode 100644
index 50584f6d5..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn4_rss.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_admin.gif b/modules/board/skins/cozy_simple_list/images/common/btn_admin.gif
deleted file mode 100644
index bea6e158e..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_admin.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_cancel.gif b/modules/board/skins/cozy_simple_list/images/common/btn_cancel.gif
deleted file mode 100644
index 65b303e06..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_cancel.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_cancel3.gif b/modules/board/skins/cozy_simple_list/images/common/btn_cancel3.gif
deleted file mode 100644
index 5dfcfd0b7..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_cancel3.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_delete.gif b/modules/board/skins/cozy_simple_list/images/common/btn_delete.gif
deleted file mode 100644
index 84a26c508..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_delete.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_delete2.gif b/modules/board/skins/cozy_simple_list/images/common/btn_delete2.gif
deleted file mode 100644
index 1fcb5e906..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_delete2.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_edit.gif b/modules/board/skins/cozy_simple_list/images/common/btn_edit.gif
deleted file mode 100644
index 3f7bd62b1..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_edit.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_findid.gif b/modules/board/skins/cozy_simple_list/images/common/btn_findid.gif
deleted file mode 100644
index de53c3d16..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_findid.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_findpw.gif b/modules/board/skins/cozy_simple_list/images/common/btn_findpw.gif
deleted file mode 100644
index 26f254d9a..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_findpw.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_joinus.gif b/modules/board/skins/cozy_simple_list/images/common/btn_joinus.gif
deleted file mode 100644
index beed35641..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_joinus.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_list.gif b/modules/board/skins/cozy_simple_list/images/common/btn_list.gif
deleted file mode 100644
index 8e56215c8..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_list.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_login.gif b/modules/board/skins/cozy_simple_list/images/common/btn_login.gif
deleted file mode 100755
index b5e6a3e9e..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_login.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_logout.gif b/modules/board/skins/cozy_simple_list/images/common/btn_logout.gif
deleted file mode 100644
index 0233282e6..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_logout.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_manage.gif b/modules/board/skins/cozy_simple_list/images/common/btn_manage.gif
deleted file mode 100755
index 6f5cd05b7..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_manage.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_modify.gif b/modules/board/skins/cozy_simple_list/images/common/btn_modify.gif
deleted file mode 100644
index 7b4321472..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_modify.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_my.gif b/modules/board/skins/cozy_simple_list/images/common/btn_my.gif
deleted file mode 100644
index 72e626189..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_my.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_preview.gif b/modules/board/skins/cozy_simple_list/images/common/btn_preview.gif
deleted file mode 100755
index e66ee6ca5..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_preview.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_print.gif b/modules/board/skins/cozy_simple_list/images/common/btn_print.gif
deleted file mode 100755
index 56e0efb04..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_print.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_reply.gif b/modules/board/skins/cozy_simple_list/images/common/btn_reply.gif
deleted file mode 100644
index 1482218b6..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_reply.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_reply2.gif b/modules/board/skins/cozy_simple_list/images/common/btn_reply2.gif
deleted file mode 100644
index 5f34a2ea8..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_reply2.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_rss.gif b/modules/board/skins/cozy_simple_list/images/common/btn_rss.gif
deleted file mode 100755
index 424624cfd..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_rss.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_scrap.gif b/modules/board/skins/cozy_simple_list/images/common/btn_scrap.gif
deleted file mode 100755
index 29d9beb44..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_scrap.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_search.gif b/modules/board/skins/cozy_simple_list/images/common/btn_search.gif
deleted file mode 100644
index 0a12014d3..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_search.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_vote.gif b/modules/board/skins/cozy_simple_list/images/common/btn_vote.gif
deleted file mode 100755
index 5a637cb0e..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_vote.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/btn_write.gif b/modules/board/skins/cozy_simple_list/images/common/btn_write.gif
deleted file mode 100644
index 53a2e1cf0..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/btn_write.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/buttonAscending.gif b/modules/board/skins/cozy_simple_list/images/common/buttonAscending.gif
deleted file mode 100644
index b405cc323..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/buttonAscending.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/buttonDescending.gif b/modules/board/skins/cozy_simple_list/images/common/buttonDescending.gif
deleted file mode 100644
index 2dc5575ff..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/buttonDescending.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/buttonTypeInput24.gif b/modules/board/skins/cozy_simple_list/images/common/buttonTypeInput24.gif
deleted file mode 100644
index 0dcfc0e3d..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/buttonTypeInput24.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/iconArrow.gif b/modules/board/skins/cozy_simple_list/images/common/iconArrow.gif
deleted file mode 100644
index 267b36495..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/iconArrow.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/iconFile.gif b/modules/board/skins/cozy_simple_list/images/common/iconFile.gif
deleted file mode 100644
index d48f9c181..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/iconFile.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/iconTag.gif b/modules/board/skins/cozy_simple_list/images/common/iconTag.gif
deleted file mode 100644
index ecfdb5585..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/iconTag.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/icon_arrow_reply.gif b/modules/board/skins/cozy_simple_list/images/common/icon_arrow_reply.gif
deleted file mode 100644
index bbabbd7ea..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/icon_arrow_reply.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/icon_gofirst.gif b/modules/board/skins/cozy_simple_list/images/common/icon_gofirst.gif
deleted file mode 100644
index 68ba6ef96..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/icon_gofirst.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/icon_golast.gif b/modules/board/skins/cozy_simple_list/images/common/icon_golast.gif
deleted file mode 100644
index f2450047d..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/icon_golast.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/icon_notice.gif b/modules/board/skins/cozy_simple_list/images/common/icon_notice.gif
deleted file mode 100644
index d9fb255f3..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/icon_notice.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/txt_date.gif b/modules/board/skins/cozy_simple_list/images/common/txt_date.gif
deleted file mode 100644
index 524d2d782..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/txt_date.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/txt_hit.gif b/modules/board/skins/cozy_simple_list/images/common/txt_hit.gif
deleted file mode 100644
index cc9771319..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/txt_hit.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/txt_hot.gif b/modules/board/skins/cozy_simple_list/images/common/txt_hot.gif
deleted file mode 100644
index 34e12c1ee..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/txt_hot.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/txt_name.gif b/modules/board/skins/cozy_simple_list/images/common/txt_name.gif
deleted file mode 100644
index 789dba359..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/txt_name.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/txt_option.gif b/modules/board/skins/cozy_simple_list/images/common/txt_option.gif
deleted file mode 100644
index 9cb5202b7..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/txt_option.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/common/txt_title.gif b/modules/board/skins/cozy_simple_list/images/common/txt_title.gif
deleted file mode 100644
index 34125f7a7..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/common/txt_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/green/bg_title.gif b/modules/board/skins/cozy_simple_list/images/green/bg_title.gif
deleted file mode 100644
index 9223e8058..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/green/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/green/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_list/images/green/bg_title_norepeat.gif
deleted file mode 100644
index 57aa0ebea..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/green/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/green/bg_top_title.gif b/modules/board/skins/cozy_simple_list/images/green/bg_top_title.gif
deleted file mode 100644
index 95cfa0245..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/green/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/pink/bg_title.gif b/modules/board/skins/cozy_simple_list/images/pink/bg_title.gif
deleted file mode 100644
index 4c587d473..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/pink/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/pink/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_list/images/pink/bg_title_norepeat.gif
deleted file mode 100644
index 80a473e84..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/pink/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/pink/bg_top_title.gif b/modules/board/skins/cozy_simple_list/images/pink/bg_top_title.gif
deleted file mode 100644
index d218b2a9e..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/pink/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/red/bg_title.gif b/modules/board/skins/cozy_simple_list/images/red/bg_title.gif
deleted file mode 100644
index f693fc693..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/red/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/red/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_list/images/red/bg_title_norepeat.gif
deleted file mode 100644
index f1b2417f5..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/red/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/images/red/bg_top_title.gif b/modules/board/skins/cozy_simple_list/images/red/bg_top_title.gif
deleted file mode 100644
index c4ae66243..000000000
Binary files a/modules/board/skins/cozy_simple_list/images/red/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/input_password_form.html b/modules/board/skins/cozy_simple_list/input_password_form.html
deleted file mode 100644
index 985f1ffd5..000000000
--- a/modules/board/skins/cozy_simple_list/input_password_form.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/js/board.js b/modules/board/skins/cozy_simple_list/js/board.js
deleted file mode 100644
index 494a561ab..000000000
--- a/modules/board/skins/cozy_simple_list/js/board.js
+++ /dev/null
@@ -1,137 +0,0 @@
-/**
- * @file modules/board/js/board.js
- * @author zero (zero@nzeo.com)
- * @brief board 모듈의 javascript
- **/
-
-/* 관리자가 카트 선택시 세션에 넣음 */
-function doAddCart(mid, obj) {
- var srl = obj.value;
- var check_flag = obj.checked?'add':'remove';
-
- var params = new Array();
- params["mid"] = mid;
- params["srl"] = srl;
- params["check_flag"] = check_flag;
-
- exec_xml("board","procBoardAdminAddCart", params, null);
-}
-
-/* 글쓰기 작성후 */
-function completeDocumentInserted(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var category_srl = ret_obj['category_srl'];
-
- alert(message);
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(category_srl) url = url.setQuery('category',category_srl);
- location.href = url;
-}
-
-/* 글 삭제 */
-function completeDeleteDocument(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('act','').setQuery('document_srl','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 검색 실행 */
-function completeSearch(fo_obj, params) {
- fo_obj.submit();
-}
-
-/* 추천, 추천은 별도의 폼입력이 필요 없어 직접 필터 사용 */
-function doVote() {
- var fo_obj = document.getElementById('fo_document_info');
- procFilter(fo_obj, vote);
-}
-
-function completeVote(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- alert(message);
- location.href = location.href;
-}
-
-// 현재 페이지 reload
-function completeReload(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
-
- location.href = location.href;
-}
-
-/* 댓글 글쓰기 작성후 */
-function completeInsertComment(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var comment_srl = ret_obj['comment_srl'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(comment_srl) url += "#comment_"+comment_srl;
-
- alert(message);
-
- location.href = url;
-}
-
-/* 댓글 삭제 */
-function completeDeleteComment(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 트랙백 삭제 */
-function completeDeleteTrackback(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 카테고리 이동 */
-function doChangeCategory() {
- var sel_obj = xGetElementById("board_category");
- var sel_idx = sel_obj.selectedIndex;
- var category_srl = sel_obj.options[sel_idx].value;
- location.href = current_url.setQuery('category',category_srl);
-}
-
-/* 스크랩 */
-function doScrap(document_srl) {
- var params = new Array();
- params["document_srl"] = document_srl;
- exec_xml("member","procMemberScrapDocument", params, null);
-}
diff --git a/modules/board/skins/cozy_simple_list/list.html b/modules/board/skins/cozy_simple_list/list.html
deleted file mode 100644
index 1e7d691be..000000000
--- a/modules/board/skins/cozy_simple_list/list.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {@ $order_icon = "buttonDescending.gif" }
- {@ $order_type = "asc"; }
-
- {@ $order_icon = "buttonAscending.gif" }
- {@ $order_type = "desc"; }
-
-
-
-
-
-
-
-

-
-
-
{$page_no}
-
-
{$page_no}
-
-
-

-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/message.html b/modules/board/skins/cozy_simple_list/message.html
deleted file mode 100644
index 00bf01814..000000000
--- a/modules/board/skins/cozy_simple_list/message.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- {$message}
-
-
-
- {$lang->cmd_login}
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/screenshot/blue.gif b/modules/board/skins/cozy_simple_list/screenshot/blue.gif
deleted file mode 100644
index 9748eb1df..000000000
Binary files a/modules/board/skins/cozy_simple_list/screenshot/blue.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/screenshot/bluish_green.gif b/modules/board/skins/cozy_simple_list/screenshot/bluish_green.gif
deleted file mode 100644
index 797ad039d..000000000
Binary files a/modules/board/skins/cozy_simple_list/screenshot/bluish_green.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/screenshot/green.gif b/modules/board/skins/cozy_simple_list/screenshot/green.gif
deleted file mode 100644
index d82e8e629..000000000
Binary files a/modules/board/skins/cozy_simple_list/screenshot/green.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/screenshot/pink.gif b/modules/board/skins/cozy_simple_list/screenshot/pink.gif
deleted file mode 100644
index e1ad8580a..000000000
Binary files a/modules/board/skins/cozy_simple_list/screenshot/pink.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/screenshot/red.gif b/modules/board/skins/cozy_simple_list/screenshot/red.gif
deleted file mode 100644
index cefacbff1..000000000
Binary files a/modules/board/skins/cozy_simple_list/screenshot/red.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_list/skin.xml b/modules/board/skins/cozy_simple_list/skin.xml
deleted file mode 100644
index 6d1fffadb..000000000
--- a/modules/board/skins/cozy_simple_list/skin.xml
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
- cozy simple (목록형)
- Cozyシンプル(リストスタイル)
- cozy simple skin (list style)
- Cozy样式皮肤(目录型)
-
- (주)NHN
- (株)NHN
- (株)NHN
- NHN Corp
-
- cozy simple 스킨의 목록형입니다.
- 디자인 : 서기정 (http://blog.naver.com/addcozy)
- HTML/CSS : 소지훈
-
-
- Cozyシンプルスキンのリストスタイルです。
- 디자인 : 서기정 (http://blog.naver.com/addcozy)
- HTML/CSS : 소지훈
-
-
- This is list style board of cozy simple skin.
- Design : Ki-Jeong Seo (http://blog.naver.com/addcozy)
- HTML/CSS : Ji-Hun So
-
-
- Cozy样式皮肤。(目录型)
- 设计 : Ki-Jeong Seo (http://blog.naver.com/addcozy)
- HTML/CSS : Ji-Hun So
-
-
-
-
- 빨간색(기본)
- 赤
- Red (default)
- 红色(默认)
-
-
- 녹색
- 緑
- Green
- 绿色
-
-
- 파란색
- 青
- Blue
- 蓝色
-
-
- 분홍색
- ピンク
- Pink
- 粉红色
-
-
- 청록색
- 青緑
- Cyan
- 青绿色
-
-
-
-
- 정렬 대상
- ソート対象
- 排序对象
- Align Target
- select
- 등록된 순서 또는 변경된 순서로 정렬을 할 수 있습니다.
- 登録された順、変更された順でソートできます。
- 可对主题按发表顺或最后更新顺进行排序。
- It can align articles as registered order or modified order.
- newest
- updated
-
-
- 게시판 제목
- 掲示板タイトル
- 版面标题
- Title of Board
- 게시판의 제목을 적어주세요.
- 掲示板タイトルを入力してください。
- 请输入版面标题。(留空为不显示)
- Please input the title of board.
-
-
- 제목 글자수
- タイトルの文字数
- 标题字数
- Length of Subject
- 제목 글자수를 지정할 수 있습니다. (0또는 비워주시면 자르지 않습니다)
- タイトルの文字数が指定できます(「0」または空欄の場合は、文字数を制限しません)。
- 可以指定标题字数。(0或留空为不限)
- You may set length of title. (0 or blank value will not restrict the length)
-
-
- 번호 표시
- 番号表示
- 显示编号
- Display Number
- Y
- N
-
-
-
- 글쓴이 표시
- 投稿者表示
- 显示昵称
- Display Author
- Y
- N
-
-
-
- 작성일 표시
- 作成日表示
- 显示发表日期
- Display Registered Date
- Y
- N
-
-
-
- 조회수 표시
- 照合数表示
- 显示查看数
- Display Hit
- Y
- N
-
-
-
- 추천수 표시
- 推薦数表示
- 显示推荐数
- Display Votes
- Y
- N
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/trackback.html b/modules/board/skins/cozy_simple_list/trackback.html
deleted file mode 100644
index 29b00b1d1..000000000
--- a/modules/board/skins/cozy_simple_list/trackback.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/view_document.html b/modules/board/skins/cozy_simple_list/view_document.html
deleted file mode 100644
index 90b7060d6..000000000
--- a/modules/board/skins/cozy_simple_list/view_document.html
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- - {$lang->document_url} : {$oDocument->getPermanentUrl()}
-
- - {$lang->trackback_url} : {$oDocument->getTrackbackUrl()}
-
-
-
-
-
{$oDocument->getNickName()}
-
-
{$oDocument->get('ipaddress')}
-
-
-
-
-
-
-
-
-
{$oDocument->getContent()}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_list/write_form.html b/modules/board/skins/cozy_simple_list/write_form.html
deleted file mode 100644
index 016412f57..000000000
--- a/modules/board/skins/cozy_simple_list/write_form.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/comment.html b/modules/board/skins/cozy_simple_webzine/comment.html
deleted file mode 100644
index d92cb2cfb..000000000
--- a/modules/board/skins/cozy_simple_webzine/comment.html
+++ /dev/null
@@ -1,62 +0,0 @@
-
diff --git a/modules/board/skins/cozy_simple_webzine/comment_form.html b/modules/board/skins/cozy_simple_webzine/comment_form.html
deleted file mode 100644
index 0e2048ede..000000000
--- a/modules/board/skins/cozy_simple_webzine/comment_form.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/css/blue.css b/modules/board/skins/cozy_simple_webzine/css/blue.css
deleted file mode 100644
index 085c6985c..000000000
--- a/modules/board/skins/cozy_simple_webzine/css/blue.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#1187d8 url(../images/blue/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #1187d8; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/blue/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#007ed5; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#007ed5; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#007ed5; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #1187d8;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #1187d8; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#007ed5;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/blue/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/blue/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_webzine/css/bluish_green.css b/modules/board/skins/cozy_simple_webzine/css/bluish_green.css
deleted file mode 100644
index 9c221ce62..000000000
--- a/modules/board/skins/cozy_simple_webzine/css/bluish_green.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#9ab09f url(../images/bluish_green/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #9ab09f; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/bluish_green/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#9ab09f; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#9ab09f; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#9ab09f; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #9ab09f;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #9ab09f; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#9ab09f;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/bluish_green/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/bluish_green/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_webzine/css/common.css b/modules/board/skins/cozy_simple_webzine/css/common.css
deleted file mode 100644
index d0256f332..000000000
--- a/modules/board/skins/cozy_simple_webzine/css/common.css
+++ /dev/null
@@ -1,540 +0,0 @@
-@charset "utf-8";
-/*
-NHN UIT Lab. WebStandardization Team (http://html.nhndesign.com/)
-Jeong, Chan Myeong 070601~070630
-*/
-
-/* ----- List+Read+Write+Modify | Start ----- */
-.boardHeader h3 { float:left; clear:both; padding:1.9em 1.5em 1.8em 1.5em; font-size:1.2em; color:#FFFFFF;}
-
-/* boardInformation */
-.boardInformation { width:100%; clear:both; margin:0 0 .5em 0; background:#EFEFEF; color:#8D8D8D; overflow:hidden;}
-.articleNum { float:left; padding:.5em 0 .5em 2.3em; font:.8em Tahoma;}
-.articleNum strong { margin:0 0 0 .5em; padding:0 0 0 .7em; font:bold .9em Tahoma; color:#6F6F6F; background:url(../images/common/bar_1x8_c0c0c0.gif) no-repeat left .1em;}
-.accountNavigation { float:right; margin:.3em .5em 0 0; overflow:hidden;}
-.accountNavigation li { list-style:none; float:left; margin:0 0 0 -.1em; padding:.1em .8em 0 .8em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left .3em;}
-.accountNavigation li a {}
-
-/* boardList */
-.boardList tr:first-child td, .boardList tr.first-child td {}
-.boardList tr.notice {}
-.boardList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
-
-.boardList th a { color:#3e3f3e;}
-.boardList th span.on { font-weight:bold;}
-.boardList th.num { background-position:-3px bottom; padding:0;}
-.boardList th select { height:20px; }
-.boardList th.category { padding:0 .2em 0 .5em;}
-.boardList th.category.thumbStyle { background-position:-3px bottom !important; border-left:1px solid #ffffff; text-align:left;}
-.boardList th:first-child { background-position:-2px bottom;}
-.boardList th.first-child { background-position:-2px bottom;}
-.boardList th.author {}
-.boardList th.title {}
-.boardList th.reading { white-space:nowrap;}
-.boardList th.recommend { white-space:nowrap;}
-.boardList th.reply { white-space:nowrap;}
-.boardList th.date {}
-.boardList th.check { padding:0;}
-.boardList th.user {}
-.boardList th.registDate {}
-.boardList th.checkDate {}
-.boardList th.friendGroup {}
-.boardList th.userId {}
-.boardList th.userName {}
-.boardList th.userNick {}
-.boardList th.sendMessage {}
-.boardList th.last-child { border-right:1px solid #ffffff;}
-.boardList th .sort { padding:0 .2em; vertical-align:middle;}
-.boardList th select,
-.boardList th input { vertical-align:middle;}
-
-.boardList td { padding:.3em; border-bottom:1px solid #e4e4e2;}
-.boardList td.noline { border-bottom:none;}
-.boardList td.num { font:.8em Tahoma; color:#999999; padding:.5em .5em .5em 1.5em;}
-.boardList td.category {}
-.boardList tr.notice td { padding:.3em; white-space:nowrap;}
-.boardList tr.notice td img { margin:-.1em .3em 0 0;}
-.boardList td.thumb { padding:.5em 0 .5em .5em; width:130px; table-layout:fixed; white-space:nowrap;}
-.boardList td.thumb * { vertical-align:middle;}
-.boardList td.title.bold { font-size:1em; font-weight:bold;}
-.boardList td.title.bold a { position:relative; top:.3em;}
-.boardList td.title * { vertical-align:middle;}
-.boardList td.title,
-.boardList td.title a { color:#444444; text-decoration:none; }
-.boardList td.title a:visited { color:#777777;}
-.boardList td.title .title_wrap { width:100%; overflow:hidden; white-space:nowrap;}
-.boardList td.author { padding:0 .5em 0 1.3em; color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
-.boardList td.author a { font-size:1em; color:#333333;}
-.boardList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
-.boardList td.reply { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
-.boardList td.date { font:.8em Tahoma; color:#999999; text-align:center;}
-.boardList td.registDate { font:.8em Tahoma; color:#999999; text-align:center;}
-.boardList td.checkDate { font:.8em Tahoma; color:#333333; text-align:center;}
-.boardList td.summary { border-top:none; vertical-align:top; color:#666666; line-height:1.25em;padding:5px 5px 10px 5px;}
-.boardList td.summary a { color:#666666; text-decoration:none; line-height:inherit;}
-.boardList td.summary a:visited { color:#999999;}
-.boardList td.check { text-align:center;}
-.boardList td.user { color:#333333; font-size:.9em;}
-.boardList td.user a { color:#333333;}
-.boardList td.userId { font:.9em Tahoma;}
-.boardList td.userName {}
-.boardList td.userNick { font-size:.9em; color:#999999;}
-.boardList td.friendGroup {}
-.boardList td.sendMessage { text-align:center; padding:0;}
-.boardList td.sendMessage .buttonFixedLeft { position:relative; left:20%; _left:0;}
-*:first-child+html .boardList td.sendMessage .buttonFixedLeft { left:0;}
-.boardList td input { _margin:-3px;}
-.boardList td.title.bold .replyAndTrackback { font:.6em Tahoma; color:#ff6600; cursor:default; position:relative; top:.3em;}
-.boardList td .replyAndTrackback strong { font:bold 1em Tahoma;}
-
-.boardList td .thumbnailSmall { margin:0 .3em 0 .3em;}
-.boardList td .thumbnailSmall img {}
-.boardList td .thumbnailMedium { margin:0 .3em 0 .3em;}
-.boardList td .thumbnailMedium img {}
-
-.boardList.thumbnail {}
-.boardList.thumbnail td { border-top:none; border-bottom:1px solid #eff0ed; padding:1.5em 0 0 1.5em; overflow:hidden;}
-.boardList.thumbnail div.cell { float:left; width:131px; margin:0 1.6em 0 0; padding-bottom:1.5em;}
-.boardList.thumbnail div.cell .fix_img { width:131px; height:106px; overflow:hidden;}
-.boardList.thumbnail div.title { color:#444444; margin:.5em 0 .2em 0;}
-.boardList.thumbnail div.title a { color:#444444;}
-.boardList.thumbnail div.nameAndDate { font-size:.9em; color:#999999; margin-bottom:.2em; padding-left:3px;}
-.boardList.thumbnail div.nameAndDate a { color:#999999;}
-.boardList.thumbnail div.nameAndDate .date { font:.8em Tahoma; color:#999999;}
-.boardList.thumbnail div.readAndRecommend { font-size:.9em; color:#666666; padding-left:3px;}
-.boardList.thumbnail div.readAndRecommend .num { font:.8em Tahoma;}
-.boardList.thumbnail div.readAndRecommend .vr { color:#dddddd;}
-.boardList.thumbnail div.readAndRecommend strong.num { font:bold .8em Tahoma; color:#494949;}
-
-/* boardSearch */
-.boardSearch { clear:both; text-align:center; margin-top:3em;}
-.boardSearch fieldset { display:inline; padding:10px 15px 10px 15px; border:none; background:#F4F4F4; overflow:hidden; }
-.boardSearch fieldset legend { overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.boardSearch * { vertical-align:middle;}
-.boardSearch select { float:left;}
-.boardSearch input { float:left; margin:0 .3em; background:#fbfbfb;}
-.searchButton ul { overflow:hidden;}
-.searchButton li { float:left; margin-right:.3em; list-style:none;}
-
-.buttonTypeGo { border:none; cursor:pointer; width:24px; height:20px; background:url(../images/common/buttonTypeInput24.gif) no-repeat; font:.75em Tahoma; text-align:center;}
-
-
-/* pageNavigation */
-.pageNavigation { float:left; display:block; margin:2.2em 0 2em 1.1em; font:bold .8em Tahoma; }
-.pageNavigation a, .pageNavigation a:visited, .pageNavigation a:active { margin-left:-4px; font:bold .8em Tahoma; color:#676767; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-.pageNavigation a:hover { text-decoration:none; }
-.pageNavigation a.goToFirst,
-.pageNavigation a.goToLast { border:none; border-right:1px solid #ffffff; border-left:1px solid #ffffff; z-index:99; padding:1px 5px 3px 4px;}
-.pageNavigation a.goToFirst img,
-.pageNavigation a.goToLast img { vertical-align:middle;}
-
-.buttonBox { float:right; margin:1.2em 0 0 0; }
-
-/* boardRead */
-#blog .boardRead { position:relative; margin:0; _overflow:hidden;}
-.boardRead .originalContent { padding:2em 0 2em 0;}
-.boardRead .titleAndCategory { float:left;}
-.boardRead .titleAndCategory h4 { font-size:1.4em; display:inline; padding-left:.2em;}
-.boardRead .titleAndCategory .vr { font-size:.9em; margin:0 .3em; color:#c5c7c0;}
-.boardRead .titleAndCategory .category { font-size:.9em; color:#999999; white-space:nowrap;}
-
-.boardRead .dateAndModify { font-size:.8em; float:right; white-space:nowrap;}
-.boardRead .dateAndModify .date { font-size:.8em; font-family:Tahoma; color:#999999; margin-right:.5em; float:left; position:relative; top:.1em;}
-.boardRead .dateAndModify .date strong { font-size:1em; font-family:Tahoma;}
-.boardRead .dateAndModify ul { display:inline; margin:0 .4em 0 0;}
-.boardRead .dateAndModify ul li { float:left; margin-left:.3em; list-style:none;}
-.boardRead dl.uri { float:right; overflow:hidden; margin:0 0 3em .3em;}
-.boardRead dl.uri dt { float:left; clear:left; font-size:.9em; margin-right:.3em; color:#999999;}
-.boardRead dl.uri dd { clear:right; font-size:.8em; color:#d4d5d0;}
-.boardRead dl.uri dd span { font-family:Tahoma; color:#d4d5d0;}
-.boardRead .readBody { padding:0 .3em; color:#555555; overflow:hidden; margin-bottom:2em;}
-.boardRead .readBody p { margin:1em 0; line-height:1.5em;}
-.boardRead .contentBody { width:100%; overflow:hidden; }
-
-.boardRead .userInfo { float:left; white-space:nowrap;}
-.boardRead .userInfo .author { padding:0 .3em 0 0; color:#3074a5; margin-right:.3em;}
-.boardRead .userInfo .ipaddress { font-size:.9em; font-family:Tahoma; color:#888888; margin-right:.5em; }
-
-/* extraVars list */
-.extraVarsList { width:100%; border:1px solid #e0e1db; clear:both; margin-bottom:1em;}
-.extraVarsList tr.notice { background:#f8f8f8;}
-.extraVarsList tr.notice .num { font-size:.9em; font-weight:bold;}
-.extraVarsList tr.bg1 { background:#ffffff}
-.extraVarsList tr.bg2 { background:#fbfbfb;}
-.extraVarsList th { color:#3e3f3e; font-weight:bold; padding:.8em .5em .5em .5em; border-bottom:1px solid #eff0ed; border-right:1px solid #eff0ed;}
-.extraVarsList td { border-bottom:1px solid #eff0ed; padding:.5em .5em .5em 1em;}
-
-.boardRead .readFooter { border-top:1px solid #dfe0db; }
-.boardRead .readFooter .tag { margin-bottom:1em; padding:1em 0 0 0; }
-.boardRead .readFooter .tag h5 { display:inline; font-size:1em; margin:0 .3em 0 1.8em;}
-.boardRead .readFooter .tag ul,
-.boardRead .readFooter .tag li { display:inline;}
-.boardRead .readFooter .tag a { color:#444444; text-decoration:none;}
-.boardRead .readFooter .tag .tagIcon { vertical-align:middle;}
-.boardRead .readFooter .fileAttached { padding:1em 1em .8em 0; position:relative; _width:100%; border-bottom:1px solid #dfdfdd; overflow:hidden; background:#f9f9f9;}
-.boardRead .readFooter .fileAttached h5 {}
-.boardRead .readFooter .fileAttached ul { margin-left:1.8em;}
-.boardRead .readFooter .fileAttached li { float:left; margin-right:.75em; line-height:1.6em; color:#888888; white-space:nowrap; list-style:none;}
-.boardRead .readFooter .fileAttached li a { font-size:.9em; padding:.1em 0 .1em .2em; white-space:nowrap; position:relative; color:#888888; text-decoration:none; }
-.boardRead .readFooter .fileAttached li a:visited { color:#777777;}
-
-.listButton li { list-style:none; clear:both; text-align:right; margin-top:.5em; }
-
-.boardRead .replyAndTrackback { float:left; width:100%; background:url(../images/common/bg_repeat_x_eaeaea.gif) repeat-x left bottom; overflow:hidden;}
-.boardRead .replyAndTrackback li { float:left; font-weight:bold; margin:.3em 0 0 0; padding:.7em 1.1em .7em 1.2em; color:#FFFFFF; background:#B8B8B8; list-style:none;}
-.boardRead .replyAndTrackback li a { color:#FFFFFF; text-decoration:none; }
-.boardRead .replyAndTrackback li strong { padding:0 1.1em 0 0; background:#B8B8B8 url(../images/common/icon_close.gif) no-repeat right .2em;}
-.boardRead .replyAndTrackback li.selected a { color:#666666;}
-.boardRead .replyAndTrackback li.selected strong { padding:0 1.1em 0 0; background:#FFFFFF url(../images/common/icon_open.gif) no-repeat right .2em;}
-.boardRead .replyAndTrackback a#toggleReply { background:url(../images/common/buttonToggleReply.gif) no-repeat right top;}
-.boardRead .replyAndTrackback a#toggleTrackback { background:url(../images/common/buttonToggleReply.gif) no-repeat right -13px;}
-
-.boardRead #reply,
-.boardRead #trackback { color:#666666; border-left:1px solid #EAEAEA; border-right:1px solid #EAEAEA; border-bottom:1px solid #EAEAEA; padding-top:1em;}
-.boardRead #reply { }
-.boardRead #trackback { display:none;}
-
-.boardRead .topBorder { border-top:1px solid #EAEAEA; }
-
-.boardRead #reply .contentBox,
-.boardRead #trackback .contentBox { line-height:1.25em; color:#676767; clear:both; padding:1em; overflow:hidden;}
-.boardRead #reply .top_border,
-.boardRead #trackback .top_border { border-top:1px dashed #d8d8d8; }
-
-.boardRead .contentBox .content { width:100%; overflow:hidden; clear:both; margin-bottom:1em; }
-.boardRead .contentBox .author { float:left; overflow:hidden; color:#3173a3;}
-.boardRead .contentBox .date { float:right; font:.8em Tahoma; color:#cccccc; margin-left:.5em; }
-.boardRead .contentBox .replyOption { float:right; display:inline; white-space:nowrap; margin-left:.5em; }
-.boardRead .contentBox .replyOption img { vertical-align:middle;}
-
-.boardRead .contentBox .fileAttached { position:relative; _width:100%; overflow:hidden; clear:both; }
-.boardRead .contentBox .fileAttached h5 {}
-.boardRead .contentBox .fileAttached ul { margin-bottom:.5em;}
-.boardRead .contentBox .fileAttached li { float:left; margin-right:.75em; line-height:1.6em; color:#888888; white-space:nowrap; list-style:none;}
-.boardRead .contentBox .fileAttached li a { font-size:.9em; padding:.1em 0 .1em .2em; white-space:nowrap; position:relative; color:#888888; text-decoration:none; }
-.boardRead .contentBox .fileAttached li a:visited { color:#777777;}
-
-.boardRead .contentBox .title a { color:#676767 ; margin-right:.3em; text-decoration:none;}
-.boardRead .contentBox address a { font-size:.9em; color:#3173a3; margin-right:.3em; text-decoration:none; }
-.boardRead .contentBox address .trackback_date { font:.8em Tahoma; color:#cccccc; margin-left:.5em; }
-.boardRead .indent_box { background-color:#FBFBFB; }
-.boardRead .contentBox .indent {padding-left:1.5em; background:url(../images/common/icon_arrow_reply.gif) no-repeat left .1em;}
-
-/* boardEditor */
-.boardEditor { padding:.5em 0 1em 0; width:100%; overflow:hidden;}
-.boardEditor.reply { padding:.5em 1em 1em 1em; width:auto; overflow:hidden;}
-.boardEditor legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em;}
-.boardEditor fieldset { _width:100%; border:0px solid #eaeae7; border-top:none;}
-.boardEditor .userNameAndPw { position:relative; background:#fbfbfb; border-top:1px solid #eaeae7; border-bottom:1px solid #e1e1e1; padding:.5em 1em; white-space:nowrap;}
-.boardEditor .userNameAndPw * { vertical-align:middle;}
-.boardEditor .userNameAndPw label { margin-right:.2em; color:#666760;}
-.boardEditor .userNameAndPw input { color:#aaaaaa;}
-.boardEditor .userNameAndPw .userName { width:6em; margin-right:.8em;}
-.boardEditor .userNameAndPw .userPw { width:5em;}
-.boardEditor .userNameAndPw .emailAddress { width:6em;}
-.boardEditor .userNameAndPw .homePage { width:6em;}
-.boardEditor .userNameAndPw .checkSecret { position:absolute; right:2em; top:.7em;}
-
-/* boardWrite */
-.boardWrite { width:100%; position:relative;}
-.boardWrite .userNameAndPw { margin-bottom:-1px;}
-
-.boardWrite div.title label.title { display:block; float:left; font-weight:bold; padding:.4em 0 0 1.5em; width:9.5em; white-space:nowrap;}
-.boardWrite div.title input#title { width:60%;}
-
-.boardWrite .option dt { display:block; float:left; font-weight:bold; padding:.3em 0 0 1.5em; width:9.5em; white-space:nowrap;}
-.boardWrite .option dd { float:left; margin-right:1em; padding-top:.2em; _padding-top:.1em;}
-.boardWrite .option dd * { vertical-align:middle;}
-.boardWrite .inputTypeText { background:#fbfbfb;}
-.boardWrite .trackbackURI { clear:both; border-top:1px solid #eff0ed; padding:4px 0 .8em 0;}
-.boardWrite .trackbackURI label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.boardWrite .trackbackURI .inputTypeText { width:50%;}
-.boardWrite .tag { clear:both; border-top:1px solid #eff0ed; padding:.8em 0;}
-.boardWrite .tag label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.boardWrite .tag .inputTypeText { width:50%;}
-.boardWrite .tag .help { vertical-align:middle;}
-.boardWrite .tag .info { padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
-.boardWrite .extra_vars { clear:both; border-top:1px solid #eff0ed; padding:.8em 0;}
-.boardWrite .extra_vars label { display:block; float:left; color:#333333; font-weight:bold; padding:.4em 0 0 1.5em; width:11em;}
-.boardWrite .extra_vars .info { clear:both; padding:.5em 0 0 .6em; margin-left:14em; font-size:.9em; color:#999999; background:url(../images/common/iconArrowD8.gif) no-repeat left center;}
-.boardWrite .extra_vars ul li { float:left; margin-right:1em; }
-
-/* ----- List+Read+Write+Modify | End ----- */
-
-/* ----- Blog | Start ----- */
-#blog #bodyWrap #login_menu { padding:0 1.2em;}
-#blog #bodyWrap #login_menu .member { float:right}
-#blog #bodyWrap #login_menu .member li {display:inline; margin:0 0 0 -.1em; padding:0 .6em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left center;}
-#blog #bodyWrap #login_menu .login {float:right}
-
-
-/* Blog header Child*/
-#blog #header h1 { font:bold 1.3em 돋움; margin:2em 0 .4em 30px; letter-spacing:-.05em; }
-#blog #header h1 a { color:#FFFFFF;}
-#blog #header #tagLine { padding:0 0 0 30px; color:#f6c8c8;}
-#blog #header #globalNavigation { width:100%; margin:2.4em 0 0 0; padding:.8em 0 .8em 53.5em; background:#e4e4e4; overflow:hidden;}
-#blog #header #globalNavigation li { float:left; margin-left:-1px; background:url(../images/common/bar_1x10_c0c0c0.gif) no-repeat left bottom;}
-#blog #header #globalNavigation li.no_bg { background:none;}
-#blog #header #globalNavigation li a { display:block; float:left; padding:0 1.2em; font:bold .8em Tahoma; color:#54564b; white-space:nowrap;}
-#blog #header #globalNavigation li.on a { color:#ee2126;}
-
-/* Column Left & Right Common Child */
-.boxTypeA { position:relative; border:5px solid #F2F2F2; margin-bottom:.7em;}
-.boxTypeB { position:relative; margin-bottom:.7em;}
-.boxTypeB h2 { position:relative; padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; font-size:1em; color:#ef2121; font-family:Tahoma;}
-*:first-child+html .boxTypeB h2 { height:20px; color:#ef2121;}
-.boxTypeB .toggleMask {position:absolute; top:8px; right:5px; cursor:pointer; width:13px; height:13px; overflow:hidden;}
-.boxTypeB .showHide { position:relative;}
-.boxTypeB .optionList { position:absolute; top:8px; right:0; overflow:hidden;}
-.boxTypeB .optionList li { float:left; padding:0 .5em; margin-left:-1px; background:url(../images/common/line_1x10_e0e0e0.gif) no-repeat left center;}
-.boxTypeB .optionList li a { color:#a4a4a4; font-size:.9em;}
-.boxTypeB .optionList li.on a { color:#000000;}
-.boxTypeB .showAll { color:#737373; font:bold .9em tahoma; white-space:nowrap; display:inline-block; padding:.4em .8em; background:url(../images/common/bar_1x8_c0c0c0.gif) no-repeat right center;}
-.boxTypeB .showAll.no_bg { background:none;}
-
-/* Profile */
-#blog div#profile { padding:6px; overflow:hidden;}
-#blog div#profile img.profile { width:153px; display:block; margin-bottom:1.2em;}
-#blog div#profile dl#hello {}
-#blog div#profile dl#hello dt { color:#333333; margin-bottom:.5em;}
-#blog div#profile dl#hello dt a { color:#333333;}
-#blog div#profile dl#hello dd { color:#777777; margin-bottom:1em;}
-#blog div#profile ul#admin { overflow:hidden; height:1.2em;}
-#blog div#profile ul#admin li { float:left; padding:0 .4em; font:.8em tahoma;}
-#blog div#profile ul#admin li a { display:block;}
-#blog div#profile ul#admin li.write a {}
-#blog div#profile ul#admin li.setup { border-left:1px solid #e3e3e3;}
-#blog div#profile ul#admin li.setup a {}
-#blog div#profile ul#admin li a { color:#666666;}
-
-/* Category */
-#blog div#category {}
-#blog div#category #categoryList { padding:1em .8em .5em .8em;}
-#blog div#category #categoryList li { position:relative; padding:0 0 0 15px; background:url(../images/common/iconFolderClose.gif) no-repeat 2px top;}
-#blog div#category #categoryList li li {}
-#blog div#category #categoryList li li li { background:url(../images/common/iconList.gif) no-repeat 5px top;}
-#blog div#category #categoryList a { display:block; _display:inline-block; color:#6b6b6b; margin:0 0 6px 5px;}
-
-/* Search Box */
-#blog div#searchBox { margin-bottom:.7em; padding:.6em; background:#f5f5f5; overflow:hidden;}
-#blog div#searchBox fieldset { border:none;}
-#blog div#searchBox fieldset legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-
-/* Tags */
-#blog div#tag { padding-bottom:1em;}
-#blog div#tag .tagList { padding:1.2em; overflow:hidden;}
-#blog div#tag .tagList li { display:inline; color:#a4a4a4; margin-right:.1em; line-height:1.5em;}
-#blog div#tag .tagList li a { color:#a4a4a4;}
-#blog div#tag .tagList li.typeA a { color:#717171; font-weight:bold;}
-#blog div#tag .tagList li.typeB a { color:#3d3d3d;}
-#blog div#tag .tagList li.typeC a { font-weight:bold;}
-#blog div#tag .tag_sort { width:100%; border-top:1px dashed #ababab; border-bottom:1px dashed #ababab; text-align:center; overflow:hidden;}
-
-/* Neighbor */
-#blog div#neighbor {}
-#blog div#neighbor #neighborList { padding:1.2em 1.2em 0 1.2em;}
-#blog div#neighbor #neighborList li { padding:0 0 .7em 1.2em; background:url(../images/common/iconPlus2.gif) no-repeat left top;}
-#blog div#neighbor #neighborList li img { padding-left:.3em; top:.1em;}
-#blog div#neighbor #neighborList li a { display:inline-block; color:#6b6b6b; font-weight:bold;}
-#blog div#neighbor #neighborList li ul { display:none; padding:.7em 0 0 0;}
-#blog div#neighbor #neighborList li ul li { padding:0 0 .6em .6em; margin-left:-.6em; background:url(../images/common/iconLineBD.gif) no-repeat left 5px;}
-#blog div#neighbor #neighborList li ul li a{ font-weight:normal;}
-
-/* Calendar */
-#blog div#calendar {}
-#blog div#calendar table { width:100%; background:url(../images/common/bg_line_dot_x.gif) repeat-x left top;}
-#blog div#calendar table caption { font:bold 1em 돋움; color:#ec1a25; padding:1em;}
-#blog div#calendar table caption .mm { font:bold 1em 돋움; color:#555650;}
-#blog div#calendar table caption a { padding:.2em;}
-#blog div#calendar table caption a img { vertical-align:middle;}
-#blog div#calendar table th { padding:.6em 0;}
-#blog div#calendar table td { padding:.25em 0;}
-#blog div#calendar table th { font:bold .7em tahoma; color:#717171;}
-#blog div#calendar table th.sun { color:#000000;}
-#blog div#calendar table td { text-align:center;}
-#blog div#calendar table td a { font:.7em Tahoma; color:#9a9a9a;}
-#blog div#calendar table td.sun { color:#000000;}
-#blog div#calendar table td.sun a { color:#000000;}
-#blog div#calendar table td.today a { font-weight:bold; color:#54564b;}
-#blog div#calendar table td.posted a { text-decoration:underline;}
-
-#blog .boardWrite div.title { border-top:2px solid #ed1b24;}
-#blog .write_post h3 {margin:1.5em 1em 1em 1em; font:bold 1.2em 돋움;}
-/* ----- Blog | End ----- */
-
-
-/* ----- Member | Start ----- */
-
-.memberHeader { position:relative; _width:100%; background:#ED2027 url(../images/common/bg_top_title.gif) no-repeat 23px -6px; overflow:hidden;}
-.memberHeader h3 { float:left; clear:both; padding:1.2em 0 1em 1.7em; font-size:1.1em; color:#FFFFFF;}
-.memberInformation { width:100%; clear:both; margin:0 0 .5em 0; background:#EFEFEF; color:#8D8D8D; overflow:hidden;}
-.memberInformation .friendNum { float:left; padding:.7em 0 .7em 2em; background:url(../images/common/iconFriend.gif) no-repeat .5em .4em;}
-.memberInformation .friendNum strong { font:bold 11px Tahoma; color:#ec2127;}
-.memberInformation .addGroup { float:right; margin:.8em 1em .7em 0;}
-.memberInformation .instantMessage { float:right; margin:.7em; overflow:hidden;}
-.memberInformation .instantMessage li { float:left; margin:0 0 0 -.1em; padding:0 .5em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left .25em;}
-.memberInformation .instantMessage li a {white-space:nowrap; color:#666666;}
-.memberInformation .instantMessage li.on a { background-position:left -14px; font-weight:bold;}
-.memberInformation .instantMessage li a strong { font:bold 0.75em tahoma; color:#ee202a;}
-
-/* 친구목록 */
-.memberList { width:100%; position:relative; border-bottom:2px solid #ED2A32; border-collapse:collapse;}
-
-.memberList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/common/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.memberList th.check { padding:0;}
-.memberList th.friendGroup { padding:0 0 0 .3em; text-align:left;}
-.memberList th select,
-.memberList th input { vertical-align:middle;}
-.memberList th.repeat_bg { background:#ffffff url(../images/common/bg_title_repeat_x.gif) repeat-x left bottom;}
-
-.memberList td { padding:.3em; border-bottom:1px solid #e4e4e2;}
-.memberList td.noline { border-bottom:none;}
-.memberList td.check { text-align:center;}
-.memberList td.friendGroup { }
-.memberList td.userId { text-align:center; font:.9em Tahoma;}
-.memberList td.userName { text-align:center;}
-.memberList td.userNick { text-align:center; color:#999999;}
-.memberList td.registDate { text-align:center; font:.8em Tahoma;}
-.memberList td.sendMessage { text-align:center;}
-
-
-.smallBox { margin:5em auto 1em auto;}
-.smallBox.w268 { width:268px;}
-.smallBox.w298 { width:298px;}
-.smallBox.w498 { width:498px;}
-.smallBox .header { position:relative; _width:100%; background:#ed2027; overflow:hidden;}
-.smallBox .header h3 { font-size:1.2em; color:#FFFFFF; padding:1em 2em .8em 1em;}
-.smallBox .login { position:relative; border:none; padding:2.4em 0 2em 2.3em;}
-.smallBox .login legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.smallBox .login dl { overflow:hidden; width:162px; float:left;}
-.smallBox .login dl dt { float:left; width:55px; color:#54564b; height:22px; padding-top:5px;}
-.smallBox .login dl dd { float:left; width:105px; height:27px;}
-.smallBox .login dl dd input { width:90px;}
-.smallBox .login .loginButton { display:block; float:left; margin-top:27px; _margin-top:28px;}
-*:first-child+html .smallBox .login .loginButton { margin-top:28px;}
-.smallBox .login .keep { float:left; clear:both; white-space:nowrap; position:relative; left:55px; _left:52px;}
-*:first-child+html .smallBox .login .keep { left:52px;}
-.smallBox .login .keep input { vertical-align:middle;}
-.smallBox .login .keep label { font-size:11px; color:#999999;}
-.smallBox .help { background:#F7F7F7; border-top:1px solid #ed2a32; border-bottom:2px solid #ee2b33; overflow:hidden; padding:1.1em; text-align:center; height:1em;}
-.smallBox .help li { display:inline; padding:0 .3em 0 .7em; background:url(../images/common/bar_1x7_c0c0c0.gif) no-repeat left center;}
-.smallBox .help li:first-child { background:none;}
-.smallBox .help li.first-child { _background:none;}
-.smallBox .help li a { font-size:11px; color:#54564b;}
-.smallBox .text { color:#54564b; text-align:center; padding:4.25em 2em 4.8em 2em;}
-.smallBox .text p { margin-bottom:.5em;}
-.smallBox .button img { vertical-align:top;}
-.smallBox.w268 .button ul { position:absolute; left:79px; }
-.smallBox.w298 .button ul { position:absolute; left:110px; }
-.smallBox.w498 .button ul { position:absolute; left:220px; }
-.smallBox .button ul li { float:left; margin-right:.3em;}
-.smallBox .complex { padding:1.5em 2em 2em 2em;}
-.smallBox .friend { width:100%;}
-.smallBox .friend th { width:7em; padding:.9em; border-bottom:1px solid #e4e5e0;}
-.smallBox .friend td { padding:.9em; border-bottom:1px solid #e4e5e0; background:url(../images/common/bar_1x18_e4e5e0.gif) no-repeat left bottom;}
-.smallBox .leftHeaderType { border-top:1px solid #e0e1db; border-left:1px solid #e0e1db; width:100%;}
-.smallBox .leftHeaderType th,
-.smallBox .leftHeaderType td { border-right:1px solid #e0e1db; border-bottom:1px solid #e0e1db; padding:.8em 1em .6em 1em;}
-.smallBox .leftHeaderType th { color:#333333; text-align:left; background:#f5f5f3;}
-.smallBox .leftHeaderType td { color:#444444;}
-.smallBox .inputTypeText { background:#fbfbfb;}
-.smallBox .group { overflow:hidden; padding:.5em 0; margin-top:.7em;}
-.smallBox .group select { float:left; width:180px; margin-top:1px;}
-.smallBox .pwModify { border:none;}
-.smallBox .pwModify legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
-.smallBox .pwModify input { width:9em;}
-.smallBox .pwModify br { display:block; margin-bottom:.2em}
-.smallBox .pwModify p { text-align:center; margin-top:1em; color:#54564b;}
-
-
-/* messageList */
-.messageList { width:100%; position:relative; border-bottom:2px solid #ed2a32; border-collapse:collapse;}
-.messageList tr.notice .num { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; font-weight:bold;}
-
-.messageList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/common/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.messageList th:first-child,
-.messageList th.first-child { background-position:-3px bottom;}
-.messageList th.author { background:url(../images/common/bg_title_repeat_x.gif) repeat-x left bottom; text-align:left;}
-.messageList th.check { padding:0;}
-.messageList th select,
-.messageList th input { vertical-align:middle;}
-
-.messageList td { padding:.3em; border-bottom:1px solid #EFEFEF;}
-.messageList td.noline { border-bottom:none;}
-.messageList td.category {}
-.messageList tr.notice td { padding:.7em .7em .7em .9em; white-space:nowrap;}
-.messageList tr.notice td img { margin:-.1em .3em 0 0;}
-.messageList td.thumb { padding:.5em 0 .5em .5em; width:145px; table-layout:fixed; white-space:nowrap;}
-.messageList td.thumb * { vertical-align:middle;}
-.messageList td.title {}
-.messageList td.title.bold { font-size:1em; font-weight:bold;}
-.messageList td.title.bold a { position:relative; top:.3em;}
-.messageList td.title * { vertical-align:middle;}
-.messageList td.title,
-.messageList td.title a { color:#444444;}
-.messageList td.title a:visited { color:#777777;}
-.messageList td.author { padding:0 .5em 0 1.3em; color:#333333; font:.95em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif;}
-.messageList td.author a { font-size:1em; color:#333333;}
-.messageList td.reading { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.recommend { font:bold .8em Tahoma; color:#ec2127; text-align:center;}
-.messageList td.reply { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
-.messageList td.date { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.registDate { font:.8em Tahoma; color:#999999; text-align:center;}
-.messageList td.checkDate { font:.8em Tahoma; color:#333333; text-align:center;}
-.messageList td.summary { border-top:none; vertical-align:top; color:#666666; line-height:1.25em;}
-.messageList td.summary a { color:#666666; text-decoration:none; line-height:inherit;}
-.messageList td.summary a:visited { color:#999999;}
-.messageList td.check { text-align:center;}
-.messageList td.user { color:#333333; font-size:.9em;}
-.messageList td.user a { color:#333333;}
-.messageList td.userId { font:.9em Tahoma;}
-.messageList td.userNick { font-size:.9em; color:#999999;}
-.messageList td.sendMessage { text-align:center; padding:0;}
-.messageList td.sendMessage .buttonFixedLeft { position:relative; left:20%; _left:0;}
-
-.readMessage { margin-bottom:2em;}
-.readMessage .messageHeader { padding:1.5em; height:1em; overflow:hidden;}
-.readMessage .messageHeader h4 { float:left; padding-left:.5em; font-size:1em; background:url(../images/common/iconArrow99.gif) no-repeat left .3em;}
-.readMessage .messageHeader address { float:right; white-space:nowrap;}
-.readMessage .messageHeader address em { font-size:.9em; font-style:normal; color:#333333; margin-right:.3em;}
-.readMessage .messageHeader address em a { color:#333333;}
-.readMessage .messageHeader address .date { font:.8em Tahoma; color:#999999;}
-.readMessage .messageBody { border:1px solid #e0e1db; margin:0 1.5em 1.5em 1.5em; padding:1em; position:relative; color:#666666;}
-.readMessage .deleteOrKeep { padding:.5em 0; overflow:hidden; background:#f5f5f3; border-top:1px solid #eaebe7; _width:100%;}
-.readMessage .deleteOrKeep li { position:relative; left:40%; float:left; margin-right:.5em;}
-.readMessage .button { position:relative; background:#f7f7f7; border-top:1px solid #ee2b33; border-bottom:2px solid #ee2b33; overflow:hidden; padding:.7em; text-align:center;}
-
-
-.joinTable.typeA { border-top:2px solid #ee1b24; border-collapse:collapse;}
-.joinTable.typeB { border-bottom:2px solid #ee1b24; background:#f9f9f9;}
-.joinTable.typeC { border-top:2px solid #ee2b33; border-bottom:2px solid #ee2b33; border-collapse:collapse;}
-.joinTable.typeB caption { border-top:1px dashed #919191; background:#f9f9f9;}
-.joinTable { width:100%;}
-.joinTable caption { padding:2em 0 .5em 1.5em; font-weight:bold; text-align:left; background:url(../images/common/iconH3.gif) no-repeat .5em 2em;}
-.joinTable th,
-.joinTable td { padding:.7em .5em .7em 1.5em; text-align:left; border-top:1px solid #eff0eb;}
-.joinTable td { background:url(../images/common/bar_1x18_e4e5e0.gif) no-repeat left bottom;}
-.joinTable th { width:10em;}
-.joinTable td textarea { width:40em; height:4.5em; border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; line-height:1em; background:#fbfbfb; vertical-align:middle; float:left; margin-right:.5em; margin-bottom:.5em; color:#666666; overflow:auto;}
-.joinTable td input { border:1px solid; border-color:#a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6; padding:3px; height:1em; line-height:1em; background:#fbfbfb; vertical-align:middle; float:left; margin-right:.5em; margin-bottom:.5em; color:#666666;}
-.joinTable td input.radio,
-.joinTable td input.check { border:none; padding:0; margin:0; background:none; margin-top:.4em;}
-.joinTable td input.w4em { width:4em;}
-.joinTable td input.w2em { width:2em;}
-.joinTable td select { float:left; margin-right:.5em;}
-.joinTable td .fl { margin-right:.5em;}
-.joinTable td br { clear:both;}
-.joinTable td p { float:left; font-size:.9em; color:#999999; padding-top:.5em; margin-right:.5em;}
-.joinTable td label { float:left; color:#3f4040; padding-top:.3em; margin-right:.5em;}
-.joinTable td a { color:#333333;}
-.joinTable .no_line { border:none;}
-.join_button { margin:1em 0 0 0; text-align:center;}
-.joinTable .add_info { padding:2.5em .5em .7em 1.5em; background:#f9f9f9; border-top:1px dashed #919191;}
-.buttonTypeWrite.join { margin-top:1.2em;}
-
-/* ----- Member | End ----- */
-
-
-.smallBox .inputPassword { position:relative; border:none; padding:2em 2em 1.5em 2em;}
-.smallBox .inputPassword .inputTypeText { float:left; margin-right:.5em; width:8em;}
-.smallBox .inputPassword legend { position:absolute; overflow:hidden; width:1px; height:1px; font-size:.001em; text-indent:-100em;}
diff --git a/modules/board/skins/cozy_simple_webzine/css/green.css b/modules/board/skins/cozy_simple_webzine/css/green.css
deleted file mode 100644
index 592d74f50..000000000
--- a/modules/board/skins/cozy_simple_webzine/css/green.css
+++ /dev/null
@@ -1,20 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#8dc63f url(../images/green/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #8dc63f; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/green/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#27a939; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#27a939; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#27a939; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #8dc63f;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #8dc63f; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#8dc63f;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #8dc63f;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/green/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/green/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
-
diff --git a/modules/board/skins/cozy_simple_webzine/css/pink.css b/modules/board/skins/cozy_simple_webzine/css/pink.css
deleted file mode 100644
index 7269ac2a4..000000000
--- a/modules/board/skins/cozy_simple_webzine/css/pink.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#f70795 url(../images/pink/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #f70795; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/pink/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#f70795; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#f70795; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#f70795; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #f70795;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #f70795; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#f70795;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #f9f9f9;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/pink/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/pink/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_webzine/css/red.css b/modules/board/skins/cozy_simple_webzine/css/red.css
deleted file mode 100644
index b703a9dbb..000000000
--- a/modules/board/skins/cozy_simple_webzine/css/red.css
+++ /dev/null
@@ -1,19 +0,0 @@
-@charset "utf-8";
-
-/* boardHeader */
-.boardHeader { position:relative; _width:100%; background:#ED2027 url(../images/red/bg_top_title.gif) no-repeat 23px top; overflow:hidden;}
-.boardList { width:100%; position:relative; border-bottom:2px solid #ed2a32; border-collapse:collapse; }
-
-.boardList th {padding:1.2em .5em 1.1em .6em; background:#ffffff url(../images/red/bg_title.gif) no-repeat left bottom; white-space:nowrap;}
-.boardList td .replyAndTrackback { font:.8em Tahoma; color:#ed1f29; cursor:default; position:relative; top:-.2em;}
-.boardList td.recommend { font:bold .8em Tahoma; color:#ec2127; text-align:center;}
-
-.pageNavigation .current { margin-left:-4px; font:bold .8em Tahoma; color:#ff6600; display:inline-block; padding:1px 5px 2px 4px; border-left:1px solid #dedfde; border-right:1px solid #CCCCCC; text-decoration:none; line-height:1em; }
-
-.boardRead { position:relative; _width:100%; margin:1em 0 0 0; padding: 0 0 .6em 0; border-bottom:3px solid #ed2228;}
-.boardRead .readHeader { width:100%; padding-bottom:.5em; margin-bottom:1em; border-bottom:3px solid #ee202a; overflow:hidden;}
-.boardRead .replyAndTrackback li.selected { margin:0; padding:1em 1.1em .7em 1.4em; border:1px solid #EAEAEA; border-bottom:none; background:#FFFFFF; color:#eb1c22;}
-
-.boardWrite fieldset.bottomBorder { border-bottom:2px solid #ed1b24;}
-.boardWrite div.title { padding:.5em 0 .65em 0; white-space:nowrap; background:#FFFFFF url(../images/red/bg_title_norepeat.gif) no-repeat left bottom;}
-.boardWrite .option { width:100%; padding:.5em 0 .65em 0; background:#FFFFFF url(../images/red/bg_title_norepeat.gif) no-repeat left bottom; overflow:hidden;}
diff --git a/modules/board/skins/cozy_simple_webzine/delete_comment_form.html b/modules/board/skins/cozy_simple_webzine/delete_comment_form.html
deleted file mode 100644
index 984c3ac8e..000000000
--- a/modules/board/skins/cozy_simple_webzine/delete_comment_form.html
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/delete_form.html b/modules/board/skins/cozy_simple_webzine/delete_form.html
deleted file mode 100644
index 1ca638c93..000000000
--- a/modules/board/skins/cozy_simple_webzine/delete_form.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/delete_trackback_form.html b/modules/board/skins/cozy_simple_webzine/delete_trackback_form.html
deleted file mode 100644
index f907b6793..000000000
--- a/modules/board/skins/cozy_simple_webzine/delete_trackback_form.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/extra_var_form.html b/modules/board/skins/cozy_simple_webzine/extra_var_form.html
deleted file mode 100644
index 564cec9d9..000000000
--- a/modules/board/skins/cozy_simple_webzine/extra_var_form.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
- {@ $val->default = explode(',',$val->default) }
-
-
-
-{@ $val->column_name = "extra_vars".$key}
-
-
-{@ $val->value = $oDocument->getExtraValue($key)}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {zdate($val->value,"Y-m-d")}
- {$lang->cmd_open_calendar}
-
-
-
-{$val->desc}
-
diff --git a/modules/board/skins/cozy_simple_webzine/extra_var_value.html b/modules/board/skins/cozy_simple_webzine/extra_var_value.html
deleted file mode 100644
index 0d5b21657..000000000
--- a/modules/board/skins/cozy_simple_webzine/extra_var_value.html
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
-
-{@ $val->column_name = "extra_vars".$key}
-
-
-{@ $val->value = $oDocument->getExtraValue($key)}
-
-
-
- {htmlspecialchars($val->value)}
-
-
-
-
- {$val->value}
-
-
-
-
-
-
-
- {$val->value}
-
-
-
-
-
-
- {htmlspecialchars($val->value[0])}
- -
- {htmlspecialchars($val->value[1])}
- -
- {htmlspecialchars($val->value[2])}
-
-
-
- {nl2br(htmlspecialchars($val->value))}
-
-
-
-
- {@ $_tmp_value[] = htmlspecialchars($v)}
-
- {implode(",",$_tmp_value)}
-
-
-
- {htmlspecialchars($val->value)}
-
-
-
- {zdate($val->value,"Y-m-d")}
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/filter/delete_comment.xml b/modules/board/skins/cozy_simple_webzine/filter/delete_comment.xml
deleted file mode 100644
index 115ea00d9..000000000
--- a/modules/board/skins/cozy_simple_webzine/filter/delete_comment.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/filter/delete_document.xml b/modules/board/skins/cozy_simple_webzine/filter/delete_document.xml
deleted file mode 100644
index 7627f5a63..000000000
--- a/modules/board/skins/cozy_simple_webzine/filter/delete_document.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/filter/delete_trackback.xml b/modules/board/skins/cozy_simple_webzine/filter/delete_trackback.xml
deleted file mode 100644
index 2140675f8..000000000
--- a/modules/board/skins/cozy_simple_webzine/filter/delete_trackback.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/filter/input_password.xml b/modules/board/skins/cozy_simple_webzine/filter/input_password.xml
deleted file mode 100644
index 55cb6d8e0..000000000
--- a/modules/board/skins/cozy_simple_webzine/filter/input_password.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/filter/insert.xml b/modules/board/skins/cozy_simple_webzine/filter/insert.xml
deleted file mode 100644
index fbfb2d970..000000000
--- a/modules/board/skins/cozy_simple_webzine/filter/insert.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/filter/insert_comment.xml b/modules/board/skins/cozy_simple_webzine/filter/insert_comment.xml
deleted file mode 100644
index ba2216c8a..000000000
--- a/modules/board/skins/cozy_simple_webzine/filter/insert_comment.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/filter/search.xml b/modules/board/skins/cozy_simple_webzine/filter/search.xml
deleted file mode 100644
index 6c85e1254..000000000
--- a/modules/board/skins/cozy_simple_webzine/filter/search.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/filter/vote.xml b/modules/board/skins/cozy_simple_webzine/filter/vote.xml
deleted file mode 100644
index 0870a7551..000000000
--- a/modules/board/skins/cozy_simple_webzine/filter/vote.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/footer.html b/modules/board/skins/cozy_simple_webzine/footer.html
deleted file mode 100644
index c6171637a..000000000
--- a/modules/board/skins/cozy_simple_webzine/footer.html
+++ /dev/null
@@ -1,2 +0,0 @@
-
-{$module_info->footer_text}
diff --git a/modules/board/skins/cozy_simple_webzine/header.html b/modules/board/skins/cozy_simple_webzine/header.html
deleted file mode 100644
index faf6313b1..000000000
--- a/modules/board/skins/cozy_simple_webzine/header.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
- {@$module_info->colorset = "red"}
-
-
-
-
-
-
-
-
-
-
-
-
-{$module_info->header_text}
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/images/blue/bg_title.gif b/modules/board/skins/cozy_simple_webzine/images/blue/bg_title.gif
deleted file mode 100644
index ff67b452b..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/blue/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/blue/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_webzine/images/blue/bg_title_norepeat.gif
deleted file mode 100644
index aec4de0b0..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/blue/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/blue/bg_top_title.gif b/modules/board/skins/cozy_simple_webzine/images/blue/bg_top_title.gif
deleted file mode 100644
index 99eecde67..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/blue/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/bluish_green/bg_title.gif b/modules/board/skins/cozy_simple_webzine/images/bluish_green/bg_title.gif
deleted file mode 100644
index c5cf6b136..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/bluish_green/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/bluish_green/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_webzine/images/bluish_green/bg_title_norepeat.gif
deleted file mode 100644
index 227cf252b..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/bluish_green/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/bluish_green/bg_top_title.gif b/modules/board/skins/cozy_simple_webzine/images/bluish_green/bg_top_title.gif
deleted file mode 100644
index 160682e41..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/bluish_green/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/bar_1x7_c0c0c0.gif b/modules/board/skins/cozy_simple_webzine/images/common/bar_1x7_c0c0c0.gif
deleted file mode 100644
index 1d2f92ff7..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/bar_1x7_c0c0c0.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/bar_1x8_c0c0c0.gif b/modules/board/skins/cozy_simple_webzine/images/common/bar_1x8_c0c0c0.gif
deleted file mode 100644
index f37814f58..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/bar_1x8_c0c0c0.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/bg_repeat_x_eaeaea.gif b/modules/board/skins/cozy_simple_webzine/images/common/bg_repeat_x_eaeaea.gif
deleted file mode 100644
index 0b011fe5d..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/bg_repeat_x_eaeaea.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn4_rss.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn4_rss.gif
deleted file mode 100644
index 50584f6d5..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn4_rss.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_admin.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_admin.gif
deleted file mode 100644
index bea6e158e..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_admin.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_cancel.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_cancel.gif
deleted file mode 100644
index 65b303e06..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_cancel.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_cancel3.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_cancel3.gif
deleted file mode 100644
index 5dfcfd0b7..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_cancel3.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_delete.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_delete.gif
deleted file mode 100644
index 84a26c508..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_delete.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_delete2.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_delete2.gif
deleted file mode 100644
index 1fcb5e906..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_delete2.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_edit.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_edit.gif
deleted file mode 100644
index 3f7bd62b1..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_edit.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_findid.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_findid.gif
deleted file mode 100644
index de53c3d16..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_findid.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_findpw.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_findpw.gif
deleted file mode 100644
index 26f254d9a..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_findpw.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_joinus.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_joinus.gif
deleted file mode 100644
index beed35641..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_joinus.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_list.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_list.gif
deleted file mode 100644
index 8e56215c8..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_list.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_login.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_login.gif
deleted file mode 100755
index b5e6a3e9e..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_login.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_logout.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_logout.gif
deleted file mode 100644
index 0233282e6..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_logout.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_manage.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_manage.gif
deleted file mode 100755
index 6f5cd05b7..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_manage.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_modify.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_modify.gif
deleted file mode 100644
index 7b4321472..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_modify.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_my.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_my.gif
deleted file mode 100644
index 72e626189..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_my.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_preview.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_preview.gif
deleted file mode 100755
index e66ee6ca5..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_preview.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_print.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_print.gif
deleted file mode 100755
index 56e0efb04..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_print.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_reply.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_reply.gif
deleted file mode 100644
index 1482218b6..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_reply.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_reply2.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_reply2.gif
deleted file mode 100644
index 5f34a2ea8..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_reply2.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_rss.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_rss.gif
deleted file mode 100755
index 424624cfd..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_rss.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_scrap.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_scrap.gif
deleted file mode 100755
index 29d9beb44..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_scrap.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_search.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_search.gif
deleted file mode 100644
index 0a12014d3..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_search.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_vote.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_vote.gif
deleted file mode 100755
index 5a637cb0e..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_vote.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/btn_write.gif b/modules/board/skins/cozy_simple_webzine/images/common/btn_write.gif
deleted file mode 100644
index 53a2e1cf0..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/btn_write.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/buttonAscending.gif b/modules/board/skins/cozy_simple_webzine/images/common/buttonAscending.gif
deleted file mode 100644
index b405cc323..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/buttonAscending.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/buttonDescending.gif b/modules/board/skins/cozy_simple_webzine/images/common/buttonDescending.gif
deleted file mode 100644
index 2dc5575ff..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/buttonDescending.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/buttonTypeInput24.gif b/modules/board/skins/cozy_simple_webzine/images/common/buttonTypeInput24.gif
deleted file mode 100644
index 0dcfc0e3d..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/buttonTypeInput24.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/iconArrow.gif b/modules/board/skins/cozy_simple_webzine/images/common/iconArrow.gif
deleted file mode 100644
index 267b36495..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/iconArrow.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/iconFile.gif b/modules/board/skins/cozy_simple_webzine/images/common/iconFile.gif
deleted file mode 100644
index d48f9c181..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/iconFile.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/iconTag.gif b/modules/board/skins/cozy_simple_webzine/images/common/iconTag.gif
deleted file mode 100644
index ecfdb5585..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/iconTag.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/icon_arrow_reply.gif b/modules/board/skins/cozy_simple_webzine/images/common/icon_arrow_reply.gif
deleted file mode 100644
index bbabbd7ea..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/icon_arrow_reply.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/icon_gofirst.gif b/modules/board/skins/cozy_simple_webzine/images/common/icon_gofirst.gif
deleted file mode 100644
index 68ba6ef96..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/icon_gofirst.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/icon_golast.gif b/modules/board/skins/cozy_simple_webzine/images/common/icon_golast.gif
deleted file mode 100644
index f2450047d..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/icon_golast.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/icon_notice.gif b/modules/board/skins/cozy_simple_webzine/images/common/icon_notice.gif
deleted file mode 100644
index d9fb255f3..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/icon_notice.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/txt_date.gif b/modules/board/skins/cozy_simple_webzine/images/common/txt_date.gif
deleted file mode 100644
index 524d2d782..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/txt_date.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/txt_hit.gif b/modules/board/skins/cozy_simple_webzine/images/common/txt_hit.gif
deleted file mode 100644
index cc9771319..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/txt_hit.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/txt_hot.gif b/modules/board/skins/cozy_simple_webzine/images/common/txt_hot.gif
deleted file mode 100644
index 34e12c1ee..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/txt_hot.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/txt_my.gif b/modules/board/skins/cozy_simple_webzine/images/common/txt_my.gif
deleted file mode 100644
index 3c1687494..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/txt_my.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/txt_name.gif b/modules/board/skins/cozy_simple_webzine/images/common/txt_name.gif
deleted file mode 100644
index 789dba359..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/txt_name.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/txt_option.gif b/modules/board/skins/cozy_simple_webzine/images/common/txt_option.gif
deleted file mode 100644
index 9cb5202b7..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/txt_option.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/common/txt_title.gif b/modules/board/skins/cozy_simple_webzine/images/common/txt_title.gif
deleted file mode 100644
index 34125f7a7..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/common/txt_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/green/bg_title.gif b/modules/board/skins/cozy_simple_webzine/images/green/bg_title.gif
deleted file mode 100644
index 9223e8058..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/green/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/green/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_webzine/images/green/bg_title_norepeat.gif
deleted file mode 100644
index 57aa0ebea..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/green/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/green/bg_top_title.gif b/modules/board/skins/cozy_simple_webzine/images/green/bg_top_title.gif
deleted file mode 100644
index 95cfa0245..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/green/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/pink/bg_title.gif b/modules/board/skins/cozy_simple_webzine/images/pink/bg_title.gif
deleted file mode 100644
index 4c587d473..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/pink/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/pink/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_webzine/images/pink/bg_title_norepeat.gif
deleted file mode 100644
index 80a473e84..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/pink/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/pink/bg_top_title.gif b/modules/board/skins/cozy_simple_webzine/images/pink/bg_top_title.gif
deleted file mode 100644
index d218b2a9e..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/pink/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/red/bg_title.gif b/modules/board/skins/cozy_simple_webzine/images/red/bg_title.gif
deleted file mode 100644
index f693fc693..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/red/bg_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/red/bg_title_norepeat.gif b/modules/board/skins/cozy_simple_webzine/images/red/bg_title_norepeat.gif
deleted file mode 100644
index f1b2417f5..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/red/bg_title_norepeat.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/images/red/bg_top_title.gif b/modules/board/skins/cozy_simple_webzine/images/red/bg_top_title.gif
deleted file mode 100644
index c4ae66243..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/images/red/bg_top_title.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/input_password_form.html b/modules/board/skins/cozy_simple_webzine/input_password_form.html
deleted file mode 100644
index 985f1ffd5..000000000
--- a/modules/board/skins/cozy_simple_webzine/input_password_form.html
+++ /dev/null
@@ -1,27 +0,0 @@
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/js/board.js b/modules/board/skins/cozy_simple_webzine/js/board.js
deleted file mode 100644
index 494a561ab..000000000
--- a/modules/board/skins/cozy_simple_webzine/js/board.js
+++ /dev/null
@@ -1,137 +0,0 @@
-/**
- * @file modules/board/js/board.js
- * @author zero (zero@nzeo.com)
- * @brief board 모듈의 javascript
- **/
-
-/* 관리자가 카트 선택시 세션에 넣음 */
-function doAddCart(mid, obj) {
- var srl = obj.value;
- var check_flag = obj.checked?'add':'remove';
-
- var params = new Array();
- params["mid"] = mid;
- params["srl"] = srl;
- params["check_flag"] = check_flag;
-
- exec_xml("board","procBoardAdminAddCart", params, null);
-}
-
-/* 글쓰기 작성후 */
-function completeDocumentInserted(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var category_srl = ret_obj['category_srl'];
-
- alert(message);
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(category_srl) url = url.setQuery('category',category_srl);
- location.href = url;
-}
-
-/* 글 삭제 */
-function completeDeleteDocument(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('act','').setQuery('document_srl','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 검색 실행 */
-function completeSearch(fo_obj, params) {
- fo_obj.submit();
-}
-
-/* 추천, 추천은 별도의 폼입력이 필요 없어 직접 필터 사용 */
-function doVote() {
- var fo_obj = document.getElementById('fo_document_info');
- procFilter(fo_obj, vote);
-}
-
-function completeVote(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- alert(message);
- location.href = location.href;
-}
-
-// 현재 페이지 reload
-function completeReload(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
-
- location.href = location.href;
-}
-
-/* 댓글 글쓰기 작성후 */
-function completeInsertComment(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var comment_srl = ret_obj['comment_srl'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(comment_srl) url += "#comment_"+comment_srl;
-
- alert(message);
-
- location.href = url;
-}
-
-/* 댓글 삭제 */
-function completeDeleteComment(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 트랙백 삭제 */
-function completeDeleteTrackback(ret_obj) {
- var error = ret_obj['error'];
- var message = ret_obj['message'];
- var mid = ret_obj['mid'];
- var document_srl = ret_obj['document_srl'];
- var page = ret_obj['page'];
-
- var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(page) url = url.setQuery('page',page);
-
- alert(message);
-
- location.href = url;
-}
-
-/* 카테고리 이동 */
-function doChangeCategory() {
- var sel_obj = xGetElementById("board_category");
- var sel_idx = sel_obj.selectedIndex;
- var category_srl = sel_obj.options[sel_idx].value;
- location.href = current_url.setQuery('category',category_srl);
-}
-
-/* 스크랩 */
-function doScrap(document_srl) {
- var params = new Array();
- params["document_srl"] = document_srl;
- exec_xml("member","procMemberScrapDocument", params, null);
-}
diff --git a/modules/board/skins/cozy_simple_webzine/list.html b/modules/board/skins/cozy_simple_webzine/list.html
deleted file mode 100644
index 7d810f086..000000000
--- a/modules/board/skins/cozy_simple_webzine/list.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {@ $order_icon = "buttonDescending.gif" }
- {@ $order_type = "asc"; }
-
- {@ $order_icon = "buttonAscending.gif" }
- {@ $order_type = "desc"; }
-
-
-
-
-
-
-
-

-
-
-
{$page_no}
-
-
{$page_no}
-
-
-

-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/message.html b/modules/board/skins/cozy_simple_webzine/message.html
deleted file mode 100644
index 00bf01814..000000000
--- a/modules/board/skins/cozy_simple_webzine/message.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- {$message}
-
-
-
- {$lang->cmd_login}
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/screenshot/blue.gif b/modules/board/skins/cozy_simple_webzine/screenshot/blue.gif
deleted file mode 100644
index d47abf82f..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/screenshot/blue.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/screenshot/bluish_green.gif b/modules/board/skins/cozy_simple_webzine/screenshot/bluish_green.gif
deleted file mode 100644
index 99e8fd57c..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/screenshot/bluish_green.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/screenshot/green.gif b/modules/board/skins/cozy_simple_webzine/screenshot/green.gif
deleted file mode 100644
index 6abb59584..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/screenshot/green.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/screenshot/pink.gif b/modules/board/skins/cozy_simple_webzine/screenshot/pink.gif
deleted file mode 100644
index 049b9cede..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/screenshot/pink.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/screenshot/red.gif b/modules/board/skins/cozy_simple_webzine/screenshot/red.gif
deleted file mode 100644
index 6ee55fb6f..000000000
Binary files a/modules/board/skins/cozy_simple_webzine/screenshot/red.gif and /dev/null differ
diff --git a/modules/board/skins/cozy_simple_webzine/skin.xml b/modules/board/skins/cozy_simple_webzine/skin.xml
deleted file mode 100644
index 84a38059e..000000000
--- a/modules/board/skins/cozy_simple_webzine/skin.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
- cozy simple (웹진형)
- Cozyシンプル(ウェブジンスタイル)
- cozy simple skin (webzine style)
- Cozy样式皮肤(网络杂志型)
-
- (주)NHN
- (株)NHN
- (株)NHN
- NHN Corp
-
- cozy simple 스킨의 웹진형입니다.
- 디자인 : 서기정 (http://blog.naver.com/addcozy)
- HTML/CSS : 소지훈
-
-
- Cozyシンプルスキンのウェブジンスタイルです。
- デザイン:ソギジョン(http://blog.naver.com/addcozy)
- HTML/CSS:ソギジョン
-
-
- This is webzine style board of cozy simple skin.
- Design : Ki-Jeong Seo (http://blog.naver.com/addcozy)
- HTML/CSS : Ji-Hun So
-
-
- Cozy样式皮肤。(网络杂志型)
- 设计 : Ki-Jeong Seo (http://blog.naver.com/addcozy)
- HTML/CSS : Ji-Hun So
-
-
-
-
- 빨간색(기본)
- 赤
- Red (default)
- 红色(默认)
-
-
- 녹색
- 緑
- Green
- 绿色
-
-
- 파란색
- 青
- Blue
- 蓝色
-
-
- 분홍색
- ピンク
- Pink
- 粉红色
-
-
- 청록색
- 青緑
- Cyan
- 青绿色
-
-
-
-
- 정렬 대상
- ソート対象
- 排序对象
- Align Target
- select
- 등록된 순서 또는 변경된 순서로 정렬을 할 수 있습니다.
- 登録された順、変更された順でソートできます。
- 可对主题按发表顺或最后更新顺进行排序。
- It can align articles as registered order or modified order.
- newest
- updated
-
-
- 게시판 제목
- 掲示板タイトル
- 版面标题
- Title of Board
- 게시판의 제목을 적어주세요.
- 掲示板タイトルを入力してください。
- 请输入版面标题。(留空为不显示)
- Please input the title of board.
-
-
- 제목 글자수
- タイトルの文字数
- 标题字数
- Length of Subject
- 제목 글자수를 지정할 수 있습니다. (0또는 비워주시면 자르지 않습니다)
- タイトルの文字数が指定できます(「0」または空欄の場合は、文字数を制限しません)。
- 可以指定标题字数。(0或留空为不限)
- You may set length of title. (0 or blank value will not restrict the length)
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/trackback.html b/modules/board/skins/cozy_simple_webzine/trackback.html
deleted file mode 100644
index 29b00b1d1..000000000
--- a/modules/board/skins/cozy_simple_webzine/trackback.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/view_document.html b/modules/board/skins/cozy_simple_webzine/view_document.html
deleted file mode 100644
index 90b7060d6..000000000
--- a/modules/board/skins/cozy_simple_webzine/view_document.html
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
- - {$lang->document_url} : {$oDocument->getPermanentUrl()}
-
- - {$lang->trackback_url} : {$oDocument->getTrackbackUrl()}
-
-
-
-
-
{$oDocument->getNickName()}
-
-
{$oDocument->get('ipaddress')}
-
-
-
-
-
-
-
-
-
{$oDocument->getContent()}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/modules/board/skins/cozy_simple_webzine/write_form.html b/modules/board/skins/cozy_simple_webzine/write_form.html
deleted file mode 100644
index 016412f57..000000000
--- a/modules/board/skins/cozy_simple_webzine/write_form.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
diff --git a/modules/board/skins/xe_gallery/header.html b/modules/board/skins/xe_gallery/header.html
index 25fda4122..9b0ed7b9d 100644
--- a/modules/board/skins/xe_gallery/header.html
+++ b/modules/board/skins/xe_gallery/header.html
@@ -15,6 +15,11 @@
+
+
+ {@ $module_info->duration_new = 12 }
+
+
{$module_info->header_text}
diff --git a/modules/board/skins/xe_gallery/js/board.js b/modules/board/skins/xe_gallery/js/board.js
index 494a561ab..9044d6484 100644
--- a/modules/board/skins/xe_gallery/js/board.js
+++ b/modules/board/skins/xe_gallery/js/board.js
@@ -25,7 +25,7 @@ function completeDocumentInserted(ret_obj) {
var document_srl = ret_obj['document_srl'];
var category_srl = ret_obj['category_srl'];
- alert(message);
+ //alert(message);
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(category_srl) url = url.setQuery('category',category_srl);
@@ -42,7 +42,7 @@ function completeDeleteDocument(ret_obj) {
var url = current_url.setQuery('mid',mid).setQuery('act','').setQuery('document_srl','');
if(page) url = url.setQuery('page',page);
- alert(message);
+ //alert(message);
location.href = url;
}
@@ -82,9 +82,9 @@ function completeInsertComment(ret_obj) {
var comment_srl = ret_obj['comment_srl'];
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(comment_srl) url += "#comment_"+comment_srl;
+ if(comment_srl) url = url.setQuery('rnd',comment_srl)+"#comment_"+comment_srl;
- alert(message);
+ //alert(message);
location.href = url;
}
@@ -100,7 +100,7 @@ function completeDeleteComment(ret_obj) {
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(page) url = url.setQuery('page',page);
- alert(message);
+ //alert(message);
location.href = url;
}
@@ -116,7 +116,7 @@ function completeDeleteTrackback(ret_obj) {
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(page) url = url.setQuery('page',page);
- alert(message);
+ //alert(message);
location.href = url;
}
diff --git a/modules/board/skins/xe_gallery/list.html b/modules/board/skins/xe_gallery/list.html
index bb811f747..6c422b7fc 100644
--- a/modules/board/skins/xe_gallery/list.html
+++ b/modules/board/skins/xe_gallery/list.html
@@ -71,7 +71,7 @@
{$document->getTrackbackCount()}
- {$document->printExtraImages(60*60*2)}
+ {$document->printExtraImages(60*60*$module_info->duration_new)}
{$document->get('readed_count')} |
{$document->get('voted_count')} |
diff --git a/modules/board/skins/xe_gallery/skin.xml b/modules/board/skins/xe_gallery/skin.xml
index 3eefb1ba1..3c783c441 100644
--- a/modules/board/skins/xe_gallery/skin.xml
+++ b/modules/board/skins/xe_gallery/skin.xml
@@ -106,5 +106,12 @@
请输入显示在版面标题下的说明。(留空为不显示)
You may input description which will be displayed under the board title.
+
+ new표시 시간 (hours)
+ Duration of indication for new item
+ 새로 등록된 게시물의 new 표시시간을 정할 수 있습니다.
+ You may set the duration of indication for fresh item.
+ 24
+
diff --git a/modules/board/skins/xe_list/header.html b/modules/board/skins/xe_list/header.html
index e1c10336d..5e1bda72e 100644
--- a/modules/board/skins/xe_list/header.html
+++ b/modules/board/skins/xe_list/header.html
@@ -15,6 +15,11 @@
+
+
+ {@ $module_info->duration_new = 12 }
+
+
{$module_info->header_text}
diff --git a/modules/board/skins/xe_list/js/board.js b/modules/board/skins/xe_list/js/board.js
index 494a561ab..9044d6484 100644
--- a/modules/board/skins/xe_list/js/board.js
+++ b/modules/board/skins/xe_list/js/board.js
@@ -25,7 +25,7 @@ function completeDocumentInserted(ret_obj) {
var document_srl = ret_obj['document_srl'];
var category_srl = ret_obj['category_srl'];
- alert(message);
+ //alert(message);
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(category_srl) url = url.setQuery('category',category_srl);
@@ -42,7 +42,7 @@ function completeDeleteDocument(ret_obj) {
var url = current_url.setQuery('mid',mid).setQuery('act','').setQuery('document_srl','');
if(page) url = url.setQuery('page',page);
- alert(message);
+ //alert(message);
location.href = url;
}
@@ -82,9 +82,9 @@ function completeInsertComment(ret_obj) {
var comment_srl = ret_obj['comment_srl'];
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(comment_srl) url += "#comment_"+comment_srl;
+ if(comment_srl) url = url.setQuery('rnd',comment_srl)+"#comment_"+comment_srl;
- alert(message);
+ //alert(message);
location.href = url;
}
@@ -100,7 +100,7 @@ function completeDeleteComment(ret_obj) {
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(page) url = url.setQuery('page',page);
- alert(message);
+ //alert(message);
location.href = url;
}
@@ -116,7 +116,7 @@ function completeDeleteTrackback(ret_obj) {
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(page) url = url.setQuery('page',page);
- alert(message);
+ //alert(message);
location.href = url;
}
diff --git a/modules/board/skins/xe_list/list.html b/modules/board/skins/xe_list/list.html
index 8989945ad..d69be8e9a 100644
--- a/modules/board/skins/xe_list/list.html
+++ b/modules/board/skins/xe_list/list.html
@@ -104,7 +104,7 @@
{$document->getTrackbackCount()}
- {$document->printExtraImages(60*60*2)}
+ {$document->printExtraImages(60*60*$module_info->duration_new)}
{$document->getNickName()} |
{$document->get('readed_count')>0?$document->get('readed_count'):' '} |
diff --git a/modules/board/skins/xe_list/skin.xml b/modules/board/skins/xe_list/skin.xml
index 284b6947e..fab4d4c62 100644
--- a/modules/board/skins/xe_list/skin.xml
+++ b/modules/board/skins/xe_list/skin.xml
@@ -182,5 +182,12 @@
Y
+
+ new표시 시간 (hours)
+ Duration of indication for new item
+ 새로 등록된 게시물의 new 표시시간을 정할 수 있습니다.
+ You may set the duration of indication for fresh item.
+ 24
+
diff --git a/modules/board/skins/xe_webzine/header.html b/modules/board/skins/xe_webzine/header.html
index 04af033e4..c47025a56 100644
--- a/modules/board/skins/xe_webzine/header.html
+++ b/modules/board/skins/xe_webzine/header.html
@@ -15,6 +15,11 @@
+
+
+ {@ $module_info->duration_new = 12 }
+
+
{$module_info->header_text}
diff --git a/modules/board/skins/xe_webzine/js/board.js b/modules/board/skins/xe_webzine/js/board.js
index 494a561ab..9044d6484 100644
--- a/modules/board/skins/xe_webzine/js/board.js
+++ b/modules/board/skins/xe_webzine/js/board.js
@@ -25,7 +25,7 @@ function completeDocumentInserted(ret_obj) {
var document_srl = ret_obj['document_srl'];
var category_srl = ret_obj['category_srl'];
- alert(message);
+ //alert(message);
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(category_srl) url = url.setQuery('category',category_srl);
@@ -42,7 +42,7 @@ function completeDeleteDocument(ret_obj) {
var url = current_url.setQuery('mid',mid).setQuery('act','').setQuery('document_srl','');
if(page) url = url.setQuery('page',page);
- alert(message);
+ //alert(message);
location.href = url;
}
@@ -82,9 +82,9 @@ function completeInsertComment(ret_obj) {
var comment_srl = ret_obj['comment_srl'];
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
- if(comment_srl) url += "#comment_"+comment_srl;
+ if(comment_srl) url = url.setQuery('rnd',comment_srl)+"#comment_"+comment_srl;
- alert(message);
+ //alert(message);
location.href = url;
}
@@ -100,7 +100,7 @@ function completeDeleteComment(ret_obj) {
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(page) url = url.setQuery('page',page);
- alert(message);
+ //alert(message);
location.href = url;
}
@@ -116,7 +116,7 @@ function completeDeleteTrackback(ret_obj) {
var url = current_url.setQuery('mid',mid).setQuery('document_srl',document_srl).setQuery('act','');
if(page) url = url.setQuery('page',page);
- alert(message);
+ //alert(message);
location.href = url;
}
diff --git a/modules/board/skins/xe_webzine/list.html b/modules/board/skins/xe_webzine/list.html
index 3b4d2cfa7..ee7204aa8 100644
--- a/modules/board/skins/xe_webzine/list.html
+++ b/modules/board/skins/xe_webzine/list.html
@@ -88,7 +88,7 @@
{$document->getTrackbackCount()}
- {$document->printExtraImages(60*60*2)}
+ {$document->printExtraImages(60*60*$module_info->duration_new)}
{$document->getNickName()} |
{$document->get('readed_count')} |
@@ -124,7 +124,7 @@
{$document->getTrackbackCount()}
- {$document->printExtraImages(60*60*2)}
+ {$document->printExtraImages(60*60*$module_info->duration_new)}
{$document->getNickName()} |
{$document->get('readed_count')} |
diff --git a/modules/board/skins/xe_webzine/skin.xml b/modules/board/skins/xe_webzine/skin.xml
index d853c5aaa..17d248057 100644
--- a/modules/board/skins/xe_webzine/skin.xml
+++ b/modules/board/skins/xe_webzine/skin.xml
@@ -116,5 +116,12 @@
可以指定标题字数。(0或留空为不限)
You may set length of title. (0 or blank value will not restrict the length)
+
+ new표시 시간 (hours)
+ Duration of indication for new item
+ 새로 등록된 게시물의 new 표시시간을 정할 수 있습니다.
+ You may set the duration of indication for fresh item.
+ 24
+
diff --git a/modules/document/document.item.php b/modules/document/document.item.php
index 2a8535da4..79acc18ea 100644
--- a/modules/document/document.item.php
+++ b/modules/document/document.item.php
@@ -175,7 +175,7 @@
}
function getSummary($str_size = 50) {
- $content = htmlspecialchars(strip_tags($this->get('content')));
+ $content = htmlspecialchars(strip_tags($this->getContent()));
return cut_str($content, $str_size, '...');
}
diff --git a/modules/editor/tpl/js/editor.js b/modules/editor/tpl/js/editor.js
index 76ecbdf47..d8415bbda 100755
--- a/modules/editor/tpl/js/editor.js
+++ b/modules/editor/tpl/js/editor.js
@@ -100,6 +100,8 @@ function editorGetSelectedNode(editor_sequence) {
/**
* editor 시작 (editor_sequence로 iframe객체를 얻어서 쓰기 모드로 전환)
**/
+var editor_is_started = new Array();
+var editor_start_func = new Array();
function editorStart(editor_sequence, primary_key, content_key, resizable, editor_height) {
// resize 가/불가에 대한 체크
if(typeof(resizable)=="undefined"||!resizable) resizable = false;
@@ -174,17 +176,20 @@ function editorStart(editor_sequence, primary_key, content_key, resizable, edito
// editor_mode를 기본으로 설정
editor_mode[editor_sequence] = null;
+ editor_is_started[editor_sequence] = false;
+
+ xAddEventListener(document,'mouseup',editorEventCheck);
// iframe에 focus가 될때 에디터 모드로 전환하도록 이벤트 지정
- if(xIE4Up) xAddEventListener(iframe_obj, "focus", function() { editorSetDesignMode(iframe_obj, contentDocument, content, fo_obj, editor_sequence, editor_height); } );
- else xAddEventListener(iframe_obj.contentWindow, "focus", function() { editorSetDesignMode(iframe_obj, contentDocument, content, fo_obj, editor_sequence, editor_height); } );
+ editor_start_func[editor_sequence] = function() { editorSetDesignMode(iframe_obj, contentDocument, content, fo_obj, editor_sequence); }
+ if(xIE4Up) xAddEventListener(iframe_obj, "focus", editor_start_func[editor_sequence] );
+ else xAddEventListener(iframe_obj.contentWindow, "focus", editor_start_func[editor_sequence] );
}
/**
* 에디터를 위지윅 모드로 만들기 위해 내용 작성 후 designMode 활성화
**/
-var editor_is_started = new Array();
-function editorSetDesignMode(iframe_obj, contentDocument, content, fo_obj, editor_sequence, editor_height) {
+function editorSetDesignMode(iframe_obj, contentDocument, content, fo_obj, editor_sequence ) {
if(editor_is_started[editor_sequence]) return;
contentDocument.designMode = 'on';
@@ -198,14 +203,19 @@ function editorSetDesignMode(iframe_obj, contentDocument, content, fo_obj, edito
* 더블클릭이나 키눌림등의 각종 이벤트에 대해 listener 추가
**/
// 작성시 필요한 이벤트 체크
- if(xIE4Up) xAddEventListener(contentDocument, 'keydown',editorKeyPress);
- else xAddEventListener(contentDocument, 'keypress',editorKeyPress);
- xAddEventListener(contentDocument,'mousedown',editorHideObject);
+ // 이 이벤트의 경우 윈도우 sp1 (NT or xp sp1) 에서 contentDocument에 대한 권한이 없기에 try 문으로 감싸서
+ // 에러를 무시하도록 해야 함.
+ try {
+ if(xIE4Up) xAddEventListener(contentDocument, 'keydown',editorKeyPress);
+ else xAddEventListener(contentDocument, 'keypress',editorKeyPress);
+ xAddEventListener(contentDocument,'mousedown',editorHideObject);
+
+ // 위젯 감시를 위한 더블클릭 이벤트 걸기 (오페라에 대한 처리는 차후에.. 뭔가 이상함)
+ xAddEventListener(contentDocument,'dblclick',editorSearchComponent);
+ } catch(e) {
+ }
- // 위젯 감시를 위한 더블클릭 이벤트 걸기 (오페라에 대한 처리는 차후에.. 뭔가 이상함)
- xAddEventListener(contentDocument,'dblclick',editorSearchComponent);
xAddEventListener(document,'dblclick',editorSearchComponent);
- xAddEventListener(document,'mouseup',editorEventCheck);
xAddEventListener(document,'mousedown',editorHideObject);
/**
@@ -322,7 +332,19 @@ function editorFocus(editor_sequence) {
// 에디터 내의 선택된 부분의 html코드를 변경
function editorReplaceHTML(iframe_obj, html) {
+ // 에디터가 활성화 되어 있는지 확인 후 비활성화시 활성화
+ var editor_sequence = iframe_obj.contentWindow.document.body.getAttribute("editor_sequence");
+ if(!editor_is_started[editor_sequence]) {
+ try {
+ editor_start_func[editor_sequence];
+ } catch(e) {
+ return;
+ }
+ }
+
+ // iframe 에디터에 포커스를 둠
iframe_obj.contentWindow.focus();
+
if(xIE4Up) {
var range = iframe_obj.contentWindow.document.selection.createRange();
if(range.pasteHTML) {
@@ -330,7 +352,9 @@ function editorReplaceHTML(iframe_obj, html) {
} else if(editorPrevNode) {
editorPrevNode.outerHTML = html;
}
+
} else {
+
if(iframe_obj.contentWindow.getSelection().focusNode.tagName == "HTML") {
var range = iframe_obj.contentDocument.createRange();
range.setStart(iframe_obj.contentDocument.body,0);
@@ -341,6 +365,7 @@ function editorReplaceHTML(iframe_obj, html) {
range.deleteContents();
range.insertNode(range.createContextualFragment(html));
}
+
}
}
@@ -715,6 +740,15 @@ function editorHideObject(evt) {
* HTML 편집 기능 활성/비활성
**/
function editorChangeMode(obj, editor_sequence) {
+ // 에디터가 활성화 되어 있는지 확인 후 비활성화시 활성화
+ if(!editor_is_started[editor_sequence]) {
+ try {
+ editor_start_func[editor_sequence];
+ } catch(e) {
+ return;
+ }
+ }
+
var iframe_obj = editorGetIFrame(editor_sequence);
if(!iframe_obj) return;
diff --git a/modules/member/member.model.php b/modules/member/member.model.php
index 5fc7c7b40..0d21b9ce3 100644
--- a/modules/member/member.model.php
+++ b/modules/member/member.model.php
@@ -29,6 +29,10 @@
$logged_info = Context::get('logged_info');
$act = Context::get('cur_act');
+ // 호출된 모듈의 정보 구함
+ $oModuleModel = &getModel('module');
+ $cur_module_info = $oModuleModel->getModuleInfoByMid($mid);
+
// 자신의 아이디를 클릭한 경우
if($member_srl == $logged_info->member_srl) {
$member_info = $logged_info;
@@ -63,7 +67,7 @@
}
// 게시판이나 블로그등일 경우는 특별 옵션 지정
- if($mid && !ereg('Member', $act)) {
+ if($mid && !ereg('Member', $act) && !in_array($cur_module_info->module, array('page', 'opage'))) {
// 아이디로 검색
$menu_str = Context::getLang('cmd_view_own_document');
$menu_url = sprintf('./?mid=%s&search_target=user_id&search_keyword=%s', $mid, $user_id);
diff --git a/modules/trackback/queries/getTrackbackCountByIPAddress.xml b/modules/trackback/queries/getTrackbackCountByIPAddress.xml
index 23871ee91..bdd2cbbb1 100644
--- a/modules/trackback/queries/getTrackbackCountByIPAddress.xml
+++ b/modules/trackback/queries/getTrackbackCountByIPAddress.xml
@@ -7,6 +7,6 @@
-
+
diff --git a/widgets/image_counter/image_counter.class.php b/widgets/image_counter/image_counter.class.php
index 424371764..e530b40da 100644
--- a/widgets/image_counter/image_counter.class.php
+++ b/widgets/image_counter/image_counter.class.php
@@ -100,6 +100,7 @@
// 그래프를 그리기 위한 좌표 구함
$unique_visitor = $val->unique_visitor;
if($max_unique_visitor == 0) $per = 0;
+ elseif($max_unique_visitor == $min_unique_visitor) $per = 0;
else $per = ($val->unique_visitor-$min_unique_visitor) / ($max_unique_visitor-$min_unique_visitor);
// x,y 좌표 구함
diff --git a/widgets/newest_document/conf/info.xml b/widgets/newest_document/conf/info.xml
index 720324919..0afd83701 100644
--- a/widgets/newest_document/conf/info.xml
+++ b/widgets/newest_document/conf/info.xml
@@ -102,6 +102,13 @@
You can set the number of articles to be displayed. (default is 5)
Usted puede definir el número de los documentos a mostrar. (predefinido: 5)
+
+ new 표시 시간 (hours)
+ Duration of indication for new item
+ text
+ 새로 등록된 게시물의 new 표시시간을 정할 수 있습니다. (시간 단위)
+ You may set the duration of indication for fresh item. (unit is hour)
+
대상 모듈
模块对象
diff --git a/widgets/newest_document/newest_document.class.php b/widgets/newest_document/newest_document.class.php
index b1a5f2227..0dccdcd95 100644
--- a/widgets/newest_document/newest_document.class.php
+++ b/widgets/newest_document/newest_document.class.php
@@ -26,6 +26,8 @@
$mid_list = explode(",",$args->mid_list);
$subject_cut_size = $args->subject_cut_size;
if(!$subject_cut_size) $subject_cut_size = 0;
+ $duration_new = $args->duration_new;
+ if(!$duration_new) $duration_new = 12;
// module_srl 대신 mid가 넘어왔을 경우는 직접 module_srl을 구해줌
if($mid_list) {
@@ -72,6 +74,7 @@
$widget_info->title = $title;
$widget_info->document_list = $document_list;
$widget_info->subject_cut_size = $subject_cut_size;
+ $widget_info->duration_new = $duration_new * 60*60;
Context::set('widget_info', $widget_info);
diff --git a/widgets/newest_document/skins/blog_newest_document/list.html b/widgets/newest_document/skins/blog_newest_document/list.html
index 5910c0c08..d7fafa84c 100644
--- a/widgets/newest_document/skins/blog_newest_document/list.html
+++ b/widgets/newest_document/skins/blog_newest_document/list.html
@@ -22,7 +22,7 @@
diff --git a/widgets/newest_document/skins/cozy_simple/list.html b/widgets/newest_document/skins/cozy_simple/list.html
index 0587e7600..be746956b 100644
--- a/widgets/newest_document/skins/cozy_simple/list.html
+++ b/widgets/newest_document/skins/cozy_simple/list.html
@@ -23,7 +23,7 @@
diff --git a/widgets/newest_document/skins/default/list.html b/widgets/newest_document/skins/default/list.html
index 257434180..6c4da6325 100644
--- a/widgets/newest_document/skins/default/list.html
+++ b/widgets/newest_document/skins/default/list.html
@@ -28,7 +28,7 @@
- {$oDocument->getNickName()}
- {$oDocument->printExtraImages()}
+ {$oDocument->printExtraImages($widget_info->duration_new)}
{$oDocument->getRegdate("Y-m-d")}
diff --git a/widgets/newest_document/skins/xe_official/list.html b/widgets/newest_document/skins/xe_official/list.html
index b1221e3cd..6c90c9c2c 100644
--- a/widgets/newest_document/skins/xe_official/list.html
+++ b/widgets/newest_document/skins/xe_official/list.html
@@ -19,7 +19,7 @@
- {$oDocument->printExtraImages()}
+ {$oDocument->printExtraImages($widget_info->duration_new)}
{$oDocument->getRegdate("Y-m-d")}
- -
{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})
-
-
-