/* the overlayed element */
.simple_overlay {
    /* must be initially hidden */
    display:none;

    /* place overlay on top of other elements */
    z-index:10000;

    /* styling */
    background-color:#333;
    border:1px solid #666;

    /* CSS3 styling for latest browsers */
    -moz-box-shadow:0 0 90px 5px #000;
    -webkit-box-shadow: 0 0 90px #000;
}
/* close button positioned on upper right corner */
.simple_overlay .close {
    background-image:url(../images/overlay/close.png);
    position:absolute;
    right:-15px;
    top:-15px;
    cursor:pointer;
    height:32px;
    width:32px;
}
.news_cate {
    float:left;
    width:160px;
}
.news_disp {
    float:left;
    width:460px;
}
.news_item {
    border-bottom:1px dotted #eee;
    padding:20px 0;
}
.news_item:last-child {
    border:none;
}
.read {
    clear:both;
    display:block;
    text-align:right;
}
.news_story {
    padding-top:10px;
}
.news_item span, .news_story span {
    color:#CCC;
    display:block;
    font-size:80%;
    font-style:italic;
}
.news_item_img {
    background:#EEE;
    border:1px solid #999;
    cursor:pointer;
    float:left;
    margin:0 10px 10px 0;
    padding:10px;
}
.pagi{
    margin-top:30px;
    padding-bottom:10px;
    text-align:center;
}
.pagi a:link,.pagi a:visited {
    border:1px solid #999;
    color:#999;
    margin:0px 5px;
    padding:5px 10px;
}
.pagi a:hover, a.active:link, a.active:visited {
   background:#CCC;
   color:#000;
}