/* Temporary
*******************************************************************************/
.frame-wiki {
  padding: 0 10px;
}

/* TODO: base/common/page 准备封装一些基本样式组合调用 参考YUI
*******************************************************************************/
* {
    font-family: Helvetica, Tahoma, Arial, "Microsoft YaHei", "微软雅黑", SimSun, "宋体", STXihei, "华文细黑", Heiti, "黑体", sans-serif;
}

span[id^=valid_user] {
    padding-left: 10px;
}

.red {
    color: red;margin-right: 10px;text-align: right;
}

.green {
    color: green;
}

.border_box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -box-sizing: border-box;
}

.div_inline {
    display: inline-block;
}

/*文字不换行*/
.text_nowrap {
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*字体 斜体*/
.font_italic {
    font-style: italic;
}

/*字体加粗*/
.font_bolder {
    font-weight: bolder;
}

.text_center {
    text-align: center;
}

.ph10_5 {
    /*padding horizontal 10% 5%*/
    padding: 0px 5% 0px 10%;
}

.clear_both {
    clear: both;
}

.memo-content pre {
    white-space: normal;
    word-wrap: break-word;
}

.highlight {
    background-color: #fff34d;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7);
    color: #cc0033;
    /*padding: 1px 3px;*/
    /*margin: 0 -4px;*/
    filter: alpha(opacity = 70);
    -moz-opacity: 0.7;
    -webkit-opacity: 0.7;
    opacity: 0.7;
}

.clearfix {
    /*width: 100%;
    height: 0px;
    clear: both;
    display: block;*/
    display: inline-block;
    width: 80px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*.hidden {*/
    /*display: none;*/
/*}*/

.font_color_orange {
    color: #E8770D;
}
/* colorbox
*******************************************************************************/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#fff;}
#colorbox{outline:0;}
#cboxTopLeft{width:25px; height:25px; background:url(/images/colorbox/border1.png) no-repeat 0 0;}
#cboxTopCenter{height:25px; background:url(/images/colorbox/border1.png) repeat-x 0 -50px;}
#cboxTopRight{width:25px; height:25px; background:url(/images/colorbox/border1.png) no-repeat -25px 0;}
#cboxBottomLeft{width:25px; height:25px; background:url(/images/colorbox/border1.png) no-repeat 0 -25px;}
#cboxBottomCenter{height:25px; background:url(/images/colorbox/border1.png) repeat-x 0 -75px;}
#cboxBottomRight{width:25px; height:25px; background:url(/images/colorbox/border1.png) no-repeat -25px -25px;}
#cboxMiddleLeft{width:25px; background:url(/images/colorbox/border2.png) repeat-y 0 0;}
#cboxMiddleRight{width:25px; background:url(/images/colorbox/border2.png) repeat-y -25px 0;}
#cboxContent{background:#fff; overflow:hidden;}
.cboxIframe{background:#fff;}
#cboxError{padding:50px; border:1px solid #ccc;}
#cboxLoadedContent{margin-bottom:20px;}
#cboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;}
#cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
#cboxLoadingOverlay{background:#fff url(/images/colorbox/loading.gif) no-repeat 5px 5px;}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

#cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
#cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
#cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
#cboxClose{position:absolute; bottom:0; right:0; display:block; color:#444;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}



/* 模态窗口
*******************************************************************************/
/** jRating CSS **/

/**Div containing the color of the stars */

.jRatingAverage {
    background-color: #f62929;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
}

.jRatingColor {
    background-color: #FFD400; /* bgcolor of the stars*/
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
}

/** Div containing the stars **/
.jStar {
    position: relative;
    left: 0;
    z-index: 3;
}

/** P containing the rate informations **/
p.jRatingInfos {
    position: absolute;
    z-index: 9999;
    /*background: transparent url('bg_jRatingInfos.png') no-repeat;*/
    color: #CACACA;
    display: none;
    width: 91px;
    height: 29px;
    font-size: 16px;
    text-align: center;
    padding-top: 5px;
}

p.jRatingInfos span.maxRate {
    color: #c9c9c9;
    font-size: 14px;
}

/* 模态窗口
*******************************************************************************/

#lean_overlay {
    position: fixed;
    z-index: 80;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    display: none;
}

#OpenWindow {
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
    display: none;
    padding-bottom: 2px;
    width: 404px;
    z-index: 100;
    left: 50%;
    margin-left: -202px;
    opacity: 1;
    position: fixed;
    top: 200px;
}

#OpenWindow-header {
    background: url("/images/showmodal/hd-bg.png") repeat scroll 0 0 transparent;
    border-bottom: 1px solid #CCCCCC;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 18px 18px 14px;
}

#OpenWindow-content {
    -webkit-transition: all 0.2s linear 1s;
    -o-transition: all 0.2s linear 1s;
    -moz-transition: all 0.2s linear 1s;
    transition: all 0.2s linear 1s;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 18px 18px 14px;
}

