@charset "utf-8";

@-ms-viewport {
	width: device-width;
}

html, body {
    -webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	-webkit-text-size-adjust: none;
	-ms-content-zooming: none;
	-ms-touch-action: pan-x pan-y;

	-webkit-appearance: none;
	-webkit-user-drag: none;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	
	list-style-type: none;
	counter-reset: css-counter 0;

	overflow-x: hidden;
	overflow-y: auto;
 
	line-height: 180%;
 
	font-family: sans-serif;
	font-size: 20px;
	
	outline: none;

	cursor: default;
}

img {
	display: none;
}

div, td, p {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    box-sizing: border-box;

	-webkit-touch-callout: none;
	-webkit-user-select: none;

	font-size: 20px;
}

ul, ol {
	margin-left: 1em;
}

li:first-child {
	margin-top: -1em;
}

a, a:visited, a:hover {
	color: navy;
}

.left {
	text-align: left !important;
}

.center {
	text-align: center !important;
}

.right {
	text-align: right !important;
}

.bold {
	font-weight: bold !important;
}

.small {
	font-size: 90%;
}

.aqua {
	color: aqua;
}

.hidden {
	display: none;
}

.noCursor {
	cursor: none !important;
}

#div_test {
	position: absolute;
	
	left: 0;
	bottom: 0;
	
	width: 20px;
	height: 20px;
	
	opacity: 0;
}

#div_maximize {
	position: fixed;
	
	right: 10px;
	bottom: 2px;
	
	transition: all 1s ease;

	width: 40px;
	height: 40px;
	
	border-radius: 12px;
	border: none;
	outline: none;

	background-image: url(../artwork/ui/maximize.png);
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: rgba(0, 0, 0, 0.05);
	border-radius: 50%; 

	cursor: pointer;
}

@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

.div_maximize_spin {  
	background-color: yellow !important;
	
    animation-name: rotate; 
    animation-duration: 2s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;	
}

.rockForward {
	transform: rotate(60deg);
}
.rockBack {
	transform: rotate(-60deg);
}

.rockFarForward {
	transform: rotate(180deg);
}
.rockFarBack {
	transform: rotate(-180deg);
}

.div_accordionButton {
	margin-right: 1em;
	margin-top: 1em;
	margin-bottom: 1em;
	
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 0.25em;
	padding-bottom: 0.25em;
	
	transition: all 1s ease;
	
	line-height: 130%;
	
	font-weight: bold;

	color: black;
	border-radius: 8px;
	
	cursor: pointer;
	
	opacity: 0;
}

.div_accordionButton:first-child {
	font-size: 120%;
	
	color: #404040;
}

.div_accordionButton.div_accordionButton_selected:first-child {
	color: silver !important;
}

.div_accordionButton:first-child::after {
	content: "Ask Doctor George";
	
	transition: all 1s ease;
	
	white-space: nowrap;
	
	color: black;
}

.div_accordionButton_selected:first-child::after {
	color: skyblue;
}

.div_accordionButton_over {
	background-color: rgba(0, 0, 0, 0.2) !important;
}

.div_accordionButton_selected {
	color: white !important;
	background-color: #404040 !important;
	box-shadow: 8px 0px 8px 0 #827d7d !important;
}

.div_accordionButton:not(:first-child)::before {
	margin-right: 1em;
	
	content: "\24D8";
	
	font-weight: bold;
}

.div_accordionButton.letter {
	counter-increment: css-counter 1;
}
	
.div_accordionButton.letter::before {
	margin-right: 0.5em !important;
	
	content: counter(css-counter) ". " !important;

	filter: grayscale(100%);
}

.div_accordionContent {
	padding-left: 1em;
	padding-right: 3em;
	padding-bottom: 0.5em;
	
	border-bottom: 1px dotted blue;
	
	display: none;
}

.div_accordionContent p {
	margin-left: 2em;
}

.div_accordionContent:not(:first-child) p:first-child {
	margin: 0;
	
	font-size: 20px;
	
	display: inline;
}

.div_accordionContent:not(.letter):not(".statement"):not(:first-child) p:first-child::before {
	margin-right: 1em;
	
	content: "A:";
	
	font-weight: bold;
}	

.div_accordionContent.letter::before {
	margin-right: 1em;
	
	content: "Q:";
	
	font-weight: bold;
}

.p_dearWriter {
	margin-left: 0 !important;
	margin-top: 2em !important;
}

.p_dearWriter::before {
	margin-right: 1em;
	
	content: "A:";
	
	font-weight: bold;
}

.div_drawing {
	width: 200px;
	height: 190px;
	
	background-image: url(../artwork/portraits/doctor_george_drawing.gif);
	background-repeat: no-repeat;
	background-position: left 2em top;
}

.div_photo {
	width: 200px;
	height: 150px;
	
	background-image: url(../artwork/portraits/doctor_george_lough.jpg);
	background-repeat: no-repeat;
	background-position: left 2em top;
	border-radius: 24px;
}

.p_indented {
	margin-top: -0.5em !important;
	
	text-indent: 1.5em;
}

.p_ps::before {
	margin-right: 1em;
	
	content: "p.s.";
}