/*
 * CSS for BiteForce
 */

body, div
{
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body
{
    overflow: auto;
    width: 100%;
    height: 100%;
}

/*
 * Create grey header with a white logo
 */
  
header
{
    position: fixed;
    left: 0;
    width: 100%;
    height: 35px;           /* MUST BE SAME VALUE AS 'top' in .middle */
    background-color: #ddd;
}

header h1.logo
{
    margin: 0;
    font-size: 1.7em;
    color: #fff;
    float: left;
    margin-left: 10px;
}

/*
 * Display menu navigation links inline
 */
 
.menu
{
    float: right;
    margin-top: 8px;
    margin-right: 15px;
}

.menu li
{
    display: inline;
}

.menu li + li
{
    margin-left: 10px;
    margin-right: 10px;
}

.menu li a
{
    color: #999;
    text-decoration: none;
}

/*
 * Middle potion of the page
 */

.middle
{
    overflow: auto;
    position: absolute;
    width: 100%;
    top: 35px;              /* MUST BE SAME VALUE AS 'height' in header */
    bottom: 0;
    text-align: center;
}
 
/*
 * Footer stuff
 */

.footer
{
    position: absolute;
    line-height: 25px;
    text-align: center;
    width: 100%;
}

/*
 * Footer version line stuff
 */

.version_footer
{
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 8px;
}

/*
 * Footer logo line stuff
 */

.logo_footer
{
    display: table;
    border-collapse: collapse;
    width: 100%;
}

.logo_single
{
    display: table-cell;
    vertical-align: top;
}

.logo_single img
{
    display: block;
    width: 100%;
    height: auto;
}

/*
 * The selection stuff
 */

.viewtitles
{
  float: left;
  margin: 10px;
  width: 15%;
  background-color: #ddd;
  border-radius: 3px;
}

.viewselect
{
  float: right;
  margin: 10px;
  width: 80%;
  background-color: #ddd;
  border-radius: 3px;
}

/*
 * The browse table adornment
 */

table.gridtable
{
    font-size:11px;
    color:#333333;
    border-width: 1px;
    border-color: #666666;
    border-collapse: collapse;
}

table.gridtable th
{
    border-width: 1px;
    padding: 12px;
    border-style: solid;
    background-color: #dedede;
}

table.gridtable td
{
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    background-color: #f0f0f0;
}

table.filtertable
{
-moz-border-radius: 25px;
-webkit-border-radius: 25px;
border-radius: 25px;

    border-collapse: collapse;
    border: none;
    font-size: 14px;
    color: #333333;
}

table.filtertable td
{
    padding: 4px;
}

/*
 * Hidden div
 */

#hidden
{
    display: none;
}