.modal_close {
    background: url("/images/showmodal/modal_close.png") repeat scroll 0 0 transparent;
    display: block;
    height: 14px;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 14px;
    z-index: 2;
}

body {
    /*font-size: 13px;*/
}

#OpenWindow .txt-fld {
    border-bottom: 1px solid #EEEEEE;
    padding: 14px 20px;
    position: relative;
    text-align: right;
    width: 364px;
}

#OpenWindow .txt-fld input {
    background: none repeat scroll 0 0 #F7F7F7;
    border-color: #CCCCCC #E7E6E6 #E7E6E6 #CCCCCC;
    border-radius: 4px 4px 4px 4px;
    border-style: solid;
    border-width: 1px;
    color: #222222;
    font-size: 1.2em;
    outline: medium none;
    padding: 8px;
    width: 244px;
}

#OpenWindow .txt-fld input.good_input {
    background: url("/images/showmodal/good.png") no-repeat scroll 236px center #DEF5E1;
}

#OpenWindow .btn-fld {
    overflow: hidden;
    padding: 12px 20px 12px 130px;
    width: 254px;
}

#OpenWindow button {
    background: none repeat scroll 0 0 #3F9D4A;
    border: medium none;
    border-radius: 4px 4px 4px 4px;
    color: #FFFFFF;
    float: right;
    font-family: Verdana;
    font-size: 13px;
    font-weight: bold;
    overflow: visible;
    padding: 7px 10px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    width: auto;
}

/*********************************************************************************************************************
 * Wen的OpenWindow 
 *********************************************************************************************************************/

#WOpenWindow {
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
    display: none;
    padding-bottom: 2px;
    width: 1000px;
    z-index: 100;
    left: 50%;
    margin-left: -202px;
    opacity: 1;
    position: fixed;
    top: 200px;
}

#WOpenWindow .school_list {
    width: 900px;
    line-height: 20px;

}

#WOpenWindow-header {
    background: url("/images/showmodal/hd-bg.png") repeat scroll 0 0 transparent;
    border-bottom: 1px solid #CCCCCC;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 18px 18px 14px;
}

#WOpenWindow-content {
    -webkit-transition: all 0.2s linear 1s;
    -o-transition: all 0.2s linear 1s;
    -moz-transition: all 0.2s linear 1s;
    transition: all 0.2s linear 1s;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 18px 18px 14px;
}

#WOpenWindow .content {
    width: 1000px;
    height: 220px;
    overflow: scroll;
}

#WOpenWindow .pcontent {

}

#WOpenWindow .txt-fld {
    border-bottom: 1px solid #EEEEEE;
    padding: 14px 20px;
    position: relative;
    text-align: right;
    width: 364px;
}

#WOpenWindow .txt-fld input {
    background: none repeat scroll 0 0 #F7F7F7;
    border-color: #CCCCCC #E7E6E6 #E7E6E6 #CCCCCC;
    border-radius: 4px 4px 4px 4px;
    border-style: solid;
    border-width: 1px;
    color: #222222;
    font-family: "Helvetica Neue";
    font-size: 1.2em;
    outline: medium none;
    padding: 8px;
    width: 244px;
}

#WOpenWindow .txt-fld input.good_input {
    background: url("/images/showmodal/good.png") no-repeat scroll 236px center #DEF5E1;
}

#WOpenWindow .btn-fld {
    overflow: hidden;
    padding: 12px 20px 12px 130px;
    width: 254px;
}

