/* Site-wide CSS for static page layout  */

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: linen;
  margin: 0px;
}

hr {
  color: slategray;
  margin-left: auto;
  margin-right: auto;
}

h1, h2, h3 {
  color: #3333ff;
  font-weight:600;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.img-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 95%;
}

.center-me {
  text-align: center;
}

.alert-text {
  color:red;
  font-weight: bold;
}

input, select, button, textarea {
  max-width: 100%;
}

meter, progress, output {
  max-width: 100%;
}

/* tswcontainer centers and sets the width of page */
div#tswcontainer {
  background-color: linen;
  max-width: 1000px;
  margin: auto;
}

/* Content column is 100% of tswcontainer width  */
div#tswcontent-100 {
  float: right;
  width: 100%;
  color: black;
  background-color: linen;
}


/* Responsive layout CSS for narrow screens */
@media only screen and ( max-width : 629px ) {
  div#tswsidecol {
    float: none;
    width: 100%;
}

div#tswcontent-100 {
    float: none;
    width: 100%;
}
}
/* End of responsive layout CSS */


/* Set padding for main content areas */
div#tswcontproper {
  padding-left: 25px;
  padding-right: 25px;
}


#clear-styles {
  clear: both;
}

/* end of CSS for site-wide page templates */

