/* Default css file for jemdoc. */
/* Theme: IITB Clean Minimal */

/*
 * IITB CSE palette
 *   darkBlue      #004f9f
 *   lightBlue     #7db9f5
 *   lightestBlue  #e8f5ff
 *   darkestGrey   #252424
 *   darkGrey      #585858
 *   grey          #b8c0c7
 *   lightGrey     #e1e7ec
 *   lightBrightGrey #fafafa
 *   body text     #4f4f4f
 */

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
	 			 Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
				 Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
				 "Segoe UI Symbol";
	padding: 0;
	margin: 0;
	color: #4f4f4f;
}


div#main-container {
	min-height: 100vh;
	background: #ffffff;
	margin: auto;
}

div#mobile-header {
	display: none;
}

div#layout {
	width: 100vw;
	min-height: 100vh;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
}

div#layout-menu-container {
	width: 100%;
}

div#layout-menu {
	padding: 0;
	height: auto;
	min-width: unset;
	width: 100%;
	position: static;
	overflow: visible;
	background: #ffffff;
	border-right: none;
	border-bottom: 1px solid #e1e7ec;
	box-shadow: none;
}

div#menu-inner {
	max-width: 850px;
	margin: 0 auto;
	padding: 0 35px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

#layout-menu a {
	padding: 0px;
	line-height: 2;
}


div#layout-content-container {
	width: 100%;
	min-height: calc(100vh - 50px);
	margin-left: 0;
	background: none;
	text-align: left;
	display: block;
}

div#layout-content{
	min-height: calc(100vh - 240px);
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 35px;
	padding-right: 35px;
	min-width: 200px;
	max-width: 850px;
	margin: auto;
}


tt {
	background: #f5f5f5;
	color: #585858;
}

pre, tt {
	padding: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 87.5%;
	font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
	border-radius: 5px;
	line-height: 1.5;
	overflow: scroll;
}

a, a > tt {
	color: #004f9f;
	text-decoration: none;
}

a:hover, a:hover > tt{
	color: #003a75;
}

#layout-menu a:link, #layout-menu a:visited {
	color: #585858;
	text-decoration: none;
}
#layout-menu a:hover {
	color: #004f9f;
	text-decoration: none;
}

div.menu-category {
	display: inline-block;
	margin-top: 0;
	padding: 0 16px;
	font-size: 15px;
	line-height: 48px;
	border-top: none;
	font-weight: 600;
	color: #585858;
}

div.menu-item {
	display: inline-block;
	font-size: 16px;
	padding: 0;
	line-height: 1;
}

div.menu-item a {
	display: inline-block;
	padding: 20px 18px;
	letter-spacing: 0.04em;
	font-weight: 400;
	color: #585858;
	border-bottom: 2px solid transparent;
	transition: border-color 0.15s, color 0.15s;
}

div.menu-item a:hover {
	border-bottom: 2px solid #004f9f;
	color: #004f9f;
}

div.menu-item a.current {
	color: #004f9f;
	font-weight: 600;
	border-bottom: 2px solid #004f9f;
}

div#toptitle {
	padding-bottom: 0.2em;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #e1e7ec;
}

/* Reduce space if we begin the page with a title. */
div#toptitle + h2, div#toptitle + h3 {
	margin-top: -0.7em;
}

div#subtitle {
	margin-top: 0.0em;
	margin-bottom: 0.0em;
	padding-top: 0em;
	padding-bottom: 0.1em;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}


h1, h2, h3 {
	padding-bottom: 0.2em;
	line-height: 1.25;
	padding-top: 0.5em;
	border-bottom: 0.7px solid #e1e7ec;
	font-weight: 400;
	color: #252424;
}

h1 {
	font-size: 32px;
}

h2 {
	padding-top: 0.8em;
	margin-bottom: 16px;
	font-size: 24px;
}

h2 + h3 {
	padding-top: 4px;
}

h3 {
	font-size: 20px;
	padding-top: 0px;
	margin-bottom: 0px;
	border-bottom: none;
}

p {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 0.0em;
	margin-bottom: 0.8em;
	padding: 0;
	text-align: justify;
}