#WOpenWindow button {
    background: none repeat scroll 0 0 #3F9D4A;
    border: medium none;
    border-radius: 4px 4px 4px 4px;
    color: #FFFFFF;
    float: right;
    font-family: Verdana;
    font-size: 13px;
    font-weight: bold;
    overflow: visible;
    padding: 7px 10px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    width: auto;
}

/*********************************************************************************************************************/

/* 按钮
*******************************************************************************/
.orangeButton {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e87832), color-stop(1, #db6825));
    background: -moz-linear-gradient(top, #e87832 5%, #db6825 100%);
    background: -webkit-linear-gradient(top, #e87832 5%, #db6825 100%);
    background: -o-linear-gradient(top, #e87832 5%, #db6825 100%);
    background: -ms-linear-gradient(top, #e87832 5%, #db6825 100%);
    background: linear-gradient(to bottom, #e87832 5%, #db6825 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#e87832', endColorstr = '#db6825', GradientType = 0);
    background-color: #e87832;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #e87832;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 16px;
    padding: 4px 11px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #754529;
}

.orangeButton:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #db6825), color-stop(1, #e87832));
    background: -moz-linear-gradient(top, #db6825 5%, #e87832 100%);
    background: -webkit-linear-gradient(top, #db6825 5%, #e87832 100%);
    background: -o-linear-gradient(top, #db6825 5%, #e87832 100%);
    background: -ms-linear-gradient(top, #db6825 5%, #e87832 100%);
    background: linear-gradient(to bottom, #db6825 5%, #e87832 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#db6825', endColorstr = '#e87832', GradientType = 0);
    background-color: #db6825;
}

.orangeButton:active {
    position: relative;
    top: 1px;
}

input[class~='whiteButton'], .whiteButton {
    -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
    -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6));
    background: -moz-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
    background: -webkit-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
    background: -o-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
    background: -ms-linear-gradient(top, #ffffff 5%, #f6f6f6 100%);
    background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#f6f6f6', GradientType = 0);
    background-color: #ffffff;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #dcdcdc;
    display: inline-block;
    color: #666666;
    color: #fffbff;
    font-family: arial;
    font-size: 20px;
    font-weight: bold;
    padding: 6px 24px;
    /*padding:3px 10px;*/
    text-decoration: none;
    text-shadow: 0px 1px 0px #ffffff;
}

input[class~='whiteButton']:hover, .whiteButton:hover {
    color: #c61a1a;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff));
    background: -moz-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
    background: -o-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
    background: -ms-linear-gradient(top, #f6f6f6 5%, #ffffff 100%);
    background: linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#f6f6f6', endColorstr = '#ffffff', GradientType = 0);
    text-decoration: none;
    background-color: #09bbff;
}

input[class~='whiteButton']:active, .whiteButton:active {
    position: relative;
    top: 1px;
    text-decoration: none;
    color: #ffffff;
}

input[class~='h30'], .h30 {
    height: 30px;
}

/* minimal
*******************************************************************************/
input[class='nyan-minimal'], .nyan-minimal {
    background: #e3e3e3;
    border: 1px solid #bbb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 1px 1px #f6f6f6;
    -moz-box-shadow: inset 0 0 1px 1px #f6f6f6;
    box-shadow: inset 0 0 1px 1px #f6f6f6;
    color: #333;
    font: bold 12px "helvetica neue", helvetica, arial, sans-serif;
    line-height: 1;
    padding: 8px 0 9px;
    text-align: center;
    text-shadow: 0 1px 0 #fff;
    padding-left: 10px;
    padding-right: 10px;
}

input[class='nyan-minimal'], .nyan-minimal:hover {
    background: #d9d9d9;
    -webkit-box-shadow: inset 0 0 1px 1px #eaeaea;
    -moz-box-shadow: inset 0 0 1px 1px #eaeaea;
    box-shadow: inset 0 0 1px 1px #eaeaea;
    color: #222;
    cursor: pointer;
}

input[class='nyan-minimal'], .nyan-minimal:active {
    background: #d0d0d0;
    -webkit-box-shadow: inset 0 0 1px 1px #e3e3e3;
    -moz-box-shadow: inset 0 0 1px 1px #e3e3e3;
    box-shadow: inset 0 0 1px 1px #e3e3e3;
    color: #000;
}

/* clean gray
*******************************************************************************/
input[class='nyan-clean-gray'], .nyan-clean-gray {
    background-color: #eeeeee;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #cccccc));
    background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
    background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
    background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
    background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
    background-image: linear-gradient(top, #eeeeee, #cccccc);
    border: 1px solid #ccc;
    border-bottom: 1px solid #bbb;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font: bold 11px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    line-height: 1;
    padding: 8px 0;
    text-align: center;
    text-shadow: 0 1px 0 #eee;
    padding-left: 10px;
    padding-right: 10px;
}

input[class='nyan-clean-gray']:hover, .nyan-clean-gray:hover {
    background-color: #dddddd;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dddddd), color-stop(100%, #bbbbbb));
    background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
    background-image: linear-gradient(top, #dddddd, #bbbbbb);
    border: 1px solid #bbb;
    border-bottom: 1px solid #999;
    cursor: pointer;
    text-shadow: 0 1px 0 #ddd;
}

input[class='nyan-clean-gray']:active, .nyan-clean-gray:active {
    border: 1px solid #aaa;
    border-bottom: 1px solid #888;
    -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}

#share_label {
    line-height: 1.4em
}

/* 项目左侧siderbar下面工具集的样式
*******************************************************************************/
.tools a:link {
    color: #116699;
    text-decoration: none;
    width: 100px;
    padding: 3px 5px 0px 5px;
}

.tools a:visited {
    color: #116699;
    text-decoration: none;
    padding: 3px 5px 0px 5px;
    width: 100px;
}

.tools a:hover {
    color: white;
    padding: 3px 3px 0px 20px;
    width: 88px;
    text-decoration: none;
    background-color: #539D26;
}

.tools a:active {
    color: white;
    padding: 3px 3px 0px 20px;
    width: 88px;
    text-decoration: none;
    background-color: #BD06B4;
}

.tools ul {
    list-style-type: none;
    margin: 0px 0px 0px 10%;
    padding: 0;
}

.tools li {
    /*background: url("/images/sidebar/tool_tag_alpha.png") 10px 30% no-repeat transparent;*/
    color: #3e3e3e;
    font-weight: 400;
    line-height: 1.5em;
    margin: 0px 0px 10px;
    padding: 0px 0px 0px 30px;
    font-size: 1.0em;
    /*border-bottom: 1px solid #CCC;*/
}

.tools li:last-child {
    border: none;
}

/* 贴吧 forum memo
*******************************************************************************/
.forums-list{
    padding-top: 10px;
    min-height: 400px;
}
div.actions input[type="text"] {
    padding: 3px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -box-sizing: border-box;

}

.lz {
    position: relative;
    min-height: 200px;
    margin: 10px 2px;
    border-radius: 5px;
    box-shadow: 1px 1px 6px #97EBF4;
    border: 1px solid #F1F1F1;
}

.lz-left {
    float: left;
    margin: 2%;
    padding: 0;
}

.memo-section {
    width: auto;
    margin-left: 15%;
    padding-top: 1%;
    border-left: 2px dotted #EEE;
}

.memo-title {
    margin: 1em 0;
    padding-left: 1%;
    padding-bottom: 1%;
    font-weight: bold;
    border-bottom: 1px dashed rgb(204, 204, 204);
}

.memo-content {
    padding: 1%;
    margin: 1%;
    margin-bottom: 40px;
    background-color: #F8F8F8;
    border-radius: 3px;
    word-break: break-all;
    word-wrap: break-word;
}

.memo-content ol li {
    list-style-type: decimal;
}
.memo-content ul li {
    list-style-type: disc;
}

.memo-content ul li {
    list-style-type: disc;
}

.memo-timestamp {
    position: absolute;
    bottom: 0px;
    right: 0;
    margin: 20px;
}

.replies {
    overflow: hidden;
    max-width: 100%;
    float: left;
    /*max-width: 90%;*/
}

.reply-box {
    float: right;
    width: 640px;
    padding: 3%;
    /*border: 2px solid #C6F3F9;*/
    border-top: 2px double #C6F3F9;
    /*border-radius: 10px;*/
}

.memo-content img, .comments img {
    overflow: hidden;
    /*width: 100%;*/
    max-width: 100%;
    height: auto !important;
    /*width: expression(this.width > 500 ? "500px" : this.width+"px");*/
}

table.content-text-list tbody tr td.sticky, div.memo-section .sticky {
    background: url(../images/zding.gif) no-repeat 0 1px;
    padding-left: 35px;
    /*background: url(../images/2uparrow.png) no-repeat 0 1px; padding-left: 20px;*/
    font-weight: bold;
    margin-left: 5px;
}

table.content-text-list tbody tr td.locked, div.memo-section .locked {
    background: url(../images/locked.png) no-repeat 0 1px;
    padding-left: 20px;
    margin-left: 5px;
}

/* 问题列表
*******************************************************************************/
.query_form {
}

.content-title-top {
    padding-bottom: 10px;
}

.custom_query {
    max-width: 95%;
    margin: 3px auto;
    -o-box-shadow: inset 0px 1px 1px 0px #FAFAFA;
    -moz-box-shadow: inset 0px 1px 1px 0px #FAFAFA;
    -webkit-box-shadow: inset 0px 1px 1px 0px #FAFAFA;
    box-shadow: inset 0px 1px 1px 0px #FAFAFA;
}

.custom_query>span {
    display: block;
    max-width: 100%;
    line-height: 1.8em;
    font-size: 14px;
    text-align: center;
    border-radius: 3px;
    background-color: #DBEBEE;
}

.custom_query > .hide-when-print {
    max-width: 97%;
    padding: 1px 3px 6px;
    margin: 0 auto;
    background-color: #F7F7F7;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* 项目新闻栏
*******************************************************************************/
.add_frame {
    position: relative;
    margin: 5px 10px 2px 0px;
    padding: 10px 10px;
    border-radius: 5px;
    /*box-shadow: 1px 1px 6px rgb(241,241,241);*/
    /*border: 1px solid #F1F1F1;*/
}

.add_frame_header {
    background: linear-gradient(#fbfbfb, #f8f8f8) repeat scroll 0% 0% transparent;
    border-bottom: 1px solid rgb(226, 226, 226);
    box-shadow: 0px 1px 0px white, 0px, -1px 0px rgb(245, 245, 245);
    height: 39px;
    font-size: 15px;

    line-height: 26px;
    height: 30px;
    font-size: 1.5em;
    padding-left: 4%;
}

/* xx动态框
*******************************************************************************/
.project_acts * {
    border: 1px solid #000000;
}

.project_acts {
    height: 250px;

}

.project_acts .project_acts_left {
    float: left;
    height: 100%;
    width: 61%;
}

.project_acts .project_acts_right {
    height: 100%;
    margin-left: 61%;
}

/* stores 资源库
*******************************************************************************/
.line_block {
    display: inline-block;
    width: 47%;
    /*margin: 10px auto;*/
    vertical-align: top;
    padding: 0px 1%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -box-sizing: border-box;
    min-height: 180px;
}


.resource_sum {
    height: auto;
    width: 100%;
}

.line_block p {
    margin: 20px -2px 0px 0px;
    /*background: linear-gradient(#ffffff, #e5e5e5) repeat scroll 0% 0% transparent;*/
    border-bottom: 1px solid rgb(226, 226, 226);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: 0px 1px 0px white, 0px, -1px 0px rgb(245, 245, 245);
    height: 39px;
    font-size: 15px;
    line-height: 26px;
    height: 30px;
    font-size: 1.5em;
    padding-left: 4%;
    border-bottom: 1px solid rgb(21, 165, 200);
}

.resource_sum, .line_blo {
    border: 1px solid #eeeeee;
}

.filename {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 230px;
}

.line_block .table1 {
    display: table;
    width: 100%;
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.line_block .table_row1 {
    height: 38px;
    display: table-row;
    width: 100%;
}

.line_block .table_cell1 {
    display: table-cell;
    padding: 2px;
    border: 1px solid #FFFFFF;
    vertical-align: middle;
}

.line_block .filename1 {
    width: 62%;
    padding-left: 8px;
}

.line_block .filedown1 {
    width: 19%;
    text-align: center;
}

.line_block .downicon1 {
    width: 19%;
    text-align: center;
}

.blue-color, .blue-color a {
    color: rgb(109, 153, 178);
}

.gray-color, .gray-color a {
    color: rgb(153, 153, 153);
}

#top_field {
    max-width: 100%;
    margin: 20px auto;
}

.blueinputbar {
    -o-transform-origin: 138px 46.5px;
    -o-transition: background 0.2s cubic-bezier(0, 0, 1, 1);
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -webkit-transform-origin: 138px 46.5px;
    -webkit-transition: background 0.2s cubic-bezier(0, 0, 1, 1);
    -webkit-transition-delay: 0;
    -webkit-transition-duration: 0.2s;
    -webkit-transition-property: background;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 1, 1);
    align-content: stretch;
    align-items: stretch;
    align-self: stretch;
    background: #FFFFFF;
    border-bottom: 1px solid #56B4EF;
    border-left: 1px solid #56B4EF;
    border-radius: 3px;
    border-right: 1px solid #56B4EF;
    border-top: 1px solid #56B4EF;
    color: #333333;
    justify-content: flex-start;
    margin: 0px;
    order: 0;
    outline: #333333 0px;
    overflow-wrap: break-word;
    resize: none;
    text-shadow: none;
    transform-origin: 138px 46.5px;
    transition: background 0.2s cubic-bezier(0, 0, 1, 1);
    unicode-bidi: embed;
    vertical-align: top;
    word-wrap: break-word;
}

input.blueinputbar:focus {
    box-shadow: rgba(0, 0, 0, 0.047) 0px 1px 3px 0px inset, rgba(82, 168, 236, 0.600) 0px 0px 5px 0px;
    border-bottom: 1px solid #56B4EF;
    border-left: 1px solid #56B4EF;
    border-radius: 3px;
    border-right: 1px solid #56B4EF;
    border-top: 1px solid #56B4EF;
}

.r1 {
    font-size: 13px;
    line-height: 1.7em;
    overflow-wrap: break-word;
    padding-bottom: 20px;
    /*padding-left: 20px;*/
    /*width: 50em;*/
}

.r1 .cb {
    font-size: 16px;
    color: #3333cc;
}

/* course 用户 课程 历史
*******************************************************************************/
.courses_history {
    opacity: 0.7;
}

.courses_history a {
    color: #666;
}

/* issue div.issues
*******************************************************************************/
div.issue {
    background: none repeat scroll 0 0 #FFFFEC;
    /*border: none;*/
    margin-bottom: 6px;
    padding: 10;
    border-radius: 3px;
    /*  -moz-box-shadow: 3px 3px 10px rgba(100,150,205,0.1);
      -webkit-box-shadow: 3px 3px 10px rgba(100,150,205,0.1);
      box-shadow: 3px 3px 10px rgba(100,150,205,0.1);*/
}

/* project 文件列表 资源库
*******************************************************************************/
.tags_area {
    height: 13px;
}

#ver-zebra, .file_table_des {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    font-size: 12px;
    margin: 5px 10px;
    width: 98%;
    text-align: left;
    border-collapse: collapse;
    font-size: 14px;
}

#ver-zebra th {
    font-size: 14px;
    font-weight: normal;
    padding: 12px 15px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    color: #039;
    text-align: left;
}

#ver-zebra td {
    padding: 8px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    color: #669;
}

#ver-zebra td.description {
    background-color: white;
    padding: 0px;
    margin: 0px auto;
}

#ver-zebra1, .file_table_des {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    font-size: 12px;
    margin: 5px 10px;
    width: 98%;
    text-align: left;
    border-collapse: collapse;
    line-height: 20px;
    font-size: 14px;
}

#ver-zebra1 th {
    font-size: 14px;
    font-weight: normal;
    padding: 12px 15px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    color: #039;
    text-align: left;
}

#ver-zebra1 td {
    padding: 8px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    color: #669;
}

#ver-zebra1 td.description {
    background-color: white;
    padding: 0px;
    margin: 0px auto;
}

div.tags_area {
    padding: 2px 10px 10px 10px;
    margin: 0px;
    margin-bottom: 10px;
    /*border-bottom: 1px dashed #CCCCCC;*/
    overflow: hidden;
    position: relative;
}

.tags_gradint {
}

.read-more {
    padding: 5px;
    border-top: 4px double #ddd;
    background: #fff;
    color: #333;
}

.read-more a {
    padding-right: 22px;
    background: no-repeat 100% 50%;
    font-weight: bold;
    text-decoration: none;
}

.read-more a:hover {
    color: #000;
}

.vzebra-odd {
    background: #eff2ff;
}

.vzebra-even {
    background: #e8edff;
}

#ver-zebra #vzebra-adventure, #ver-zebra #vzebra-children {
    background: #ffffff;
    border-bottom: 1px solid #c8d4fd;
}

#ver-zebra #vzebra-attachmenttype, #ver-zebra #vzebra-children {
    background: #ffffff;
    border-bottom: 1px solid #c8d4fd;
}

#ver-zebra #vzebra-contenttype, #ver-zebra #vzebra-children {
    background: #ffffff;
    border-bottom: 1px solid #c8d4fd;
}

