
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_83d4f8eb4148.woff")format("woff");}.ff1{font-family:ff1;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_77604629c879.woff")format("woff");}.ff2{font-family:ff2;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url("fonts/font_0002_70c2b885ef08.woff")format("woff");}.ff3{font-family:ff3;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url("fonts/font_0003_2ecc1e8e7a1d.woff")format("woff");}.ff4{font-family:ff4;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url("fonts/font_0004_a05afb253f8f.woff")format("woff");}.ff5{font-family:ff5;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url("fonts/font_0005_09e050fe48d8.woff")format("woff");}.ff6{font-family:ff6;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url("fonts/font_0006_800058c3ef2c.woff")format("woff");}.ff7{font-family:ff7;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url("fonts/font_0007_4fb6f12325b5.woff")format("woff");}.ff8{font-family:ff8;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url("fonts/font_0008_494a53b8f47c.woff")format("woff");}.ff9{font-family:ff9;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url("fonts/font_0009_de903a9e1ba0.woff")format("woff");}.ffa{font-family:ffa;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url("fonts/font_0010_cc479a15a32e.woff")format("woff");}.ffb{font-family:ffb;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url("fonts/font_0011_c236cced0f06.woff")format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url("fonts/font_0012_490e59e6c107.woff")format("woff");}.ffd{font-family:ffd;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-4.422000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.945000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.228000px;}
.ls6{letter-spacing:0.252000px;}
.ls9{letter-spacing:0.399000px;}
.ls2{letter-spacing:0.630000px;}
.lsd{letter-spacing:0.746700px;}
.ls3{letter-spacing:0.899988px;}
.lsb{letter-spacing:1.008900px;}
.ls5{letter-spacing:1.260000px;}
.lsc{letter-spacing:4.058400px;}
.ls4{letter-spacing:28.723562px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-14.427000px;}
.ws5{word-spacing:-14.301000px;}
.ws0{word-spacing:-13.986000px;}
.ws9{word-spacing:-13.167000px;}
.wsb{word-spacing:-13.053000px;}
.ws3{word-spacing:-13.041000px;}
.wsa{word-spacing:-12.939000px;}
.ws4{word-spacing:-8.231765px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:22.677806px;}
.ws7{word-spacing:24.557400px;}
.ws6{word-spacing:146.050051px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._8{width:1.636200px;}
._6{width:3.237300px;}
._4{width:4.441500px;}
._3{width:6.174000px;}
._a{width:7.774200px;}
._c{width:8.875800px;}
._5{width:10.189800px;}
._f{width:11.371500px;}
._12{width:12.744900px;}
._10{width:14.231700px;}
._19{width:15.387300px;}
._13{width:16.587000px;}
._9{width:17.933400px;}
._7{width:19.094400px;}
._17{width:20.621700px;}
._22{width:22.480200px;}
._b{width:23.862600px;}
._16{width:25.115400px;}
._15{width:26.233200px;}
._14{width:27.260100px;}
._11{width:28.387800px;}
._23{width:29.553300px;}
._1c{width:36.149400px;}
._1e{width:37.794728px;}
._1f{width:40.434695px;}
._24{width:41.946300px;}
._20{width:43.026662px;}
._e{width:77.587538px;}
._d{width:89.162919px;}
._1b{width:114.924060px;}
._21{width:140.274736px;}
._18{width:159.224504px;}
._1d{width:492.748093px;}
._1a{width:917.002397px;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(204,78,18);}
.fc1{color:rgb(96,96,91);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.998800px;}
.fs8{font-size:44.999400px;}
.fs9{font-size:47.999400px;}
.fs3{font-size:48.000000px;}
.fsd{font-size:50.999400px;}
.fs0{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fsa{font-size:66.000600px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:35.972230px;}
.y4b{bottom:47.962888px;}
.y4a{bottom:59.953545px;}
.y2{bottom:67.597501px;}
.y49{bottom:72.028200px;}
.y1{bottom:84.097501px;}
.y191{bottom:86.317050px;}
.ybf{bottom:86.318100px;}
.ye6{bottom:86.319375px;}
.y110{bottom:86.323575px;}
.y7a{bottom:86.493675px;}
.y45{bottom:88.441969px;}
.ya5{bottom:91.334079px;}
.yd0{bottom:94.563750px;}
.y16b{bottom:96.103350px;}
.y44{bottom:101.962200px;}
.y190{bottom:102.814275px;}
.ya4{bottom:104.855510px;}
.ybe{bottom:105.791400px;}
.ye5{bottom:105.794250px;}
.y10f{bottom:105.798450px;}
.y79{bottom:105.968550px;}
.y1c6{bottom:106.303200px;}
.y16a{bottom:115.661700px;}
.y13e{bottom:116.508300px;}
.ya3{bottom:118.376941px;}
.y18f{bottom:119.312925px;}
.y1c5{bottom:122.800425px;}
.ybd{bottom:125.349750px;}
.ye4{bottom:125.352600px;}
.y10e{bottom:125.356800px;}
.y78{bottom:125.526900px;}
.ya2{bottom:131.813173px;}
.y169{bottom:135.136575px;}
.y18e{bottom:135.810150px;}
.y13d{bottom:135.981600px;}
.y1c4{bottom:139.297650px;}
.ybc{bottom:144.824625px;}
.ye3{bottom:144.825900px;}
.y10d{bottom:144.830100px;}
.y77{bottom:145.000200px;}
.ya1{bottom:145.334604px;}
.y18d{bottom:152.307375px;}
.y43{bottom:153.668850px;}
.y168{bottom:154.609875px;}
.y13c{bottom:155.454900px;}
.y1c3{bottom:155.796300px;}
.ya0{bottom:158.854835px;}
.ybb{bottom:164.297925px;}
.ye2{bottom:164.300775px;}
.y10c{bottom:164.304975px;}
.y76{bottom:164.475075px;}
.y18c{bottom:168.804600px;}
.y1c2{bottom:172.293525px;}
.y9f{bottom:172.376266px;}
.y42{bottom:173.142150px;}
.y167{bottom:174.168225px;}
.y13b{bottom:175.014825px;}
.yba{bottom:183.856275px;}
.ye1{bottom:183.859125px;}
.y10b{bottom:183.863325px;}
.y75{bottom:183.948375px;}
.y18b{bottom:185.303250px;}
.y9e{bottom:185.812498px;}
.y1c1{bottom:188.790750px;}
.y41{bottom:192.700500px;}
.y166{bottom:193.643100px;}
.y13a{bottom:194.488125px;}
.y9d{bottom:199.333929px;}
.y18a{bottom:201.800475px;}
.ye0{bottom:203.332425px;}
.y10a{bottom:203.336625px;}
.y74{bottom:203.506725px;}
.y1c0{bottom:205.287975px;}
.y40{bottom:212.175375px;}
.y9c{bottom:212.855360px;}
.yb9{bottom:213.025275px;}
.y12e{bottom:213.030750px;}
.y165{bottom:213.116400px;}
.y139{bottom:213.961425px;}
.y189{bottom:218.297700px;}
.y1bf{bottom:221.786625px;}
.ydf{bottom:222.807300px;}
.y109{bottom:222.811500px;}
.y73{bottom:222.981600px;}
.y9b{bottom:226.376791px;}
.y3f{bottom:231.648675px;}
.y164{bottom:232.674750px;}
.y138{bottom:233.521350px;}
.y188{bottom:234.794925px;}
.y1be{bottom:238.283850px;}
.y9a{bottom:239.811823px;}
.yde{bottom:242.280600px;}
.y108{bottom:242.284800px;}
.y72{bottom:242.454900px;}
.y3e{bottom:251.121975px;}
.y187{bottom:251.293575px;}
.y163{bottom:252.149625px;}
.y137{bottom:252.994650px;}
.y1bd{bottom:254.781075px;}
.y99{bottom:257.670000px;}
.ydd{bottom:261.838950px;}
.y107{bottom:261.843150px;}
.y12d{bottom:261.928200px;}
.y71{bottom:262.013250px;}
.y186{bottom:267.790800px;}
.y3d{bottom:270.681900px;}
.y1bc{bottom:271.278300px;}
.y162{bottom:271.622925px;}
.y136{bottom:272.467950px;}
.y98{bottom:276.292500px;}
.ydc{bottom:281.313825px;}
.y106{bottom:281.318025px;}
.y12c{bottom:281.403075px;}
.y70{bottom:281.488125px;}
.y185{bottom:284.288025px;}
.yb8{bottom:287.688000px;}
.y1bb{bottom:287.776950px;}
.y3c{bottom:290.155200px;}
.y161{bottom:291.096225px;}
.y135{bottom:291.942825px;}
.y184{bottom:300.785250px;}
.ydb{bottom:300.787125px;}
.y105{bottom:300.791325px;}
.y12b{bottom:300.876375px;}
.y6f{bottom:300.961425px;}
.y1ba{bottom:304.274175px;}
.yb7{bottom:307.162500px;}
.y3b{bottom:309.628500px;}
.y160{bottom:310.656150px;}
.y134{bottom:311.501175px;}
.y15{bottom:317.272501px;}
.y183{bottom:317.283900px;}
.yda{bottom:320.345475px;}
.y104{bottom:320.349675px;}
.y12a{bottom:320.434725px;}
.y6e{bottom:320.519775px;}
.y1b9{bottom:320.771400px;}
.yb6{bottom:326.635500px;}
.y15f{bottom:330.129450px;}
.y133{bottom:330.974475px;}
.y97{bottom:330.979200px;}
.y182{bottom:333.781125px;}
.y1b8{bottom:337.268625px;}
.y3a{bottom:338.881500px;}
.yd9{bottom:339.820350px;}
.y103{bottom:339.824550px;}
.y129{bottom:339.909600px;}
.y6d{bottom:339.994650px;}
.yb5{bottom:346.195500px;}
.y15e{bottom:349.602750px;}
.y181{bottom:350.278350px;}
.y132{bottom:350.449350px;}
.y96{bottom:350.452500px;}
.y1b7{bottom:353.767275px;}
.yd8{bottom:359.293650px;}
.y102{bottom:359.297850px;}
.y128{bottom:359.382900px;}
.y6c{bottom:359.467950px;}
.y180{bottom:366.861075px;}
.y15d{bottom:369.162675px;}
.y131{bottom:370.007700px;}
.y95{bottom:370.010850px;}
.y1b6{bottom:370.264500px;}
.yd7{bottom:378.852000px;}
.y101{bottom:378.856200px;}
.y127{bottom:378.941250px;}
.y6b{bottom:379.026300px;}
.y14{bottom:381.622501px;}
.y17f{bottom:383.358300px;}
.yb4{bottom:384.038475px;}
.y1b5{bottom:386.761725px;}
.y15c{bottom:388.635975px;}
.y130{bottom:389.481000px;}
.y94{bottom:389.485725px;}
.yd6{bottom:398.326875px;}
.y100{bottom:398.331075px;}
.y126{bottom:398.416125px;}
.y6a{bottom:398.501175px;}
.y17e{bottom:399.855525px;}
.y1b4{bottom:403.258950px;}
.yb3{bottom:403.513350px;}
.y32{bottom:405.553800px;}
.y15b{bottom:408.109275px;}
.y93{bottom:408.959025px;}
.y17d{bottom:416.354175px;}
.yd5{bottom:417.800175px;}
.yff{bottom:417.804375px;}
.y125{bottom:417.889425px;}
.y69{bottom:417.974475px;}
.y12f{bottom:418.734000px;}
.y1b3{bottom:419.757600px;}
.y31{bottom:420.519900px;}
.yb2{bottom:423.071700px;}
.y15a{bottom:427.669200px;}
.y92{bottom:428.517375px;}
.y17c{bottom:432.851400px;}
.y30{bottom:435.487350px;}
.y1b2{bottom:436.254825px;}
.yd4{bottom:437.273475px;}
.yfe{bottom:437.277675px;}
.y124{bottom:437.362725px;}
.y68{bottom:437.447775px;}
.yb1{bottom:442.545000px;}
.y159{bottom:447.142500px;}
.y91{bottom:447.992250px;}
.y13{bottom:448.903500px;}
.y17b{bottom:449.348625px;}
.y2f{bottom:450.538500px;}
.y1b1{bottom:452.752050px;}
.yd3{bottom:456.833400px;}
.yfd{bottom:456.837600px;}
.y123{bottom:456.922650px;}
.y67{bottom:457.007700px;}
.y2e{bottom:465.505950px;}
.y17a{bottom:465.845850px;}
.y158{bottom:466.615800px;}
.y90{bottom:467.465550px;}
.y1b0{bottom:469.249275px;}
.yb0{bottom:471.798000px;}
.yd2{bottom:476.306700px;}
.yfc{bottom:476.310900px;}
.y122{bottom:476.395950px;}
.y66{bottom:476.481000px;}
.y2d{bottom:480.558450px;}
.y179{bottom:482.344500px;}
.y1af{bottom:485.747925px;}
.y157{bottom:486.175725px;}
.y8f{bottom:487.023900px;}
.y2c{bottom:495.524550px;}
.yd1{bottom:495.780000px;}
.yfb{bottom:495.784200px;}
.y121{bottom:495.869250px;}
.y65{bottom:495.954300px;}
.y178{bottom:498.841725px;}
.y1ae{bottom:502.245150px;}
.y156{bottom:505.649025px;}
.y8e{bottom:506.498775px;}
.y12{bottom:510.322501px;}
.y2b{bottom:510.492000px;}
.y177{bottom:515.338950px;}
.yfa{bottom:515.344125px;}
.y120{bottom:515.429175px;}
.y64{bottom:515.514225px;}
.y1ad{bottom:518.742375px;}
.y155{bottom:525.122325px;}
.y2a{bottom:525.544500px;}
.yaf{bottom:525.799425px;}
.y8d{bottom:525.972075px;}
.y176{bottom:531.836175px;}
.yf9{bottom:534.817425px;}
.y11f{bottom:534.902475px;}
.y63{bottom:534.987525px;}
.y1ac{bottom:535.325100px;}
.y29{bottom:540.510600px;}
.y154{bottom:544.597200px;}
.yae{bottom:545.274300px;}
.y8c{bottom:545.445375px;}
.y175{bottom:548.334825px;}
.y1ab{bottom:551.822325px;}
.yf8{bottom:554.290725px;}
.y11e{bottom:554.375775px;}
.y62{bottom:554.460825px;}
.y28{bottom:555.563100px;}
.ye7{bottom:560.409000px;}
.y153{bottom:564.155550px;}
.yad{bottom:564.747600px;}
.y174{bottom:564.832050px;}
.y8b{bottom:565.005300px;}
.y1aa{bottom:568.319550px;}
.y27{bottom:570.529200px;}
.yf7{bottom:573.850650px;}
.y11d{bottom:573.935700px;}
.y61{bottom:574.020750px;}
.y11{bottom:577.603500px;}
.y173{bottom:581.329275px;}
.y152{bottom:583.628850px;}
.yac{bottom:584.305950px;}
.y8a{bottom:584.478600px;}
.y1a9{bottom:584.818200px;}
.y26{bottom:585.496650px;}
.yf6{bottom:593.323950px;}
.y11c{bottom:593.409000px;}
.y60{bottom:593.494050px;}
.y172{bottom:597.826500px;}
.y25{bottom:600.549150px;}
.y1a8{bottom:601.315425px;}
.y151{bottom:603.103725px;}
.yab{bottom:603.780825px;}
.y89{bottom:603.951900px;}
.y10{bottom:611.953501px;}
.yf5{bottom:612.797250px;}
.y11b{bottom:612.882300px;}
.y5f{bottom:612.967350px;}
.y24{bottom:615.515250px;}
.y1a7{bottom:617.812650px;}
.y150{bottom:622.662075px;}
.yaa{bottom:623.254125px;}
.y88{bottom:623.511825px;}
.yf{bottom:626.953501px;}
.y171{bottom:627.079500px;}
.y23{bottom:630.567750px;}
.y39{bottom:630.568106px;}
.yf4{bottom:632.357175px;}
.y5e{bottom:632.442225px;}
.y1a6{bottom:634.309875px;}
.ye{bottom:641.953500px;}
.y14f{bottom:642.135375px;}
.ya9{bottom:642.812475px;}
.y87{bottom:642.985125px;}
.y38{bottom:644.004338px;}
.y22{bottom:645.533850px;}
.y1a5{bottom:650.808525px;}
.yf3{bottom:651.830475px;}
.y11a{bottom:651.915525px;}
.y5d{bottom:652.000575px;}
.y37{bottom:657.525769px;}
.y21{bottom:660.501300px;}
.y14e{bottom:661.610250px;}
.ya8{bottom:662.287350px;}
.y86{bottom:662.458425px;}
.y1a4{bottom:667.305750px;}
.y36{bottom:671.046000px;}
.yf2{bottom:671.303775px;}
.y119{bottom:671.388825px;}
.y5c{bottom:671.473875px;}
.y20{bottom:675.553800px;}
.y170{bottom:675.978000px;}
.y14d{bottom:681.168600px;}
.ya7{bottom:681.760650px;}
.y85{bottom:682.018350px;}
.y1a3{bottom:683.802975px;}
.y35{bottom:684.567000px;}
.y1f{bottom:690.519900px;}
.yf1{bottom:690.778650px;}
.y118{bottom:690.863700px;}
.y5b{bottom:690.948750px;}
.y1a2{bottom:700.300200px;}
.y14c{bottom:700.641900px;}
.ya6{bottom:701.319000px;}
.y84{bottom:701.491650px;}
.y16f{bottom:705.231000px;}
.y1e{bottom:705.572400px;}
.y34{bottom:708.549769px;}
.yf0{bottom:710.337000px;}
.y117{bottom:710.422050px;}
.y5a{bottom:710.507100px;}
.y1a1{bottom:716.798850px;}
.y14b{bottom:720.116775px;}
.y1d{bottom:720.538500px;}
.y83{bottom:720.964950px;}
.y33{bottom:722.070000px;}
.yd{bottom:723.741002px;}
.yef{bottom:729.810300px;}
.y116{bottom:729.895350px;}
.y59{bottom:729.980400px;}
.y1a0{bottom:733.296075px;}
.y1c{bottom:735.505500px;}
.y14a{bottom:739.675125px;}
.y82{bottom:740.439825px;}
.yee{bottom:749.285175px;}
.y115{bottom:749.370225px;}
.y58{bottom:749.455275px;}
.y19f{bottom:749.793300px;}
.ycf{bottom:753.024916px;}
.yc{bottom:754.130994px;}
.y149{bottom:759.148425px;}
.y81{bottom:759.998175px;}
.y16e{bottom:761.443275px;}
.y19e{bottom:766.290525px;}
.yce{bottom:766.546347px;}
.yed{bottom:768.843525px;}
.y114{bottom:768.928575px;}
.y57{bottom:769.013625px;}
.yb{bottom:772.191006px;}
.y16d{bottom:777.940500px;}
.y148{bottom:778.623300px;}
.y1b{bottom:779.130000px;}
.y80{bottom:779.471475px;}
.ycd{bottom:779.982579px;}
.y19d{bottom:782.789175px;}
.yec{bottom:788.316825px;}
.y113{bottom:788.401875px;}
.y56{bottom:788.486925px;}
.ya{bottom:790.715993px;}
.ycc{bottom:793.504010px;}
.y147{bottom:798.096600px;}
.y7f{bottom:798.946350px;}
.y19c{bottom:799.286400px;}
.y1a{bottom:806.853000px;}
.ycb{bottom:807.025441px;}
.y16c{bottom:807.193500px;}
.yeb{bottom:807.791700px;}
.y112{bottom:807.876750px;}
.y55{bottom:807.961800px;}
.y19b{bottom:815.783625px;}
.y146{bottom:817.654950px;}
.y7e{bottom:818.504700px;}
.yca{bottom:820.546872px;}
.yea{bottom:827.350050px;}
.y54{bottom:827.520150px;}
.y19a{bottom:832.280850px;}
.yc9{bottom:833.983104px;}
.y19{bottom:835.343100px;}
.y111{bottom:837.129225px;}
.y145{bottom:837.129825px;}
.y7d{bottom:837.978000px;}
.y9{bottom:843.615002px;}
.ye9{bottom:846.823350px;}
.y53{bottom:846.993450px;}
.yc8{bottom:847.503335px;}
.y199{bottom:848.779500px;}
.y144{bottom:856.603125px;}
.y18{bottom:859.409100px;}
.yc7{bottom:861.024766px;}
.y198{bottom:865.276725px;}
.y52{bottom:866.468325px;}
.y7c{bottom:867.231000px;}
.yc6{bottom:874.546197px;}
.ye8{bottom:876.077400px;}
.y143{bottom:876.161475px;}
.y197{bottom:881.773950px;}
.y17{bottom:883.389000px;}
.y51{bottom:885.941625px;}
.yc5{bottom:887.982429px;}
.y142{bottom:895.636350px;}
.y196{bottom:898.271175px;}
.yc4{bottom:901.503860px;}
.y50{bottom:905.499975px;}
.y8{bottom:907.279504px;}
.y195{bottom:914.769825px;}
.yc3{bottom:915.025291px;}
.y141{bottom:915.109650px;}
.y16{bottom:919.701000px;}
.y4f{bottom:924.974850px;}
.yc2{bottom:928.545522px;}
.y194{bottom:931.267050px;}
.y140{bottom:934.668000px;}
.y7{bottom:938.779498px;}
.y4e{bottom:944.448150px;}
.yc1{bottom:946.318500px;}
.y193{bottom:947.764275px;}
.y48{bottom:955.757609px;}
.y13f{bottom:963.921000px;}
.y4d{bottom:964.006500px;}
.y192{bottom:964.261500px;}
.yc0{bottom:965.026500px;}
.y47{bottom:969.193305px;}
.y6{bottom:970.279498px;}
.y46{bottom:982.714500px;}
.y7b{bottom:1004.995500px;}
.y5{bottom:1035.546001px;}
.y4{bottom:1135.539002px;}
.y3{bottom:1165.122003px;}
.h16{height:30.029142px;}
.hf{height:31.499580px;}
.h15{height:32.174571px;}
.h17{height:32.444567px;}
.h11{height:34.319571px;}
.h14{height:34.607567px;}
.h5{height:36.726562px;}
.he{height:38.610000px;}
.h10{height:38.934000px;}
.h19{height:40.686000px;}
.h18{height:40.755000px;}
.h1a{height:40.812000px;}
.h2{height:41.317383px;}
.hb{height:43.260000px;}
.h8{height:45.000000px;}
.h13{height:45.108000px;}
.hd{height:45.423000px;}
.h7{height:45.908203px;}
.h12{height:47.586433px;}
.h4{height:55.089844px;}
.hc{height:60.564000px;}
.h3{height:68.862305px;}
.h6{height:82.634766px;}
.h9{height:1054.488000px;}
.ha{height:1054.500000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w3{width:739.500000px;}
.w2{width:739.842000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:89.971650px;}
.xa{left:96.009300px;}
.x12{left:105.022500px;}
.xd{left:106.639350px;}
.x7{left:108.000000px;}
.xf{left:124.157458px;}
.x4{left:145.650000px;}
.xe{left:152.815500px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x2{left:233.576990px;}
.x1{left:293.590494px;}
.xb{left:317.110136px;}
.xc{left:329.100386px;}
.x9{left:358.015500px;}
.x10{left:405.295944px;}
.x11{left:417.286194px;}
.x8{left:514.743000px;}
@media print{
.v1{vertical-align:-3.930667pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.840000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.202667pt;}
.ls6{letter-spacing:0.224000pt;}
.ls9{letter-spacing:0.354667pt;}
.ls2{letter-spacing:0.560000pt;}
.lsd{letter-spacing:0.663733pt;}
.ls3{letter-spacing:0.799989pt;}
.lsb{letter-spacing:0.896800pt;}
.ls5{letter-spacing:1.120000pt;}
.lsc{letter-spacing:3.607467pt;}
.ls4{letter-spacing:25.532055pt;}
.ws8{word-spacing:-12.824000pt;}
.ws5{word-spacing:-12.712000pt;}
.ws0{word-spacing:-12.432000pt;}
.ws9{word-spacing:-11.704000pt;}
.wsb{word-spacing:-11.602667pt;}
.ws3{word-spacing:-11.592000pt;}
.wsa{word-spacing:-11.501333pt;}
.ws4{word-spacing:-7.317124pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:20.158050pt;}
.ws7{word-spacing:21.828800pt;}
.ws6{word-spacing:129.822267pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._8{width:1.454400pt;}
._6{width:2.877600pt;}
._4{width:3.948000pt;}
._3{width:5.488000pt;}
._a{width:6.910400pt;}
._c{width:7.889600pt;}
._5{width:9.057600pt;}
._f{width:10.108000pt;}
._12{width:11.328800pt;}
._10{width:12.650400pt;}
._19{width:13.677600pt;}
._13{width:14.744000pt;}
._9{width:15.940800pt;}
._7{width:16.972800pt;}
._17{width:18.330400pt;}
._22{width:19.982400pt;}
._b{width:21.211200pt;}
._16{width:22.324800pt;}
._15{width:23.318400pt;}
._14{width:24.231200pt;}
._11{width:25.233600pt;}
._23{width:26.269600pt;}
._1c{width:32.132800pt;}
._1e{width:33.595313pt;}
._1f{width:35.941951pt;}
._24{width:37.285600pt;}
._20{width:38.245922pt;}
._e{width:68.966701pt;}
._d{width:79.255928pt;}
._1b{width:102.154720pt;}
._21{width:124.688654pt;}
._18{width:141.532893pt;}
._1d{width:437.998305pt;}
._1a{width:815.113242pt;}
.fsb{font-size:37.332267pt;}
.fs8{font-size:39.999467pt;}
.fs9{font-size:42.666133pt;}
.fs3{font-size:42.666667pt;}
.fsd{font-size:45.332800pt;}
.fs0{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fsa{font-size:58.667200pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:31.975316pt;}
.y4b{bottom:42.633678pt;}
.y4a{bottom:53.292040pt;}
.y2{bottom:60.086668pt;}
.y49{bottom:64.025067pt;}
.y1{bottom:74.753335pt;}
.y191{bottom:76.726267pt;}
.ybf{bottom:76.727200pt;}
.ye6{bottom:76.728333pt;}
.y110{bottom:76.732067pt;}
.y7a{bottom:76.883267pt;}
.y45{bottom:78.615084pt;}
.ya5{bottom:81.185848pt;}
.yd0{bottom:84.056667pt;}
.y16b{bottom:85.425200pt;}
.y44{bottom:90.633067pt;}
.y190{bottom:91.390467pt;}
.ya4{bottom:93.204898pt;}
.ybe{bottom:94.036800pt;}
.ye5{bottom:94.039333pt;}
.y10f{bottom:94.043067pt;}
.y79{bottom:94.194267pt;}
.y1c6{bottom:94.491733pt;}
.y16a{bottom:102.810400pt;}
.y13e{bottom:103.562933pt;}
.ya3{bottom:105.223948pt;}
.y18f{bottom:106.055933pt;}
.y1c5{bottom:109.155933pt;}
.ybd{bottom:111.422000pt;}
.ye4{bottom:111.424533pt;}
.y10e{bottom:111.428267pt;}
.y78{bottom:111.579467pt;}
.ya2{bottom:117.167265pt;}
.y169{bottom:120.121400pt;}
.y18e{bottom:120.720133pt;}
.y13d{bottom:120.872533pt;}
.y1c4{bottom:123.820133pt;}
.ybc{bottom:128.733000pt;}
.ye3{bottom:128.734133pt;}
.y10d{bottom:128.737867pt;}
.y77{bottom:128.889067pt;}
.ya1{bottom:129.186315pt;}
.y18d{bottom:135.384333pt;}
.y43{bottom:136.594533pt;}
.y168{bottom:137.431000pt;}
.y13c{bottom:138.182133pt;}
.y1c3{bottom:138.485600pt;}
.ya0{bottom:141.204298pt;}
.ybb{bottom:146.042600pt;}
.ye2{bottom:146.045133pt;}
.y10c{bottom:146.048867pt;}
.y76{bottom:146.200067pt;}
.y18c{bottom:150.048533pt;}
.y1c2{bottom:153.149800pt;}
.y9f{bottom:153.223348pt;}
.y42{bottom:153.904133pt;}
.y167{bottom:154.816200pt;}
.y13b{bottom:155.568733pt;}
.yba{bottom:163.427800pt;}
.ye1{bottom:163.430333pt;}
.y10b{bottom:163.434067pt;}
.y75{bottom:163.509667pt;}
.y18b{bottom:164.714000pt;}
.y9e{bottom:165.166665pt;}
.y1c1{bottom:167.814000pt;}
.y41{bottom:171.289333pt;}
.y166{bottom:172.127200pt;}
.y13a{bottom:172.878333pt;}
.y9d{bottom:177.185715pt;}
.y18a{bottom:179.378200pt;}
.ye0{bottom:180.739933pt;}
.y10a{bottom:180.743667pt;}
.y74{bottom:180.894867pt;}
.y1c0{bottom:182.478200pt;}
.y40{bottom:188.600333pt;}
.y9c{bottom:189.204765pt;}
.yb9{bottom:189.355800pt;}
.y12e{bottom:189.360667pt;}
.y165{bottom:189.436800pt;}
.y139{bottom:190.187933pt;}
.y189{bottom:194.042400pt;}
.y1bf{bottom:197.143667pt;}
.ydf{bottom:198.050933pt;}
.y109{bottom:198.054667pt;}
.y73{bottom:198.205867pt;}
.y9b{bottom:201.223814pt;}
.y3f{bottom:205.909933pt;}
.y164{bottom:206.822000pt;}
.y138{bottom:207.574533pt;}
.y188{bottom:208.706600pt;}
.y1be{bottom:211.807867pt;}
.y9a{bottom:213.166065pt;}
.yde{bottom:215.360533pt;}
.y108{bottom:215.364267pt;}
.y72{bottom:215.515467pt;}
.y3e{bottom:223.219533pt;}
.y187{bottom:223.372067pt;}
.y163{bottom:224.133000pt;}
.y137{bottom:224.884133pt;}
.y1bd{bottom:226.472067pt;}
.y99{bottom:229.040000pt;}
.ydd{bottom:232.745733pt;}
.y107{bottom:232.749467pt;}
.y12d{bottom:232.825067pt;}
.y71{bottom:232.900667pt;}
.y186{bottom:238.036267pt;}
.y3d{bottom:240.606133pt;}
.y1bc{bottom:241.136267pt;}
.y162{bottom:241.442600pt;}
.y136{bottom:242.193733pt;}
.y98{bottom:245.593333pt;}
.ydc{bottom:250.056733pt;}
.y106{bottom:250.060467pt;}
.y12c{bottom:250.136067pt;}
.y70{bottom:250.211667pt;}
.y185{bottom:252.700467pt;}
.yb8{bottom:255.722667pt;}
.y1bb{bottom:255.801733pt;}
.y3c{bottom:257.915733pt;}
.y161{bottom:258.752200pt;}
.y135{bottom:259.504733pt;}
.y184{bottom:267.364667pt;}
.ydb{bottom:267.366333pt;}
.y105{bottom:267.370067pt;}
.y12b{bottom:267.445667pt;}
.y6f{bottom:267.521267pt;}
.y1ba{bottom:270.465933pt;}
.yb7{bottom:273.033333pt;}
.y3b{bottom:275.225333pt;}
.y160{bottom:276.138800pt;}
.y134{bottom:276.889933pt;}
.y15{bottom:282.020001pt;}
.y183{bottom:282.030133pt;}
.yda{bottom:284.751533pt;}
.y104{bottom:284.755267pt;}
.y12a{bottom:284.830867pt;}
.y6e{bottom:284.906467pt;}
.y1b9{bottom:285.130133pt;}
.yb6{bottom:290.342667pt;}
.y15f{bottom:293.448400pt;}
.y133{bottom:294.199533pt;}
.y97{bottom:294.203733pt;}
.y182{bottom:296.694333pt;}
.y1b8{bottom:299.794333pt;}
.y3a{bottom:301.228000pt;}
.yd9{bottom:302.062533pt;}
.y103{bottom:302.066267pt;}
.y129{bottom:302.141867pt;}
.y6d{bottom:302.217467pt;}
.yb5{bottom:307.729333pt;}
.y15e{bottom:310.758000pt;}
.y181{bottom:311.358533pt;}
.y132{bottom:311.510533pt;}
.y96{bottom:311.513333pt;}
.y1b7{bottom:314.459800pt;}
.yd8{bottom:319.372133pt;}
.y102{bottom:319.375867pt;}
.y128{bottom:319.451467pt;}
.y6c{bottom:319.527067pt;}
.y180{bottom:326.098733pt;}
.y15d{bottom:328.144600pt;}
.y131{bottom:328.895733pt;}
.y95{bottom:328.898533pt;}
.y1b6{bottom:329.124000pt;}
.yd7{bottom:336.757333pt;}
.y101{bottom:336.761067pt;}
.y127{bottom:336.836667pt;}
.y6b{bottom:336.912267pt;}
.y14{bottom:339.220001pt;}
.y17f{bottom:340.762933pt;}
.yb4{bottom:341.367533pt;}
.y1b5{bottom:343.788200pt;}
.y15c{bottom:345.454200pt;}
.y130{bottom:346.205333pt;}
.y94{bottom:346.209533pt;}
.yd6{bottom:354.068333pt;}
.y100{bottom:354.072067pt;}
.y126{bottom:354.147667pt;}
.y6a{bottom:354.223267pt;}
.y17e{bottom:355.427133pt;}
.y1b4{bottom:358.452400pt;}
.yb3{bottom:358.678533pt;}
.y32{bottom:360.492267pt;}
.y15b{bottom:362.763800pt;}
.y93{bottom:363.519133pt;}
.y17d{bottom:370.092600pt;}
.yd5{bottom:371.377933pt;}
.yff{bottom:371.381667pt;}
.y125{bottom:371.457267pt;}
.y69{bottom:371.532867pt;}
.y12f{bottom:372.208000pt;}
.y1b3{bottom:373.117867pt;}
.y31{bottom:373.795467pt;}
.yb2{bottom:376.063733pt;}
.y15a{bottom:380.150400pt;}
.y92{bottom:380.904333pt;}
.y17c{bottom:384.756800pt;}
.y30{bottom:387.099867pt;}
.y1b2{bottom:387.782067pt;}
.yd4{bottom:388.687533pt;}
.yfe{bottom:388.691267pt;}
.y124{bottom:388.766867pt;}
.y68{bottom:388.842467pt;}
.yb1{bottom:393.373333pt;}
.y159{bottom:397.460000pt;}
.y91{bottom:398.215333pt;}
.y13{bottom:399.025333pt;}
.y17b{bottom:399.421000pt;}
.y2f{bottom:400.478667pt;}
.y1b1{bottom:402.446267pt;}
.yd3{bottom:406.074133pt;}
.yfd{bottom:406.077867pt;}
.y123{bottom:406.153467pt;}
.y67{bottom:406.229067pt;}
.y2e{bottom:413.783067pt;}
.y17a{bottom:414.085200pt;}
.y158{bottom:414.769600pt;}
.y90{bottom:415.524933pt;}
.y1b0{bottom:417.110467pt;}
.yb0{bottom:419.376000pt;}
.yd2{bottom:423.383733pt;}
.yfc{bottom:423.387467pt;}
.y122{bottom:423.463067pt;}
.y66{bottom:423.538667pt;}
.y2d{bottom:427.163067pt;}
.y179{bottom:428.750667pt;}
.y1af{bottom:431.775933pt;}
.y157{bottom:432.156200pt;}
.y8f{bottom:432.910133pt;}
.y2c{bottom:440.466267pt;}
.yd1{bottom:440.693333pt;}
.yfb{bottom:440.697067pt;}
.y121{bottom:440.772667pt;}
.y65{bottom:440.848267pt;}
.y178{bottom:443.414867pt;}
.y1ae{bottom:446.440133pt;}
.y156{bottom:449.465800pt;}
.y8e{bottom:450.221133pt;}
.y12{bottom:453.620001pt;}
.y2b{bottom:453.770667pt;}
.y177{bottom:458.079067pt;}
.yfa{bottom:458.083667pt;}
.y120{bottom:458.159267pt;}
.y64{bottom:458.234867pt;}
.y1ad{bottom:461.104333pt;}
.y155{bottom:466.775400pt;}
.y2a{bottom:467.150667pt;}
.yaf{bottom:467.377267pt;}
.y8d{bottom:467.530733pt;}
.y176{bottom:472.743267pt;}
.yf9{bottom:475.393267pt;}
.y11f{bottom:475.468867pt;}
.y63{bottom:475.544467pt;}
.y1ac{bottom:475.844533pt;}
.y29{bottom:480.453867pt;}
.y154{bottom:484.086400pt;}
.yae{bottom:484.688267pt;}
.y8c{bottom:484.840333pt;}
.y175{bottom:487.408733pt;}
.y1ab{bottom:490.508733pt;}
.yf8{bottom:492.702867pt;}
.y11e{bottom:492.778467pt;}
.y62{bottom:492.854067pt;}
.y28{bottom:493.833867pt;}
.ye7{bottom:498.141333pt;}
.y153{bottom:501.471600pt;}
.yad{bottom:501.997867pt;}
.y174{bottom:502.072933pt;}
.y8b{bottom:502.226933pt;}
.y1aa{bottom:505.172933pt;}
.y27{bottom:507.137067pt;}
.yf7{bottom:510.089467pt;}
.y11d{bottom:510.165067pt;}
.y61{bottom:510.240667pt;}
.y11{bottom:513.425333pt;}
.y173{bottom:516.737133pt;}
.y152{bottom:518.781200pt;}
.yac{bottom:519.383067pt;}
.y8a{bottom:519.536533pt;}
.y1a9{bottom:519.838400pt;}
.y26{bottom:520.441467pt;}
.yf6{bottom:527.399067pt;}
.y11c{bottom:527.474667pt;}
.y60{bottom:527.550267pt;}
.y172{bottom:531.401333pt;}
.y25{bottom:533.821467pt;}
.y1a8{bottom:534.502600pt;}
.y151{bottom:536.092200pt;}
.yab{bottom:536.694067pt;}
.y89{bottom:536.846133pt;}
.y10{bottom:543.958668pt;}
.yf5{bottom:544.708667pt;}
.y11b{bottom:544.784267pt;}
.y5f{bottom:544.859867pt;}
.y24{bottom:547.124667pt;}
.y1a7{bottom:549.166800pt;}
.y150{bottom:553.477400pt;}
.yaa{bottom:554.003667pt;}
.y88{bottom:554.232733pt;}
.yf{bottom:557.292001pt;}
.y171{bottom:557.404000pt;}
.y23{bottom:560.504667pt;}
.y39{bottom:560.504983pt;}
.yf4{bottom:562.095267pt;}
.y5e{bottom:562.170867pt;}
.y1a6{bottom:563.831000pt;}
.ye{bottom:570.625333pt;}
.y14f{bottom:570.787000pt;}
.ya9{bottom:571.388867pt;}
.y87{bottom:571.542333pt;}
.y38{bottom:572.448300pt;}
.y22{bottom:573.807867pt;}
.y1a5{bottom:578.496467pt;}
.yf3{bottom:579.404867pt;}
.y11a{bottom:579.480467pt;}
.y5d{bottom:579.556067pt;}
.y37{bottom:584.467350pt;}
.y21{bottom:587.112267pt;}
.y14e{bottom:588.098000pt;}
.ya8{bottom:588.699867pt;}
.y86{bottom:588.851933pt;}
.y1a4{bottom:593.160667pt;}
.y36{bottom:596.485333pt;}
.yf2{bottom:596.714467pt;}
.y119{bottom:596.790067pt;}
.y5c{bottom:596.865667pt;}
.y20{bottom:600.492267pt;}
.y170{bottom:600.869333pt;}
.y14d{bottom:605.483200pt;}
.ya7{bottom:606.009467pt;}
.y85{bottom:606.238533pt;}
.y1a3{bottom:607.824867pt;}
.y35{bottom:608.504000pt;}
.y1f{bottom:613.795467pt;}
.yf1{bottom:614.025467pt;}
.y118{bottom:614.101067pt;}
.y5b{bottom:614.176667pt;}
.y1a2{bottom:622.489067pt;}
.y14c{bottom:622.792800pt;}
.ya6{bottom:623.394667pt;}
.y84{bottom:623.548133pt;}
.y16f{bottom:626.872000pt;}
.y1e{bottom:627.175467pt;}
.y34{bottom:629.822017pt;}
.yf0{bottom:631.410667pt;}
.y117{bottom:631.486267pt;}
.y5a{bottom:631.561867pt;}
.y1a1{bottom:637.154533pt;}
.y14b{bottom:640.103800pt;}
.y1d{bottom:640.478667pt;}
.y83{bottom:640.857733pt;}
.y33{bottom:641.840000pt;}
.yd{bottom:643.325335pt;}
.yef{bottom:648.720267pt;}
.y116{bottom:648.795867pt;}
.y59{bottom:648.871467pt;}
.y1a0{bottom:651.818733pt;}
.y1c{bottom:653.782667pt;}
.y14a{bottom:657.489000pt;}
.y82{bottom:658.168733pt;}
.yee{bottom:666.031267pt;}
.y115{bottom:666.106867pt;}
.y58{bottom:666.182467pt;}
.y19f{bottom:666.482933pt;}
.ycf{bottom:669.355481pt;}
.yc{bottom:670.338661pt;}
.y149{bottom:674.798600pt;}
.y81{bottom:675.553933pt;}
.y16e{bottom:676.838467pt;}
.y19e{bottom:681.147133pt;}
.yce{bottom:681.374531pt;}
.yed{bottom:683.416467pt;}
.y114{bottom:683.492067pt;}
.y57{bottom:683.567667pt;}
.yb{bottom:686.392006pt;}
.y16d{bottom:691.502667pt;}
.y148{bottom:692.109600pt;}
.y1b{bottom:692.560000pt;}
.y80{bottom:692.863533pt;}
.ycd{bottom:693.317848pt;}
.y19d{bottom:695.812600pt;}
.yec{bottom:700.726067pt;}
.y113{bottom:700.801667pt;}
.y56{bottom:700.877267pt;}
.ya{bottom:702.858660pt;}
.ycc{bottom:705.336898pt;}
.y147{bottom:709.419200pt;}
.y7f{bottom:710.174533pt;}
.y19c{bottom:710.476800pt;}
.y1a{bottom:717.202667pt;}
.ycb{bottom:717.355948pt;}
.y16c{bottom:717.505333pt;}
.yeb{bottom:718.037067pt;}
.y112{bottom:718.112667pt;}
.y55{bottom:718.188267pt;}
.y19b{bottom:725.141000pt;}
.y146{bottom:726.804400pt;}
.y7e{bottom:727.559733pt;}
.yca{bottom:729.374997pt;}
.yea{bottom:735.422267pt;}
.y54{bottom:735.573467pt;}
.y19a{bottom:739.805200pt;}
.yc9{bottom:741.318315pt;}
.y19{bottom:742.527200pt;}
.y111{bottom:744.114867pt;}
.y145{bottom:744.115400pt;}
.y7d{bottom:744.869333pt;}
.y9{bottom:749.880002pt;}
.ye9{bottom:752.731867pt;}
.y53{bottom:752.883067pt;}
.yc8{bottom:753.336298pt;}
.y199{bottom:754.470667pt;}
.y144{bottom:761.425000pt;}
.y18{bottom:763.919200pt;}
.yc7{bottom:765.355348pt;}
.y198{bottom:769.134867pt;}
.y52{bottom:770.194067pt;}
.y7c{bottom:770.872000pt;}
.yc6{bottom:777.374397pt;}
.ye8{bottom:778.735467pt;}
.y143{bottom:778.810200pt;}
.y197{bottom:783.799067pt;}
.y17{bottom:785.234667pt;}
.y51{bottom:787.503667pt;}
.yc5{bottom:789.317715pt;}
.y142{bottom:796.121200pt;}
.y196{bottom:798.463267pt;}
.yc4{bottom:801.336765pt;}
.y50{bottom:804.888867pt;}
.y8{bottom:806.470670pt;}
.y195{bottom:813.128733pt;}
.yc3{bottom:813.355814pt;}
.y141{bottom:813.430800pt;}
.y16{bottom:817.512000pt;}
.y4f{bottom:822.199867pt;}
.yc2{bottom:825.373797pt;}
.y194{bottom:827.792933pt;}
.y140{bottom:830.816000pt;}
.y7{bottom:834.470665pt;}
.y4e{bottom:839.509467pt;}
.yc1{bottom:841.172000pt;}
.y193{bottom:842.457133pt;}
.y48{bottom:849.562319pt;}
.y13f{bottom:856.818667pt;}
.y4d{bottom:856.894667pt;}
.y192{bottom:857.121333pt;}
.yc0{bottom:857.801333pt;}
.y47{bottom:861.505160pt;}
.y6{bottom:862.470665pt;}
.y46{bottom:873.524000pt;}
.y7b{bottom:893.329333pt;}
.y5{bottom:920.485335pt;}
.y4{bottom:1009.368002pt;}
.y3{bottom:1035.664002pt;}
.h16{height:26.692571pt;}
.hf{height:27.999627pt;}
.h15{height:28.599619pt;}
.h17{height:28.839615pt;}
.h11{height:30.506285pt;}
.h14{height:30.762282pt;}
.h5{height:32.645833pt;}
.he{height:34.320000pt;}
.h10{height:34.608000pt;}
.h19{height:36.165333pt;}
.h18{height:36.226667pt;}
.h1a{height:36.277333pt;}
.h2{height:36.726562pt;}
.hb{height:38.453333pt;}
.h8{height:40.000000pt;}
.h13{height:40.096000pt;}
.hd{height:40.376000pt;}
.h7{height:40.807292pt;}
.h12{height:42.299051pt;}
.h4{height:48.968750pt;}
.hc{height:53.834667pt;}
.h3{height:61.210938pt;}
.h6{height:73.453125pt;}
.h9{height:937.322667pt;}
.ha{height:937.333333pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w3{width:657.333333pt;}
.w2{width:657.637333pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:79.974800pt;}
.xa{left:85.341600pt;}
.x12{left:93.353333pt;}
.xd{left:94.790533pt;}
.x7{left:96.000000pt;}
.xf{left:110.362185pt;}
.x4{left:129.466667pt;}
.xe{left:135.836000pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x2{left:207.623991pt;}
.x1{left:260.969328pt;}
.xb{left:281.875677pt;}
.xc{left:292.533677pt;}
.x9{left:318.236000pt;}
.x10{left:360.263061pt;}
.x11{left:370.921061pt;}
.x8{left:457.549333pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
