body{
    font: Arial, Helvetica, sans-serif;
}
#container{
    width: 1200px; 
/*    border: 1px solid grey;*/
    margin: 0 auto;
}
#header{
    height: 100px;
    padding: 10px 0;
}
#brand{
    float: left;
}

h1 a{
    font-size: 50px;
    font-weight: 100;
    color: #861BBF;
    text-decoration: none;
}
#searchbox{
    float: right;
    background: linear-gradient(#E4F2B9, #B7E953); /* for cross browser compatability needs extra lines   */
    -webkit-background: linear-gradient(#E4F2B9, #B7E953);
    -o-background: linear-gradient(#E4F2B9, #B7E953);
    -moz-background: linear-gradient(#E4F2B9, #B7E953);    
    width: 400px;
    height: 50px;
    padding: 20px 20px 0 20px;
    margin-top: 20px;
}
.text{
   float: left; 
    width: 200px;
    padding: 5px;
    font-size: 15px;
    color: #E36A0C;
    background: white url(images/search.png) right center no-repeat;
    border: 1px solid #C8D03E;
}
.submit{
    float: right;
    padding: 5px;
    font-weight: bold;
    color: white;
    background: #A751D6;
    font-size: 15px;
}
.clear {
    clear: both;
}
#menu{
    height: 70px;
    background: linear-gradient(#F8F594, #D5D533);
    padding: 7px 0; /* centers text vertically on menu bar */
}
ul{
    list-style: none;
}
#menu ul li{
    float: left;
    padding: 0 30px;
    height: 30px;
    border-right: 1px solid #861BBF;
}
#menu ul li:last-child{
    border-right: none;  /* remove the last vertical seperator */
} 
#menu ul li a{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 17px;
    color: #861BBF;
    line-height: 30px; /* centers vertically menu text with dividers */
    transition: font-size 0.3s ease;
    -webkit-transition: font-size 0.3s ease;
    -moz-transition: font-size 0.3s ease;
    -o-transition: font-size 0.3s ease;
    -ms-transition: font-size 0.3s ease;
}
#menu ul li a:hover, #menu ul li a.active{
    font-size: 20px;
    font-weight: bold;
    color: #861BBF;
}


#introduction {
    background: linear-gradient(#E5F2BB, #B7E952);
    padding: 30px;
    margin: 16px 0;
}
#introduction h3{
    font-size: 45px;
    color: #316901;
    font-weight: normal;
}
#introduction p{
    font-size: 25px;
    color: #316901;
    text-align: justify;
}
.sidebar{
    height: 520px;
    width: 450px;
    border: 1px solid #BAF46F;
    border-radius: 20px;
    padding: 10px 30px;
   
}
.sidebar h3{
    color: #861BBF;
    font-size: 30px;
}
.sidebar ul{
    padding-top: 8px;
}
#leftsidebar ul li{
    padding: 4px 0 6px 10px;
    list-style: url(images/arrow.png)
}
.sidebar ul li a:hover, .sidebar ul li a:active{
    text-decoration: none;
    color: #B314DB;
    font-size: 23px;
    font-weight: bold;
    transition: font-size 0.3s ease;
    -webkit-transition: font-size 0.3s ease;
    -moz-transition: font-size 0.3s ease;
    -o-transition: font-size 0.3s ease;
    -ms-transition: font-size 0.3s ease;
}
.sidebar ul li a{
    text-decoration: none;
    font-size: 20px;
    color: #861BBF;
}
#leftsidebar{
    float: left;
}
#rightsidebar ul li{
    background: url(images/tick.png) no-repeat;
    padding: 17px 0 20px 70px;
    
}
#rightsidebar{
    float: right;
}
.footer{
    height: 60px;
    background: linear-gradient(#F6F390, #D5D533);
    padding: 10px 30px;
    margin-top: 15px;
}