  * { margin: 0; padding: 0;}
  html {
    font-family: Geneva;
    color: #ccc;
  }
  body { background-color: #333; }
  header {
      margin: 10px auto;
      text-align: center;
  }
  #edge {
    position: fixed;
    width: 16px;
    height: 100%;
    z-index: 10;
  }
  #sidebar {
    position: fixed;
    top: 0;
    left: -44px;
    padding-top: 6px;
    background: #000;
    height: 100%;
    width: 64px;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    border-right: 1px dashed #666;
  }
    #sidebar p {
      text-align: center;      
    }
    #panel {
      margin: 5px auto;
      padding: 6px;
    }
      #panel a {
        display: block;
         margin: 2px;
        padding: 5px;
        text-align: center;
        background-color: #999;
        color: #fff;
        line-height: 1.5em;
        text-decoration: none;
      }
      #panel a:hover {
        background-color: #06f;
      }
  #wrapper {
    position: relative;
    width: 760px;
    height: 510px;
    margin: 10px auto;
    z-index: 0;
    overflow: auto;
  }
  #container {
    position: relative;
    padding: 10px;
    width: 720px;
    z-index: 0;
    overflow: auto;
    border: 2px dashed;
  }

  /***        ITEM DEFAULTS         ***/
  .item {
    position: relative;
    margin: 5px;
    padding: 0;
    background-color: #ccc;
    float: left;
  }
  /***         ITEM LIST VIEW       ***/
  .item h2 {
      color: #000;
      padding: 10px;
      font-size: 11px;
  }  
    .item-list {
      position: relative;
      width: 99%;
      height: 48px;
    
    }
  /***        ITEM GRID VIEW         ***/
  .item-grid {
    position: relative;
    width: 64px;
    height: 64px;
  }  

  /***        SEPARATE STYLE        ***/
  .rounded-top {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .rounded-bottom {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .active {
    background-color: #00f!important;
  }
