﻿.container 
{
    width:1000px;
    min-height:600px;
    margin:0 auto;
    padding:10px;
    background-color:#fff;
    border:1px solid #ddd;
    box-shadow:0 0 4px #ddd;
}
/** table **/
.APEtable
{
    width: 100%;
   /*border-collapse: collapse;*/
    font-family: mangal, verdana !important;
    font-size: 12px;
    
}
.APEtable th
{
    padding: 8px;
    border: #ddd 1px solid;
    color: #fff;
    margin: 0 0 0 0;
    font-weight: normal;
    text-align: left;
    background-color:#25acd7;
    font-size:15px;
}
.APEtable td
   {
    width:auto;
    padding: 6px;
    border: #ddd 1px solid;
    text-align: left;
    
}
.APEtable tr
{
    background: #fafafa;
}
.APEtable tr:nth-child(odd)
{
    background: #FBFBFB;
}
.APEtable tr:nth-child(even)
{
    background: #f7f7f7;
}
/** fields **/

input[type="text"], input[type="password"], textarea
{
    width: 87%;
    padding: 7px;
    border-radius: 4px;
    background-color: #fff;
    border: #ddd 1px solid;
}
input:focus
{
    outline: none;
    box-shadow: 0px 0px 5px #ddd;
    border: #ddd 1px solid;
}
input:hover
{
    border-radius: 5px;
}
.select
{
    width: 95%;
    padding: 7px;
    border-radius: 4px;
    background-color: #fff;
    border: #ddd 1px solid;
}
.select:focus
{
    outline: none;
    box-shadow: 0px 0px 5px #61C5FA;
    border: #ddd 1px solid;
}
.select:hover
{
    border: #ddd 1px solid;
    border-radius: 5px;
}
textarea:focus
{
    outline: none;
    box-shadow: 0px 0px 5px #ffd0b4;
    border-color: #ffd0b4;
}
textarea:hover
{
    border: 1px solid #ffd0b4;
    border-radius: 5px;
}
.btn
{
    background-color: #25acd7;
    border: none;
    padding: 8px 8px;
    color: #fff;
    font-size: 14px;
    border-radius: 5px 5px;
}
.btn:hover, .btn:active
{
    background-color: #1884A7;
}
/** alignment **/

.txt-cntr 
{
    text-align:center !important;
}