  /**Timeout Box*/
  #timeout_wrapper {
        position:fixed;
        background:rgba(0,0,0,0.5);
        z-index:200;
        height:100%;
        width:100%;
        left: 0;
        top:0;
  }
  #timeout_box {
        margin:0 auto;
        width:300px;
        padding:5px;
        background:#f3f3f3;
        position:relative;
        top:30%;
        -moz-box-shadow:2px 2px 6px black;
        box-shadow:2px 2px 6px black;
        -moz-border-radius:10px;
        border-radius:10px;
        -webkit-box-shadow:2px 2px 6px black;
        -webkit-border-radius:10px;
        text-align: center;
        padding-bottom:10px;
  }
  #timeout_box h1 {
        -moz-border-radius-topright:10px;
        border-radius-topright:10px;
        -moz-border-radius-topleft:10px;
        border-radius-topleft:10px;
        -webkit-border-top-left-radius:10px;
        -webkit-border-top-right-radius:10px;
  }
  #logout_box {
        margin:0 auto;
        width:300px;
        padding:5px;
        background:#f3f3f3;
        position:relative;
        top:30%;
        -moz-box-shadow:2px 2px 6px black;
        box-shadow:2px 2px 6px black;
        -moz-border-radius:10px;
        border-radius:10px;
        -webkit-box-shadow:2px 2px 6px black;
        -webkit-border-radius:10px;
        text-align: center;
        padding-bottom:10px;
  }
  #logout_box h1 {
        -moz-border-radius-topright:10px;
        border-radius-topright:10px;
        -moz-border-radius-topleft:10px;
        border-radius-topleft:10px;
        -webkit-border-top-left-radius:10px;
        -webkit-border-top-right-radius:10px;
  }
  #timeout_cancel {
	background:#ccc;
        border:1px solid #444;
	padding:3px 5px;
	-moz-border-radius:5px;
	border-radius:5px;
	-webkit-border-radius:5px;
        margin-bottom:5px;
  }
  a#timeout_cancel {
       text-decoration: none;
       color:#333;
       font-style: italic;
  }
  a#timeout_cancel:hover {
       text-decoration: underline;
       color:#333;
  }