html, body {
	height: 100%;
}
body {
	font-size: 0.8em;
	font-family: Arial, Helvertica, 'Liberation Sans', sans-serif;
    background: #444;
    
    padding: 0px;
    margin: 0px;
    text-align: center;
}

body.WithPopup { 
  position:fixed;
  width: 100%;
}
body.WithVScroll { 
  overflow-y:scroll;
}

#topNav {
	display: none;
}

#page {
    background: #fff;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    min-height: 100%;
}

#header {
    display: none;
}

.PopupDialog {
    position: fixed;
    text-align: left;
    left: 50%;
    background: #8CC63F;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
    box-model: border-box;
    padding: 0em 0.5em 0.5em 0.5em;
    xborder-radius: 5px;
}
.PopupDialog .Title {
    margin: 0px;
    line-height: 1em;
    font-size: 1em;
    padding: 0.8em 0.5em;
    color: #FFF;
}
.PopupDialog .Header {
    width: 100%;
    position: relative;
}
.PopupDialog .Header .CloseButton {
    position: absolute;
    top: 0px;
    height: 2.6em;
    right: 0.3em;
    background: #f00;
    display: block;
    cursor: pointer;
}
.PopupDialog .Header .CloseButton span {
    display: none;
}
.PopupDialog .Header .CloseButton:before {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 18px;
    font-size: 18px;
    content: "\f05c";
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 0px;
    color: rgba(255, 255, 255, 0.7);
}
.PopupDialog .Header .CloseButton:hover:before {
    color: rgba(255, 255, 255, 1);
}
.PopupDialog .Header .CloseButton:active:before {
    color: rgba(255, 100, 100, 1);
}
.PopupDialog .Body {
    background: #FFF;
}
.PopupDialog .LoadingIndicator {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.PopupDialog .LoadingWrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.PopupDialog .LoadingWrapper img {
    padding: 1em;
}
.PopupDialog .LoadingWrapper span {
    font-weight: bold;
    line-height: 1.2em;
}
.PopupOverlay {
    opacity: 0.2;
    background: #000;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.PatientInfo {
    padding-bottom: 2em;
    text-align: center;
}
.PatientInfo span,
.PatientInfo a {
    display: block;
}
.PatientInfo a {
    text-decoration: none;
}
.PatientInfo .PhotoWrapper {
    width: 80px;
    height: 80px;
    margin: 1.5em 0em 1.5em 0em;
    border-radius: 42px;
    border-top-left-radius: 42px;
    border-top-right-radius: 42px;
    border-bottom-right-radius: 42px;
    border-bottom-left-radius: 42px;
    border: solid 2px #fff;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    -moz-border-radius: 42px 0;
    display: inline-block;
}
.PatientInfo .PhotoWrapper img {
	width: 80px;
	margin-top: -10px;
}
.PatientInfo .Name {
    font-weight: bold;
    font-size: 1.1em;
}
.PatientInfo .Description {
    opacity: 0.6;
}

.MyPatientPage {
    text-align: center;
    padding: 2em;
}
.MyPatientPage .PatientList {
    width: 38em;
    margin: 0px auto;
    text-align: left;
    overflow: auto;
}
.MyPatientPage .Footer {
	width: 38em;
    margin: 0px auto;
}
.MyPatientPage .PatientInfo {
    width: 19em;
    float: left;
}
.MyPatientPage .PatientInfo a {
    height: 14em;
    color: #000;
}

.MyPatientPage .PatientInfo a:hover {
    background: #8CC63F;
    color: #fff;
}







