/* This is the overall style sheet for bigtallken.com as of Feb. 21, 2005 */


@charset "utf-8";


/* This defines the background color */

body {font-family: "Arial", "Helvetica", "sans-serif"; color: 1e1e1e; background-color: #FFFFFF;}


/* This is the old beige background color #f8f2ec */


/* This is the header styles */

h1, h2, h3, h4, h5, h6 {font-family: "Arial", "Helvetica", "sans-serif"; color:#313131;}


/*
h2 {font-family: "Arial", "Helvetica", "sans-serif"; color: red}
h3 {font-family: "garamond", "georgia", "times new roman", "palatino", "serif"; color: green}
h4 {font-family: "garamond", "georgia", "times new roman", "palatino", "serif"; color: lime}
h5 {font-family: "garamond", "georgia", "times new roman", "palatino", "serif"; color: #333333}
h6 {font-family: "garamond", "georgia", "times new roman", "palatino", "serif"; color: #333333}
*/


/* This is the paragraph style */

p {font-family: Arial, Helvetica, sans-serif; color: #313131}



/* This defines the link fonts */
a:link {color: #9a9797; font-family: "Arial", "Helvetica", "sans-serif"; text-decoration: none;}

a:visited {color: #9a9797; font-family: "Arial", "Helvetica", "sans-serif"; text-decoration: none;}

a:hover {color: #5b5b5b; font-family: "Arial", "Helvetica", "sans-serif"; text-decoration: none;}



/* This is the list style */
li {font-family: "Arial", "Helvetica", "sans-serif"; color:#313131); /* list-style-type: disk */}



/* div {font-family: "Arial", "Helvetica", "sans-serif"; color: blue} */


/* span {font-family: "Arial", "Helvetica", "sans-serif"; color: blue} */


/* style for responsive table layout */

<style>
* {
  box-sizing: border-box;
}

.left {
  background-color: #ffffff;
  padding: 20px;
  float: left;
  width: 20%; /* The width is 20%, by default */
}

.main {
  background-color: #ffffff;
  padding: 20px;
  float: left;
  width: 60%; /* The width is 60%, by default */
}

.right {
  background-color: #ffffff;
  padding: 20px;
  float: left;
  width: 20%; /* The width is 20%, by default */
}

/* Use a media query to add a break point at 800px: */
@media screen and (max-width: 800px) {
  .left, .main, .right {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}
</style>