/*
---------------------------------------------------------------------------------
	STRIPPED DOWN RESUME TEMPLATE
    html resume

    v0.9: 5/28/09

    design and code by: thingsthatarebrown.com 
                        (matt brown)
---------------------------------------------------------------------------------
*/


.msg { padding: 10px; background: #222; position: relative; }
.msg h1 { color: #fff;  }
.msg a { margin-left: 20px; background: #408814; color: white; padding: 4px 8px; text-decoration: none; }
.msg a:hover { background: #266400; }

/* //-- yui-grids style overrides -- */
body { font-family: Georgia; color: #444; font-size: 85%; }
#inner { padding: 10px 80px; margin: 20px auto; background: #f5f5f5; border: solid #c07500; border-width: 8px 0 2px 0; box-shadow: 0 0 10px rgba(0,0,0,0.2); }
.yui-gf { margin-bottom: 2em; padding-bottom: 2em; border-bottom: 1px solid #ccc; }

/* //-- header, body, footer -- */
#hd { margin: 2.5em 0 3em 0; padding-bottom: 1.5em; border-bottom: 1px solid #ccc }
#hd h2 { text-transform: uppercase; letter-spacing: 2px; }
#bd, #ft { margin-bottom: 2em; }

/* //-- footer -- */
#ft { padding: 1em 0 1em 0; font-size: 92%; border-top: 1px solid #ccc; text-align: center; }
#ft p { margin-bottom: 0; text-align: center;   }

/* //-- core typography and style -- */
#hd h1 { font-size: 31px; letter-spacing: 3px; }
#hd h1 span {text-transform: uppercase; }
h2 { font-size: 152%; margin-bottom:0.3em; }
h3, h4 { font-size: 122%; }
h1, h2, h3, h4 { color: #333; }
p { font-size: 122%; line-height: 22px; padding-right: 3em; }
a { color: #078d89 }
a:hover { text-decoration: none; }
strong { font-weight: bold; }
li { line-height: 24px; border-bottom: 1px solid #ccc; }
ul.heading { color:#c07500; }
p.enlarge, ul.enlarge { font-size: 128%;  line-height: 24px; }
p.enlarge span { color: #000 }
p.enlarge  { padding-right: 6.5em; }
ul.enlarge li { border:none; list-style: circle; }
ul.enlarge { margin-left: 17px; }
.contact-info { margin-top: 7px; }
.first h2 { font-style: italic; color: #c07500; }
.last { border-bottom: 0 }
p.script { margin-top: 1em; font-size:122%; font-style: italic; color:#999; }
.talent li {font-size:122%; }

h3 span { color: #c07500; }

/* //-- section styles -- */

button.pdf { cursor:pointer; margin-right: 10px; font-family: "Georgia"; }
button.pdf, a.pdf { display: block; float: left; border:none; background: #078d89; color: white; padding: 6px 12px 6px 12px; margin-bottom: 6px; text-decoration: none;  }
button.pdf:hover, a.pdf:hover { background: #222; }

.job { position: relative; margin-bottom: 1em; padding-bottom: 1em; border-bottom: 1px solid #ccc; }
.job h4 { position: absolute; top: 0.35em; right: 0; color:#999; font-size: 100%; font-style: italic; }
.job p { margin: 0.75em 0 1em 0; }

.last { border: none; }
.skills-list {  }
.skills-list ul { margin: 0; }
.skills-list li { margin: 3px 0; padding: 3px 0; }
.skills-list li span { font-size: 152%; display: block; margin-bottom: -2px; padding: 0 }
.talent { width: 32%; float: left }
.talent h2 { margin-bottom: 6px; }

#srt-ttab { margin-bottom: 100px; text-align: center;  }
#srt-ttab img.last { margin-top: 20px }

/* --// override to force 1/8th width grids -- */
.yui-gf .yui-u{width:80.2%;}
.yui-gf div.first{width:12.3%;}


.portrait {
    position: absolute;
    border-radius: 50%;
    width: 110px;
    border: solid 2px #c07500;
}

.hidden { display: none; }

/* 

Custom Checkbox 
https://codepen.io/BuddyLReno/pen/boGRPO
*/

.gearx {

    position: relative;
    top: -70px;
    width: 50px;
    max-height: 0px;
    display: block;
    cursor: pointer;
}

#setParams {
    border: dashed 2px #ccc;
    border-radius: 5px;
    padding: 10px;
    background: url(stripeitem.png);
}

#setParams h3 { color: #909090; }


.inputGroup {
  background-color: #fff;
  display: block;
  margin: 10px 0;
  position: relative;
}
.inputGroup label {
  padding: 12px 30px;
  width: 100%;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
}
.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: '';
  background-color: #afa18c;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
          transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}
.inputGroup label:after {
  width: 32px;
  height: 32px;
  content: '';
  border: 2px solid #D1D7DC;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: 2px 3px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}
.inputGroup input:checked ~ label {
  color: #fff;
}
.inputGroup input:checked ~ label:before {
  -webkit-transform: translate(-50%, -50%) scale3d(56, 56, 1);
          transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}
.inputGroup input:checked ~ label:after {
  background-color: #c07500;
  border-color: #fff;
}
.inputGroup input {
  width: 32px;
  height: 32px;
  order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.form {
  max-width: 550px;
  margin: 20px auto;
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
}

body, html {
  background-color: #D1D7DC;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}







@media (min-width: 1400px) {

    #doc2 { max-width: 75em; }   

}

@media (max-width: 1024px) {

    #doc2 { width: 100%; margin:0; }
    .yui-gc .yui-u { width: auto; float: left; }
    
    .portrait { position: relative; margin-left: calc(50% - 75px); margin-bottom: 1.5em;}

}

@media (max-width: 800px) {

    #inner { padding: 20px; } 
    .yui-gc div.first, .yui-gf div.first, .yui-gf .yui-u { width: 100%; }
 /*   #bd h2 { font-weight: bold; } */
    .job h4 { position: relative; }
    
    
}