pre {
	padding: 0;
	margin: 0;
}



div#footer-container{
}

div#footer {
	font-size: small;
	color: #b8c0c7;
	min-width: 200px;
	max-width: 850px;
	margin: auto;
	padding-top: 25px;
	padding-bottom: 25px;
	padding-left: 35px;
	padding-right: 35px;
}

div#footer a {
	color: #585858;
}

div#footer a:hover {
	color: #004f9f;
}

div#footer-text {
	line-height: 30px;
}

ul, ol, dl {
	margin-top: 0.2em;
	padding-top: 0;
	margin-bottom: 0.8em;
}

dt {
	margin-top: 0.5em;
	margin-bottom: 0;
}

dl {
	margin-left: 20px;
}

dd {
	color: #4f4f4f;
}

dd > *:first-child {
	margin-top: 0;
}

ul {
	list-style-position: outside;
	list-style-type: square;
}

p + ul, p + ol {
	margin-top: -0.5em;
}

li ul, li ol {
	margin-top: -0.3em;
}

ol {
	list-style-position: outside;
	list-style-type: decimal;
}

li p, dd p {
	margin-bottom: 0.3em;
}


ol ol {
	list-style-type: lower-alpha;
}

ol ol ol {
	list-style-type: lower-roman;
}

div.codeblock {
}

p + div.codeblock {
	margin-top: 0.6em;
}

div.codeblock, div.infoblock {
	margin-right: 0%;
	margin-top: 1.2em;
	margin-bottom: 1.3em;
}

div.blocktitle {
	color: #004f9f;
	font-size: 20px;
	line-height: 2;
}

div.blockcontent {
	padding: 10px;
}

div.infoblock > div.blockcontent {
	background: #e8f5ff;
	border: 1px solid #7db9f5;
	border-radius: 9px;
	color: #585858;
}

div.blockcontent p + ul, div.blockcontent p + ol {
	margin-top: 0.4em;
}

div.infoblock p {
	margin-bottom: 0em;
}

div.infoblock li p, div.infoblock dd p {
	margin-bottom: 0.5em;
}

div.infoblock p + p {
	margin-top: 0.8em;
}

div.codeblock > div.blockcontent {
	border: none;
	border-radius: 10px;
	background: #f5f5f5;
}

span.pycommand {
	color: #000070;
}

span.statement {
	color: #859900;
}
span.builtin {
	color: #004f9f;
}
span.special {
	color: #7db9f5;
}
span.operator {
	color: #b58900;
}
span.error {
	color: #dc322f;
}
span.comment, span.comment > *, span.string, span.string > * {
	color: #b8c0c7;
}

@media print {
	#layout-menu {
		display: none;
	}

}

#fwtitle {
	margin: 2px;
}

#fwtitle #toptitle {
	padding-left: 0.5em;
	margin-bottom: 0.5em;
}

#layout-content h1:first-child, #layout-content h2:first-child, #layout-content h3:first-child {
	margin-top: -0.7em;
}

div#toptitle h1, #layout-content div#toptitle h1 {
	margin-bottom: 0.0em;
	padding-bottom: 0.1em;
	padding-top: 0;
	margin-top: 0em;
	border-bottom: none;
}


img {
	padding: 0px;
	margin-right: 20px;
	margin-bottom: 10px;
	border-radius: 10px;
}


table {
	border-collapse: collapse;
}



td {
	padding-left: 0.5em;
	padding-right: 0.5em;
	text-align: center;
	border: 1px solid #e1e7ec;
	line-height: 2;
}

table + table {
	margin-top: 1em;
}

#countries tr.r1 {
    font-weight: 600;
}

#countries tr:nth-child(even) {background-color: #fafafa;}



div#text-img-container {
	overflow: hidden;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
}

div#img-container {
	float: left;
	padding-top: 0px;
	text-align: center;
}

div#text-container {
	overflow: hidden;
	padding-top: 0px;
}

div#text-container h1{
	border-bottom: none;
	margin: 0px;
	padding: 0px;
	padding-top: 15px;
}

div#text-container h2{
	border-bottom: none;
	margin: 0px;
	padding: 0px;
	padding-top: 15px;
}

