/** customization css file **/

/* include the base RTD theme */
@import 'theme.css';

.wy-nav-content {
	width= 100%;
	max-width: 1200px;
}

.bg-red {
	background-color: lightcoral
}

.bg-green {
	background-color: lightgreen
}

.bg-purple {
	background-color: plum
}

.bg-gray {
	background-color: lightgray
}

.bg-pink {
	background-color: hotpink
}

.bg-seagreen {
	background-color: seagreen
}

.bg-yellow {
	background-color: yellow
}

.bg-bisque {
	background-color: bisque
}

.bg-brown {
	background-color: burlywood
}

/* svg {
    width: 100%;
		max-width: 1200px;
		height: auto;
} */

/* https://rackerlabs.github.io/docs-rackspace/tools/rtd-tables.html */
/* override table width restrictions */
@media screen and (min-width: 767px) {

   .wy-table-responsive table td {
      /* !important prevents the common CSS stylesheets from overriding
         this as on RTD they are loaded after this stylesheet */
      white-space: normal !important;
   }

   .wy-table-responsive {
      overflow: visible !important;
   }
}

/* For having math labels to the right of the equation: https: //stackoverflow.com/questions/14110790/numbered-math-equations-in-restructuredtext/52509369#52509369*/
.math {
	text-align: left;
}

.eqno {
	float: right;
}






