/**
*
* Session.css
* 
*/

.dlg {
	font-size:80%;
}

#session_dialog,
#reminder_dialog,
#restore_dialog {
  background-color:white; 
  border:1px solid #404040; 
  border-radius:2px; 
  box-shadow:0px 1px 1px darkGray; 
  left:0;
  margin:0 auto; 
  padding:0;
  position:fixed;
  top:20px;  
  width:320px;
  z-index:99999;
}

#restore_dialog {
	width:500px;
}

#session_header,
#reminder_header,
#restore_header {
  /* background-color:#886644; */ 
  /* background-color:#336699;  */
  background-color:white; 
  background-color:#a06040; 
  background-color:#ffd6d6; 
  border-bottom:1px solid gray; 
  /* color:#f0f0f6; */ 
  color:red; 
  color:white; 
  color:black; 
  cursor:move; 
  /* font-weight:bold; */
  padding:0.25em 0.5em;
}

#session_content,
#reminder_content,
#restore_content {
  padding:0 1em 1em 1em;
}

#session_content p,
#reminder_content p,
#restore_content p {
  margin:0.25em 0.25em 0.5em 0.25em;
	padding:0.5em;
}

#session_buttons,
#reminder_buttons,
#restore_buttons {
  text-align:center;
}

#session_buttons button,
#reminder_buttons button,
#restore_buttons button {
  border:2px solid silver; 
  border-radius:3px; 
  font-size:100%; 
  padding:0.5em 1.5em 0.5em 1.5em; 
}

#session_buttons button:hover,
#session_buttons button:focus,
#reminder_buttons button:hover,
#reminder_buttons button:focus,
#restore_buttons button:hover,
#restore_buttons button:focus {
	/* background-color:#f0f0f4; */ 
  background-color:#e0e0e4; 
  border-color:#a0c6f6; 
  text-decoration: underline;
}

#restore_list_div {
	/* overflow-y: auto; */
  /* height:40px;	*/
}

#restore_list_id {
	
}

@media print {
	.dlg {
	  display:none ! important;
	}
}