#ver-zebra #vzebra-field_file_dense, #ver-zebra #vzebra-children {
    background: #ffffff;
    border-bottom: 1px solid #c8d4fd;
}

#ver-zebra #vzebra-comedy, #ver-zebra #vzebra-action {
    background: #ffffff;
    border-bottom: 1px solid #d6dfff;
}

#ver-zebra1 #vzebra-adventure, #ver-zebra #vzebra-children {
    background: #ffffff;
    border-bottom: 1px solid #c8d4fd;
}

#ver-zebra1 #vzebra-comedy, #ver-zebra #vzebra-action {
    background: #ffffff;
    border-bottom: 1px solid #d6dfff;
}

#ver-zebra .filename {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

div.pagination {
    margin: 10px 0px;
    height: 1.5em;
    text-align: left;
    font-size: 13px;
}
.pagination li a{margin-top: 10px;}
.pagination li span{margin-top: 10px;}
.m5p5 {
    display: inline-block;
    height: auto;
    color: white !important;
    margin: 8px;
    padding: 3px 7px;
}

.m5p5:hover {
    text-decoration: none;
    /*padding-bottom: 3px;*/
    /*border-bottom: 1px solid #666666;*/
    border-radius: 4px;
    border: 1px solid #15bccf;
    box-shadow: 3px 3px 3px #666666;
}

