﻿/* Global */
body, div, p, h1, h2, h3, h4, h5, h6, ul, li 
{
    margin: 0;
    padding: 0;
}

body 
{ 
    background-color: #336666;
    background-repeat: repeat-x;
    background-attachment: fixed;
}

/*將background-image獨立以解決IE8判定錯誤的問題*/   
body
{
    background-image: url('images/bg_login_green.png');
}

/* Layout */
#container 
{
    width: 960px;
    margin-top: 7px;
    margin-left: auto;
    margin-right: auto;
}   
    
#logo 
{  
    background-repeat: no-repeat;
    background-position: left top;
    height: 75px;
}
 
#logo
{
     background-image: url('images/logo_ncyu_header.gif');
}
    
#wrapper 
{
    padding: 10px;
    background-color: #FFFFFF;
    box-shadow: 1px 0px 3px 1px #909090;
    border-radius: 2px;
}     
    
#banner 
{
    width: 940px;
    height:180px;
}

#banner 
{
    background-image: url('images/logo_banner.jpg');
}  
  
#content 
{
    width: 360px;
    float: left;
    margin: 20px 0px 20px 10px;
}
    
#describe 
{
    width: 520px;
    float: right;
    margin: 20px 10px 20px 0px;
}
    
#foot 
{
    clear: both;
}


/* footer */    
.footer 
{
    border-top: solid 5px #336666;
    background-color: #CFDBDB;
    padding: 8px 12px;
}
    
.footer span 
{
    font-size: 0.75em;
}
    
#twcaseal 
{
    float: right;
}
    
/* loginform */ 
.loginform 
{
    border: solid 1px #CFDBDB;
    border-radius: 2px;
}
    
.loginform-top 
{
    background-color: #336666;
    border-bottom: solid 3px #CFDBDB;
    padding:6px;
    margin: 6px;
    color: #FFFFFF;
}
    
.loginform-bottom 
{
    padding:6px;
    margin: 6px;
}
    
.loginform p 
{
    margin: 1px 0 10px 0;
}

.loginform input[type="text"], .loginform input[type="password"] 
{
    border-top:solid 1px #999999;
    border-right:solid 1px #DDDDDD;
    border-bottom:solid 1px #DDDDDD;
    border-left:solid 1px #999999;
    font-size:1em;
    line-height: 1.1em;
    height: 1.2em;
    border-radius: 2px; 
}
    
.loginform input[type="submit"] 
{
    border-top:solid 1px #DDDDDD;
    border-right:solid 1px #999999;
    border-bottom:solid 1px #999999;
    border-left:solid 1px #DDDDDD;
    font-size:1em;
    line-height: 1.1em;
    background: url("images/bg_button.png") repeat-x scroll 50% 50%;
    padding: 0.1em 0.4em 0.2em;
    border-radius: 2px; 
}
    
/* describe */ 
.describe-top 
{
    float: left;    /* 解決IE8高度計算問題 */
    background-repeat: no-repeat;
    width: 520px;   /* 解決IE8寬度計算問題 */
    height: 20px;
}
 
.describe-top 
{
    background-image: url('images/describe_top_green.gif');
}
 
.describe-bottom 
{
    clear: both;    /* 解決IE8高度計算問題 */
    background-repeat: no-repeat;
    width: 520px;   /* 解決IE8寬度計算問題 */
    height: 20px;
}
 
.describe-bottom 
{
    background-image: url('images/describe_bottom_green.gif');
}
 
.describe-main 
{
    float: left;    /* 解決IE8高度計算問題 */
    width: 520px;   /* 解決IE8寬度計算問題 */
    background-color: #CFDBDB;
}
    
.describe-main li 
{
    line-height: 1.2em;
    padding: 2px 30px 2px 40px;
    list-style-type: none;
    background-repeat: no-repeat;
    background-position: 26px 9px;
}

.describe-main li 
{
    background-image: url('images/list_green.gif');
}
 