div#text-container h3{
	padding-top: 0px;
	margin-top: 0px;
}

div#text-container h1 + h3{
	padding-top: 0px;
	margin-top: 0px;
}

div#text-container h3 + h1{
	padding: 0px;
	margin: 0px;
}

div#text-container h2 + h3{
	padding-top: 0px;
	margin-top: 0px;
}

div#text-container p{
}


div#main{
	margin: auto;
	height:45px;
	display:inline-block;
	vertical-align: middle;
}

.openbtn {
  font-size: 0;
  background: none;
  color: none;
  border: none;
}

.openbtn:hover {
}



div#layout-menu-container .closebtn {
	font-size: 0;
}

div#layout-menu-container .closebtn:hover {
	background: #c5d5e5;
	color: #004f9f;
}


/* Width to collapse top menu into hamburger overlay */
@media screen and (max-width: 1200px) {
	div#mobile-header {
		display: flex;
		align-items: center;
		height: 45px;
		background: #ffffff;
		border-bottom: 1px solid #e1e7ec;
		padding-left: 10px;
	}

	div#layout-menu-container {
		width: 0;
		height: 0;
	}

	div#layout-menu {
		display: block;
		flex-direction: column;
		position: fixed;
		top: 45px;
		left: 0;
		height: calc(100vh - 45px);
		min-width: 0px;
		width: 0px;
		overflow: hidden;
		padding-top: 20px;
		padding-bottom: 25px;
		transition: 0.5s;
		box-shadow: 8px 0px 10px 0 rgba(0, 0, 0, 0.3);
		border: none;
		z-index: 10;
	}

	div#menu-inner {
		display: block;
		padding: 0;
	}

	div.menu-category {
		display: block;
		line-height: 2;
		padding-left: 25px;
		padding-right: 25px;
	}

	div.menu-item {
		display: block;
		line-height: 2;
		padding-left: 25px;
		padding-right: 25px;
	}

	div#layout-content-container {
		transition: margin-left .5s;
		margin-left: 0px;
		width: 100%;
	}

	.openbtn {
	  font-size: 26px;
	  cursor: pointer;
	  background: none;
	  color: #585858;
	  padding: 8px 9px 8px 9px;
	  border: none;
	  width: 45px;
	}

	.openbtn:hover {
		background-color: #f5f5f5;
	}

	div#layout-menu-container .closebtn {
	  position: absolute;
	  top: 0;
	  right: 25px;
	  font-size: 36px;
	  border: none;
	  padding-left: 10px;
	  padding-right: 10px;
	  padding-top: 1.1px;
	  padding-bottom: 5.3px;
	  line-height: 1;
	  margin-right: -25px;
	  background: #e1e7ec;
	  color: #585858;
	}

	div#layout-menu-container .closebtn:hover {
		background: #c5d5e5;
		color: #004f9f;
	}
}

/* Width to center image */
@media screen and (max-width: 700px) {
	img{
		margin-right: 0px;
	}

	p{
		text-align: left;
	}

	div#layout-content{
		padding-left:   20px;
		padding-right:  20px;
		padding-top:    16px;
		padding-bottom: 15px;
		min-height: calc(100vh - 190px);
	}

	div#footer-container{
	}

	div#footer {
		padding-left:   20px;
		padding-right:  20px;
		padding-top:    16px;
		padding-bottom: 15px;
	}

	div#img-container {
		float: none;
		padding-top: 0px;
		text-align: center;
	}

	div#text-container h1{
		text-align: center;
	}

	div#text-container h2{
		text-align: center;
	}

	div#text-container h3{
		text-align: center;
	}
}




/* members */
div#member-container{
	text-align: center;
}
div#member{
	display: inline-block;
	vertical-align: top;
	width: 150px;
	text-align: center;
	margin-bottom: 15px;
	margin-right: 10px;
}

div#member img{
	width: 150px;
	margin: 0px;
	padding: 0px;
}

div#member p{
	text-align: center;
	margin: 0px;
	padding: 0px;
}


/* Group Outings */
.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  -ms-flex: 23%; /* IE10 */
  flex: 23%;
  max-width: 23%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