.relation_file_div {
    margin: 0px 25px;
}

.relation_file_div fieldset {
    margin: 0px 0px;
    padding: 10px;
    border-radius: 5px;
    transition: all 2s linear 1s;
}

.relation_file_div input#attach_search:focus {
    border: 1px solid #1B95C6;
    box-shadow: 0px 0px 4px #1B95C6;
    width: 200px;
}

.relation_file_div input#attach_search {
    width: 150px;
    outline: none;
    border-radius: 5px;
    -webkit-transition: 1s width;
    -moz-transition: 1s width;
    -o-transition: 1s width;
    transition: 1s width;
}

.all_browse_div table .description {
    border-bottom: 1px solid #efffff;
}

.all_browse_div table td {
    vertical-align: middle;
}

/* softapplication show
*******************************************************************************/
.softapplication-img {
    margin: 0;
    padding: 0;
}

.softapplication-img {
    margin: 5px auto;
    width: 860px;
    max-height: 640px;
    overflow: hidden;
    box-shadow: 5px 5px 20px 5px #ccc;
    border-radius: 5px;
}

.soft-application {
    width: 326px;
    height: 580px;
}

.softapplication-img .title {
    width: 326px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.softapplication-img .title a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.softapplication-img li {
    list-style-type: none;
    position: relative;
    float: left;
    width: 205px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: -1px 0 3px 1px rgba(0, 0, 0, 0.3);
}

.softapplication-img ul:hover li {
    width: 160px;
}

.softapplication-img ul li:hover {
    width: 326px;
}

/* user_courses
*******************************************************************************/
.menu-div {
    margin: 0;
    padding: 0;
    position: relative;
    margin-top: -15px;
}

.menu-div .menu{
    display: block;
    background-color: #f9f9f9;
    border-radius: 2px 2px 0 0;
    position: relative;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    margin-left: -10px;
    padding-left: 15px;
}

.menu-div .menu:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.menu-div .menu ul {
    margin: 0;
    padding: 0;
    float: right;
    margin-right: 30px; 
}
.menu-div .menu ul {
}

.menu-div .menu li {
    display: inline-block;
    position: relative;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
}

.menu-div .menu li:hover {
    color: #00a1d6;
}

.menu-div .menu li.on {
    color: #00a1d6;
    font-weight: bold;
}


.menu-div .list_top {
    margin: 20px auto 0px;
}

.user_course_list .created_course {
    position: relative;
    display: block;
    padding-top: 20px;
}

.user_course_list .created_course:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.user_course_list .created_course .field {
    position: absolute;
    display: inline-block;
    color: rgb(213, 213, 213);
    top: 0;
    right: 5%;
}


/*** 
 * contest notifications
 */
ul.contest-notification-list {
  clear: both;
}
ul.contest-notification-list li{
  padding: 10px;
  border-bottom: 1px solid rgb(245,245,245);
  display: block;
}
ul.contest-notification-list li span.time {
  color: rgb(172, 174, 177);
  font-size: 13px;
  line-height: 25px;
}

ul.contest-notification-list li span.title {
  font-size: 14px;
}
ul.contest-notification-list li span.content {
  padding-top: 5px;
  padding-bottom: 10px;
}
ul.contest-notification-list li span{
  display: block;
}

.notification-content{
  margin: 0 auto;
  width: 80%;
}
.notification-content hr{
  background: #eee;
}
.notification-content .title{
  font-size: 15px;
}

.notification-content .content{
  font-size: 13px;
}

.softapplications-div table td{
  word-break: break-all;
}

.xls {
    /*background: url('../images/icon_excel.gif') no-repeat scroll 1px 50% transparent;*/
    /*padding: 2px 0px 3px 16px;*/
    font-family:微软雅黑 !important;
    font-size: 12px !important;
    color: #136b3b !important;
    font-weight:normal !important;
}

/*20160401袁可------------------ 查重结果样式*/
.conbox{ width:1000px; margin:0 auto; border:3px solid #f0f0f0; background:#fff;}
.conbox-h2{ font-size:16px; padding:10px 0; padding-left:25px;}
.chabox{ width:1000px;}
.chabox ul li{ float:left; width:82px; text-align:center; display:block;white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.chabox ul li.chabox-w-401{ width:151px;  display:block;white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.chabox ul li.chabox-r-line{ border-right:1px solid #D1D1D1;}
.chabox-top{ width:1000px; }
.chabox-top li{ font-size:14px; font-weight:bold; line-height:40px; height:40px; background:#E4E4E4; color:#000;}
.chabox-con li{font-size:12px;  line-height:35px; height:35px; color:#888; border-bottom:1px solid #DFDFDF;}
a.cha-btn{ display:block; width:50px; height:20px; line-height:20px; margin:0 auto; border:1px solid #269ac9; color:#269ac9;-webkit-border-radius: 3px;border-radius:3px; margin-top:8px;}
a:hover.cha-btn{ background:#269ac9; color:#fff;}
.chabox-header li{ font-size:14px; font-weight:bold; line-height:40px; height:40px; border-top:1px solid #E4E4E4; border-right:1px solid #E4E4E4; color:#000;}
.chabox ul li.chabox-w-500{ width:499px;}
.chabox ul li.chabox-w-40{ width:39px; border-right:1px solid #D1D1D1;}
.chabox ul li.chabox-txt-left{ text-align:left;text-indent:1em; }

.contrast-box{ width:1200px;box-shadow: 0 0 5px #6B6B6B; background:#fff; margin:0 auto; }
.contrast-con{ width:599px;  border-right:1px solid #D1D1D1; float:left;}
.contrast-con h3{font-size:14px; font-weight:bold; line-height:40px;   height:40px; background:#E4E4E4; color:#000; text-align:center; display:block;white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
.contrast-txt{   padding:10px;}
.showCodeC{ width:580px; float:left;}

.resourceClose {background:url(images/resource_icon_list.png) 0px -40px no-repeat; width:20px; height:20px; display:inline-block; position: absolute; z-index: 1000;}