
/* 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_fe017daf5f08.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971000;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_6e6dd8d5c0fd.woff")format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_548e064a1978.woff")format("woff");}.ff3{font-family:ff3;line-height:0.666000;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_4f92eb28bad1.woff")format("woff");}.ff4{font-family:ff4;line-height:0.929000;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_d38f4d2f19ef.woff")format("woff");}.ff5{font-family:ff5;line-height:0.710000;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_745e144e55ae.woff")format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_512644a7eb9b.woff")format("woff");}.ff7{font-family:ff7;line-height:0.969053;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_6e6dd8d5c0fd.woff")format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_548e064a1978.woff")format("woff");}.ff9{font-family:ff9;line-height:0.666000;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_89d8207f27f9.woff")format("woff");}.ffa{font-family:ffa;line-height:0.982000;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_95f1edd3a356.woff")format("woff");}.ffb{font-family:ffb;line-height:0.625000;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_5f6191765c6b.woff")format("woff");}.ffc{font-family:ffc;line-height:0.969053;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_90ae551fe19b.woff")format("woff");}.ffd{font-family:ffd;line-height:0.918000;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:ffe;src:url("fonts/font_0013_8dabe73de29a.woff")format("woff");}.ffe{font-family:ffe;line-height:1.075000;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:fff;src:url("fonts/font_0014_7fccaf109c78.woff")format("woff");}.fff{font-family:fff;line-height:0.710000;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:ff10;src:url("fonts/font_0015_3032f41b0cb2.woff")format("woff");}.ff10{font-family:ff10;line-height:0.871000;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:ff11;src:url("fonts/font_0016_aa6b4ecab1ad.woff")format("woff");}.ff11{font-family:ff11;line-height:0.910156;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:ff12;src:url("fonts/font_0017_677001bf9603.woff")format("woff");}.ff12{font-family:ff12;line-height:0.625000;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:ff13;src:url("fonts/font_0018_495c9406b4fc.woff")format("woff");}.ff13{font-family:ff13;line-height:0.958000;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:ff14;src:url("fonts/font_0019_65d0c755ffaf.woff")format("woff");}.ff14{font-family:ff14;line-height:1.172852;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:ff15;src:url("fonts/font_0020_d3e411763fa9.woff")format("woff");}.ff15{font-family:ff15;line-height:1.040000;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:ff16;src:url("fonts/font_0021_741d241f1711.woff")format("woff");}.ff16{font-family:ff16;line-height:0.625000;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:ff17;src:url("fonts/font_0022_72700210dd08.woff")format("woff");}.ff17{font-family:ff17;line-height:0.871000;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:ff18;src:url("fonts/font_0023_2dd9514b5592.woff")format("woff");}.ff18{font-family:ff18;line-height:0.625000;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);}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-0.475200px;}
.ls1d{letter-spacing:-0.414600px;}
.ls10{letter-spacing:-0.331200px;}
.ls2e{letter-spacing:-0.291000px;}
.ls22{letter-spacing:-0.224400px;}
.lsc{letter-spacing:-0.184200px;}
.ls11{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.135600px;}
.ls2d{letter-spacing:-0.048960px;}
.lsd{letter-spacing:-0.025920px;}
.ls23{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000117px;}
.lsa{letter-spacing:0.028800px;}
.ls18{letter-spacing:0.103800px;}
.ls16{letter-spacing:0.112200px;}
.ls8{letter-spacing:0.115167px;}
.lsb{letter-spacing:0.115200px;}
.ls1e{letter-spacing:0.132506px;}
.ls2f{letter-spacing:0.180018px;}
.ls17{letter-spacing:0.227400px;}
.ls29{letter-spacing:0.230400px;}
.ls19{letter-spacing:0.244800px;}
.ls3{letter-spacing:0.287280px;}
.ls2c{letter-spacing:0.296400px;}
.lse{letter-spacing:0.305400px;}
.ls27{letter-spacing:0.310800px;}
.ls1b{letter-spacing:0.331200px;}
.ls5{letter-spacing:0.342821px;}
.ls28{letter-spacing:0.345600px;}
.ls1{letter-spacing:0.383040px;}
.ls2{letter-spacing:0.670320px;}
.ls4{letter-spacing:1.463213px;}
.ls1c{letter-spacing:2.591996px;}
.ls21{letter-spacing:29.801299px;}
.ls20{letter-spacing:31.241286px;}
.ls2a{letter-spacing:31.961257px;}
.ls25{letter-spacing:34.841278px;}
.ls26{letter-spacing:36.281264px;}
.ls24{letter-spacing:48.521269px;}
.ls2b{letter-spacing:56.441268px;}
.ls1a{letter-spacing:59.321288px;}
.ls12{letter-spacing:64.002702px;}
.ls14{letter-spacing:134.201267px;}
.ls15{letter-spacing:134.921279px;}
.ls13{letter-spacing:135.641249px;}
.ls1f{letter-spacing:160.841277px;}
.ls6{letter-spacing:847.560010px;}
.ls7{letter-spacing:847.596052px;}
.lsf{letter-spacing:847.619993px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-66.240000px;}
.ws9{word-spacing:-59.760000px;}
.ws10{word-spacing:-15.883200px;}
.wsf{word-spacing:-15.552000px;}
.ws19{word-spacing:-14.970240px;}
.ws18{word-spacing:-14.921280px;}
.ws15{word-spacing:-13.593600px;}
.ws14{word-spacing:-13.558800px;}
.ws7{word-spacing:-13.553400px;}
.ws17{word-spacing:-13.544400px;}
.wsd{word-spacing:-13.492800px;}
.ws16{word-spacing:-13.478400px;}
.wsb{word-spacing:-13.475400px;}
.wsa{word-spacing:-13.360200px;}
.wsc{word-spacing:-13.351800px;}
.ws3{word-spacing:-13.276800px;}
.ws2{word-spacing:-13.248000px;}
.ws13{word-spacing:-13.239360px;}
.ws5{word-spacing:-13.222080px;}
.ws8{word-spacing:-13.104000px;}
.ws4{word-spacing:-13.063800px;}
.ws12{word-spacing:-13.023600px;}
.ws1a{word-spacing:-12.957000px;}
.ws6{word-spacing:-12.916800px;}
.ws11{word-spacing:-12.850560px;}
.ws1b{word-spacing:-12.772800px;}
.ws1{word-spacing:-0.095760px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-11.652617px;}
._17{margin-left:-10.450041px;}
._1{margin-left:-7.128000px;}
._0{margin-left:-5.832000px;}
._2{margin-left:-4.536000px;}
._8{margin-left:-2.782080px;}
._5{margin-left:-1.202400px;}
._3{width:1.054080px;}
._4{width:2.662869px;}
._18{width:4.173120px;}
._7{width:5.508000px;}
._6{width:6.756480px;}
._19{width:7.776000px;}
._14{width:8.789760px;}
._13{width:10.098720px;}
._10{width:11.592000px;}
._b{width:14.639040px;}
._f{width:15.765120px;}
._11{width:16.891200px;}
._12{width:18.282240px;}
._1d{width:19.938240px;}
._9{width:21.991680px;}
._a{width:22.991904px;}
._1c{width:24.773760px;}
._1b{width:25.871985px;}
._1a{width:26.921295px;}
._e{width:29.170551px;}
._15{width:30.180485px;}
._c{width:31.265280px;}
._d{width:32.613984px;}
._1f{width:34.928640px;}
._1e{width:36.100800px;}
.fc8{color:rgb(192,44,45);}
.fc6{color:rgb(209,219,74);}
.fc5{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(102,102,102);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.fs4{font-size:131.759995px;}
.fs2{font-size:144.000000px;}
.fs5{font-size:167.759995px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yac{bottom:2.700005px;}
.y106{bottom:3.239960px;}
.yf9{bottom:3.239983px;}
.y100{bottom:3.239994px;}
.yf2{bottom:3.240005px;}
.y103{bottom:3.240051px;}
.y104{bottom:3.960022px;}
.yee{bottom:8.279984px;}
.y51{bottom:8.460022px;}
.y17{bottom:8.999405px;}
.yfb{bottom:13.139992px;}
.yf7{bottom:13.140015px;}
.yab{bottom:16.200027px;}
.yf0{bottom:23.039978px;}
.yfc{bottom:23.040001px;}
.y1af{bottom:23.040024px;}
.y12{bottom:31.499680px;}
.yf1{bottom:42.839996px;}
.y1ab{bottom:42.884949px;}
.y30{bottom:56.159998px;}
.y2{bottom:56.160074px;}
.y1a8{bottom:62.640015px;}
.y50{bottom:74.160004px;}
.y1{bottom:84.996002px;}
.y1a7{bottom:88.199982px;}
.y4f{bottom:97.020035px;}
.ydb{bottom:118.295998px;}
.y1c2{bottom:118.835999px;}
.y43{bottom:126.755997px;}
.y14c{bottom:129.275997px;}
.y4e{bottom:131.759995px;}
.y18f{bottom:132.155994px;}
.yb6{bottom:132.516003px;}
.y98{bottom:133.596005px;}
.y101{bottom:137.016003px;}
.y174{bottom:137.556004px;}
.yda{bottom:141.155994px;}
.y1c1{bottom:141.516003px;}
.y97{bottom:153.390003px;}
.y4d{bottom:154.439987px;}
.yb5{bottom:155.370003px;}
.y12b{bottom:159.149998px;}
.y173{bottom:160.230000px;}
.y42{bottom:161.669998px;}
.yd9{bottom:163.830002px;}
.y14b{bottom:164.009995px;}
.y1c0{bottom:164.370003px;}
.y18e{bottom:165.810000px;}
.yff{bottom:173.370003px;}
.yb4{bottom:178.049995px;}
.y12a{bottom:182.009995px;}
.yd8{bottom:186.689999px;}
.y1bf{bottom:187.049995px;}
.y96{bottom:188.129997px;}
.y18d{bottom:189.029995px;}
.y4c{bottom:189.360031px;}
.y172{bottom:194.969994px;}
.y41{bottom:196.410004px;}
.yb3{bottom:200.910004px;}
.y129{bottom:204.690010px;}
.y95{bottom:207.929993px;}
.y1be{bottom:209.910004px;}
.y18c{bottom:212.250000px;}
.y171{bottom:217.830002px;}
.y14a{bottom:219.809990px;}
.yd7{bottom:221.429993px;}
.yb2{bottom:223.589996px;}
.y4b{bottom:224.099991px;}
.y128{bottom:227.549995px;}
.y94{bottom:227.730011px;}
.yfe{bottom:229.530006px;}
.y40{bottom:231.150009px;}
.y170{bottom:240.509995px;}
.yd6{bottom:244.110008px;}
.y18b{bottom:244.290000px;}
.y1bd{bottom:244.650009px;}
.yb1{bottom:246.450005px;}
.yd{bottom:248.969955px;}
.ye{bottom:248.969994px;}
.y127{bottom:250.230011px;}
.y149{bottom:257.429993px;}
.y4a{bottom:258.884995px;}
.y93{bottom:262.469994px;}
.y16f{bottom:263.370003px;}
.yfd{bottom:265.709999px;}
.y3f{bottom:265.889992px;}
.yd5{bottom:266.969994px;}
.y1bc{bottom:267.330002px;}
.y18a{bottom:267.509995px;}
.yb0{bottom:269.129997px;}
.y18{bottom:272.910004px;}
.y148{bottom:280.110008px;}
.y49{bottom:281.564987px;}
.y92{bottom:282.269989px;}
.y126{bottom:285.150009px;}
.y16e{bottom:286.049995px;}
.yd4{bottom:289.650009px;}
.y1bb{bottom:290.190010px;}
.y189{bottom:290.730011px;}
.yaf{bottom:291.990005px;}
.y3e{bottom:300.629997px;}
.yaa{bottom:300.630020px;}
.yfa{bottom:302.070007px;}
.y91{bottom:302.250000px;}
.y147{bottom:302.969994px;}
.y48{bottom:304.424973px;}
.y125{bottom:307.830002px;}
.y16d{bottom:308.910004px;}
.y2f{bottom:310.890056px;}
.yd3{bottom:312.509995px;}
.y1ba{bottom:312.870003px;}
.y188{bottom:313.769989px;}
.yae{bottom:314.669998px;}
.ya9{bottom:320.429993px;}
.y146{bottom:325.650009px;}
.y124{bottom:330.690010px;}
.y16c{bottom:331.589996px;}
.yd2{bottom:335.190010px;}
.y3d{bottom:335.370003px;}
.y1b9{bottom:335.730011px;}
.yc{bottom:336.089962px;}
.y90{bottom:337.035004px;}
.yad{bottom:337.575005px;}
.y47{bottom:339.165024px;}
.y145{bottom:348.554993px;}
.ya8{bottom:349.589996px;}
.y123{bottom:353.415000px;}
.y8f{bottom:356.834999px;}
.yd1{bottom:358.094994px;}
.yf8{bottom:358.275009px;}
.y1b8{bottom:358.455002px;}
.y187{bottom:360.254997px;}
.y16b{bottom:360.434990px;}
.y3c{bottom:370.334999px;}
.yb{bottom:370.875070px;}
.y144{bottom:371.235008px;}
.y9e{bottom:372.134995px;}
.y46{bottom:373.904984px;}
.y122{bottom:376.275009px;}
.ya7{bottom:379.830002px;}
.y1b7{bottom:381.315010px;}
.y8e{bottom:391.574982px;}
.yd0{bottom:392.835022px;}
.y143{bottom:394.095016px;}
.yf6{bottom:394.455002px;}
.y16a{bottom:395.175018px;}
.y121{bottom:398.955002px;}
.ya6{bottom:399.630020px;}
.y1b6{bottom:403.994980px;}
.y3b{bottom:405.074982px;}
.ya{bottom:405.614969px;}
.y45{bottom:409.904984px;}
.y8d{bottom:411.375000px;}
.ycf{bottom:415.695007px;}
.y142{bottom:416.775009px;}
.y169{bottom:418.035004px;}
.ya5{bottom:419.430038px;}
.y120{bottom:421.814987px;}
.y1b5{bottom:426.855011px;}
.yce{bottom:438.375000px;}
.ya4{bottom:439.229965px;}
.y141{bottom:439.634995px;}
.y3a{bottom:439.814987px;}
.y9{bottom:440.535041px;}
.y168{bottom:440.714996px;}
.y11f{bottom:444.494980px;}
.y1b4{bottom:449.535004px;}
.y8c{bottom:450.435013px;}
.yf5{bottom:450.615005px;}
.ya3{bottom:459.029984px;}
.ycd{bottom:461.234985px;}
.y186{bottom:462.314987px;}
.y167{bottom:463.574982px;}
.y11e{bottom:467.355011px;}
.y8{bottom:471.854969px;}
.y1b3{bottom:472.394989px;}
.y140{bottom:474.375000px;}
.y39{bottom:474.554993px;}
.y16{bottom:477.975586px;}
.ya2{bottom:479.189987px;}
.ycc{bottom:483.914978px;}
.y185{bottom:485.175018px;}
.y166{bottom:486.255020px;}
.yf4{bottom:486.974991px;}
.y8b{bottom:488.054993px;}
.y11d{bottom:490.035004px;}
.y1a5{bottom:491.835022px;}
.y1b2{bottom:495.074982px;}
.y13f{bottom:497.234985px;}
.ycb{bottom:506.775009px;}
.y184{bottom:507.855011px;}
.y38{bottom:509.294998px;}
.ya1{bottom:509.474991px;}
.y8a{bottom:510.734985px;}
.y2e{bottom:512.535048px;}
.y11c{bottom:512.894989px;}
.y1b1{bottom:517.935013px;}
.y13e{bottom:519.914978px;}
.y165{bottom:521.175018px;}
.yf3{bottom:523.154984px;}
.y1a4{bottom:526.574982px;}
.ya0{bottom:529.275009px;}
.y183{bottom:531.974991px;}
.y89{bottom:533.595016px;}
.y11b{bottom:535.574982px;}
.yca{bottom:541.515015px;}
.y2d{bottom:542.595092px;}
.y13d{bottom:542.775009px;}
.y164{bottom:543.855011px;}
.y37{bottom:544.035004px;}
.y15{bottom:547.274863px;}
.y9f{bottom:549.075027px;}
.y1a3{bottom:549.255020px;}
.y66{bottom:552.314987px;}
.y1b0{bottom:552.675018px;}
.y182{bottom:555.195007px;}
.y11a{bottom:558.435013px;}
.yef{bottom:559.515015px;}
.yc9{bottom:564.195007px;}
.y163{bottom:566.714996px;}
.y88{bottom:568.335022px;}
.y65{bottom:574.994980px;}
.y13c{bottom:577.515015px;}
.y181{bottom:578.234985px;}
.y36{bottom:578.955002px;}
.y119{bottom:581.115005px;}
.y14{bottom:586.875000px;}
.yc8{bottom:587.054993px;}
.y87{bottom:591.195007px;}
.y13b{bottom:600.195007px;}
.y162{bottom:601.455002px;}
.y1a2{bottom:603.824982px;}
.y118{bottom:604.005020px;}
.y180{bottom:606.164978px;}
.yc7{bottom:609.765015px;}
.y35{bottom:610.304993px;}
.y64{bottom:611.025009px;}
.y1ae{bottom:612.644989px;}
.y86{bottom:613.904984px;}
.y44{bottom:618.404984px;}
.y13a{bottom:623.085022px;}
.y161{bottom:624.164978px;}
.y117{bottom:626.685013px;}
.yc6{bottom:632.625000px;}
.yed{bottom:635.505020px;}
.y85{bottom:636.765015px;}
.y17f{bottom:641.085022px;}
.y139{bottom:645.765015px;}
.y160{bottom:647.025009px;}
.y63{bottom:648.644989px;}
.y1a1{bottom:649.365005px;}
.y7{bottom:649.724935px;}
.yc5{bottom:655.304993px;}
.y11{bottom:655.665298px;}
.y84{bottom:659.445007px;}
.y2c{bottom:659.804950px;}
.y116{bottom:661.425018px;}
.y17e{bottom:663.765015px;}
.y138{bottom:668.625000px;}
.y15f{bottom:669.705002px;}
.y62{bottom:671.505020px;}
.y83{bottom:682.304993px;}
.y1a0{bottom:684.105011px;}
.y115{bottom:684.285004px;}
.y17d{bottom:686.625000px;}
.y13{bottom:687.164978px;}
.yc4{bottom:688.425018px;}
.y137{bottom:691.304993px;}
.yec{bottom:692.564987px;}
.y61{bottom:694.185013px;}
.y2b{bottom:694.725022px;}
.y1ad{bottom:697.605011px;}
.y82{bottom:704.984985px;}
.y114{bottom:706.964996px;}
.y17c{bottom:709.304993px;}
.y136{bottom:714.164978px;}
.y15e{bottom:715.244980px;}
.yeb{bottom:715.425018px;}
.y60{bottom:717.044998px;}
.y2a{bottom:717.404936px;}
.yc3{bottom:726.044998px;}
.y1c7{bottom:727.304993px;}
.y81{bottom:727.845016px;}
.y113{bottom:729.824982px;}
.y17b{bottom:732.164978px;}
.y15d{bottom:738.105011px;}
.y5f{bottom:739.724991px;}
.y29{bottom:740.265022px;}
.y19f{bottom:741.705002px;}
.y1ac{bottom:742.785004px;}
.yc2{bottom:748.724991px;}
.y135{bottom:748.904984px;}
.yea{bottom:750.164978px;}
.y80{bottom:750.525009px;}
.y17a{bottom:754.845016px;}
.y15c{bottom:760.785004px;}
.y10{bottom:760.964996px;}
.y5e{bottom:762.585022px;}
.y112{bottom:762.765015px;}
.y19e{bottom:764.564987px;}
.yc1{bottom:771.585022px;}
.ye9{bottom:772.844971px;}
.y7f{bottom:773.385040px;}
.y28{bottom:775.004921px;}
.y179{bottom:777.704956px;}
.y15b{bottom:783.644989px;}
.y5d{bottom:785.265015px;}
.y19d{bottom:787.245026px;}
.yc0{bottom:794.265015px;}
.y134{bottom:794.445007px;}
.ye8{bottom:795.704956px;}
.y7e{bottom:796.065033px;}
.y27{bottom:797.685000px;}
.y178{bottom:800.385040px;}
.y111{bottom:803.445007px;}
.y15a{bottom:806.324982px;}
.y1c6{bottom:807.585022px;}
.y5c{bottom:808.125000px;}
.y19c{bottom:810.105011px;}
.ybf{bottom:817.125000px;}
.ye7{bottom:818.385040px;}
.y7d{bottom:818.925018px;}
.y26{bottom:820.545087px;}
.y1aa{bottom:827.745026px;}
.y159{bottom:829.184967px;}
.y1c5{bottom:830.445007px;}
.y5b{bottom:830.804993px;}
.y19b{bottom:832.785004px;}
.ybe{bottom:839.804993px;}
.y133{bottom:839.984985px;}
.ye6{bottom:841.245026px;}
.y7c{bottom:841.605011px;}
.y25{bottom:843.225000px;}
.y6{bottom:844.844957px;}
.y158{bottom:851.864960px;}
.y1c4{bottom:853.125000px;}
.y5a{bottom:853.664978px;}
.y19a{bottom:855.644989px;}
.y110{bottom:860.504974px;}
.y132{bottom:862.664978px;}
.ye5{bottom:863.925018px;}
.y7b{bottom:864.464996px;}
.y6f{bottom:865.004974px;}
.y24{bottom:866.085087px;}
.ybd{bottom:874.769989px;}
.y1c3{bottom:876.030029px;}
.y59{bottom:876.390015px;}
.y157{bottom:880.710022px;}
.y10f{bottom:883.410004px;}
.y131{bottom:885.570007px;}
.y177{bottom:886.829956px;}
.y7a{bottom:887.190033px;}
.y23{bottom:888.810044px;}
.y199{bottom:890.429993px;}
.y6e{bottom:896.730011px;}
.yf{bottom:897.449982px;}
.ye4{bottom:898.710022px;}
.y58{bottom:899.250000px;}
.y10e{bottom:906.089996px;}
.y130{bottom:908.250000px;}
.y176{bottom:909.510040px;}
.y79{bottom:910.050018px;}
.y1a9{bottom:912.750000px;}
.y198{bottom:913.109985px;}
.y156{bottom:915.449982px;}
.ye3{bottom:921.570007px;}
.y22{bottom:923.549943px;}
.y6d{bottom:928.589996px;}
.y10d{bottom:928.949982px;}
.ybc{bottom:932.190033px;}
.y175{bottom:932.370026px;}
.y57{bottom:935.250000px;}
.y197{bottom:935.969971px;}
.y155{bottom:938.309967px;}
.y12f{bottom:943.170044px;}
.ye2{bottom:944.250000px;}
.y78{bottom:944.789978px;}
.y21{bottom:946.410029px;}
.y10c{bottom:951.629974px;}
.ybb{bottom:955.050018px;}
.y196{bottom:958.649963px;}
.y6c{bottom:960.269989px;}
.y154{bottom:960.989960px;}
.y5{bottom:966.570068px;}
.ye1{bottom:967.109985px;}
.y77{bottom:967.469971px;}
.y20{bottom:969.089943px;}
.y9d{bottom:972.329956px;}
.y56{bottom:972.870026px;}
.yba{bottom:977.730011px;}
.y12e{bottom:977.910004px;}
.y195{bottom:981.510040px;}
.y153{bottom:983.850037px;}
.y10b{bottom:986.550018px;}
.ye0{bottom:989.789978px;}
.y76{bottom:990.329956px;}
.y1f{bottom:991.950029px;}
.y6b{bottom:992.129974px;}
.yb9{bottom:1000.589996px;}
.y4{bottom:1001.309967px;}
.y152{bottom:1006.530029px;}
.y55{bottom:1007.609985px;}
.y10a{bottom:1009.230011px;}
.y194{bottom:1010.309967px;}
.ydf{bottom:1012.649963px;}
.y75{bottom:1013.010040px;}
.y1e{bottom:1014.629943px;}
.y1a6{bottom:1023.089996px;}
.yb8{bottom:1023.269989px;}
.y12d{bottom:1023.449982px;}
.y6a{bottom:1023.809967px;}
.y151{bottom:1029.390015px;}
.y3{bottom:1031.190033px;}
.y109{bottom:1032.089996px;}
.yde{bottom:1035.329956px;}
.y74{bottom:1035.870026px;}
.y1d{bottom:1037.490029px;}
.y54{bottom:1042.530029px;}
.y12c{bottom:1046.129974px;}
.y193{bottom:1046.309967px;}
.y108{bottom:1054.769989px;}
.y69{bottom:1055.670044px;}
.yb7{bottom:1058.190033px;}
.y73{bottom:1058.550018px;}
.y1c{bottom:1060.170108px;}
.y150{bottom:1064.129974px;}
.y192{bottom:1069.530029px;}
.y9c{bottom:1070.070007px;}
.ydd{bottom:1070.250000px;}
.y53{bottom:1077.269989px;}
.y107{bottom:1077.449982px;}
.y34{bottom:1080.870026px;}
.y72{bottom:1081.410004px;}
.y1b{bottom:1083.030029px;}
.y14f{bottom:1086.989960px;}
.y68{bottom:1087.350037px;}
.y191{bottom:1092.570007px;}
.y9b{bottom:1092.929993px;}
.y33{bottom:1103.730011px;}
.y71{bottom:1104.089996px;}
.y14e{bottom:1109.670044px;}
.y105{bottom:1112.010040px;}
.y52{bottom:1113.269989px;}
.ydc{bottom:1115.789978px;}
.y67{bottom:1119.210022px;}
.y1a{bottom:1120.830054px;}
.y9a{bottom:1121.730011px;}
.y14d{bottom:1132.530029px;}
.y32{bottom:1138.500000px;}
.y70{bottom:1139.039978px;}
.y99{bottom:1141.559967px;}
.y102{bottom:1148.399963px;}
.y19{bottom:1153.980011px;}
.y31{bottom:1161.359985px;}
.y190{bottom:1162.260040px;}
.h1a{height:19.800000px;}
.h1d{height:20.520000px;}
.h22{height:28.800000px;}
.h17{height:29.880000px;}
.h1b{height:39.599999px;}
.h1c{height:39.636000px;}
.h4{height:44.115840px;}
.h20{height:45.904320px;}
.h26{height:47.030400px;}
.h23{height:48.600002px;}
.h16{height:49.896000px;}
.h18{height:50.276160px;}
.h2{height:50.541120px;}
.hf{height:51.269760px;}
.h1f{height:55.707840px;}
.h15{height:55.728000px;}
.h12{height:57.430080px;}
.h11{height:59.253120px;}
.h19{height:59.436000px;}
.h1e{height:65.884219px;}
.h3{height:67.032000px;}
.h13{height:67.989600px;}
.h25{height:68.399998px;}
.h24{height:68.436000px;}
.hd{height:72.969120px;}
.hc{height:87.775200px;}
.h21{height:88.199999px;}
.h9{height:96.184796px;}
.h6{height:105.120000px;}
.hb{height:119.109596px;}
.ha{height:150.869247px;}
.h7{height:157.680000px;}
.h8{height:168.299057px;}
.h10{height:438.330002px;}
.h14{height:574.634995px;}
.h5{height:1262.879059px;}
.he{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:72.899998px;}
.wb{width:83.520000px;}
.we{width:83.555998px;}
.wd{width:94.139997px;}
.wc{width:104.795998px;}
.w9{width:112.319996px;}
.wa{width:117.936000px;}
.w7{width:199.830002px;}
.w8{width:476.175018px;}
.w3{width:609.944824px;}
.w2{width:677.444824px;}
.w6{width:678.164978px;}
.w5{width:679.064987px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:2.160004px;}
.x14{left:6.660004px;}
.x20{left:8.819984px;}
.x9{left:10.800454px;}
.x24{left:13.139992px;}
.x2c{left:14.399963px;}
.x21{left:15.839996px;}
.x23{left:18.179993px;}
.x26{left:20.160004px;}
.x29{left:24.119980px;}
.x27{left:26.640015px;}
.x31{left:29.205002px;}
.x34{left:32.399963px;}
.x2e{left:33.479988px;}
.x36{left:34.740005px;}
.x33{left:37.484985px;}
.x30{left:38.879974px;}
.x1f{left:42.839996px;}
.x2f{left:43.950027px;}
.x32{left:46.620003px;}
.x37{left:48.089996px;}
.x35{left:50.759995px;}
.x2d{left:54.899986px;}
.x17{left:76.494003px;}
.x2{left:106.236050px;}
.x13{left:107.855999px;}
.x19{left:115.740005px;}
.x8{left:117.576004px;}
.xe{left:122.795984px;}
.x10{left:133.235983px;}
.xd{left:138.954014px;}
.x11{left:160.229986px;}
.x1b{left:186.329989px;}
.x1e{left:221.610008px;}
.x16{left:275.259007px;}
.x18{left:309.134995px;}
.x22{left:340.995003px;}
.x3{left:402.734985px;}
.xb{left:414.434973px;}
.x25{left:426.134995px;}
.x1{left:446.474991px;}
.x15{left:514.509007px;}
.x28{left:532.365005px;}
.x2a{left:628.125000px;}
.x4{left:704.850015px;}
.x2b{left:713.130020px;}
.x6{left:718.350064px;}
.xa{left:754.890015px;}
.x1d{left:771.629961px;}
.x38{left:775.229998px;}
.x12{left:777.929979px;}
.x1c{left:779.010027px;}
.xf{left:780.989946px;}
.x5{left:785.850112px;}
.xc{left:788.010027px;}
.x7{left:1001.879974px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-0.422400pt;}
.ls1d{letter-spacing:-0.368533pt;}
.ls10{letter-spacing:-0.294400pt;}
.ls2e{letter-spacing:-0.258667pt;}
.ls22{letter-spacing:-0.199467pt;}
.lsc{letter-spacing:-0.163733pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.120533pt;}
.ls2d{letter-spacing:-0.043520pt;}
.lsd{letter-spacing:-0.023040pt;}
.ls23{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000104pt;}
.lsa{letter-spacing:0.025600pt;}
.ls18{letter-spacing:0.092267pt;}
.ls16{letter-spacing:0.099733pt;}
.ls8{letter-spacing:0.102371pt;}
.lsb{letter-spacing:0.102400pt;}
.ls1e{letter-spacing:0.117783pt;}
.ls2f{letter-spacing:0.160016pt;}
.ls17{letter-spacing:0.202133pt;}
.ls29{letter-spacing:0.204800pt;}
.ls19{letter-spacing:0.217600pt;}
.ls3{letter-spacing:0.255360pt;}
.ls2c{letter-spacing:0.263467pt;}
.lse{letter-spacing:0.271467pt;}
.ls27{letter-spacing:0.276267pt;}
.ls1b{letter-spacing:0.294400pt;}
.ls5{letter-spacing:0.304730pt;}
.ls28{letter-spacing:0.307200pt;}
.ls1{letter-spacing:0.340480pt;}
.ls2{letter-spacing:0.595840pt;}
.ls4{letter-spacing:1.300634pt;}
.ls1c{letter-spacing:2.303997pt;}
.ls21{letter-spacing:26.490043pt;}
.ls20{letter-spacing:27.770032pt;}
.ls2a{letter-spacing:28.410006pt;}
.ls25{letter-spacing:30.970025pt;}
.ls26{letter-spacing:32.250012pt;}
.ls24{letter-spacing:43.130017pt;}
.ls2b{letter-spacing:50.170016pt;}
.ls1a{letter-spacing:52.730033pt;}
.ls12{letter-spacing:56.891291pt;}
.ls14{letter-spacing:119.290015pt;}
.ls15{letter-spacing:119.930025pt;}
.ls13{letter-spacing:120.569999pt;}
.ls1f{letter-spacing:142.970024pt;}
.ls6{letter-spacing:753.386675pt;}
.ls7{letter-spacing:753.418713pt;}
.lsf{letter-spacing:753.439993pt;}
.wse{word-spacing:-58.880000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws10{word-spacing:-14.118400pt;}
.wsf{word-spacing:-13.824000pt;}
.ws19{word-spacing:-13.306880pt;}
.ws18{word-spacing:-13.263360pt;}
.ws15{word-spacing:-12.083200pt;}
.ws14{word-spacing:-12.052267pt;}
.ws7{word-spacing:-12.047467pt;}
.ws17{word-spacing:-12.039467pt;}
.wsd{word-spacing:-11.993600pt;}
.ws16{word-spacing:-11.980800pt;}
.wsb{word-spacing:-11.978133pt;}
.wsa{word-spacing:-11.875733pt;}
.wsc{word-spacing:-11.868267pt;}
.ws3{word-spacing:-11.801600pt;}
.ws2{word-spacing:-11.776000pt;}
.ws13{word-spacing:-11.768320pt;}
.ws5{word-spacing:-11.752960pt;}
.ws8{word-spacing:-11.648000pt;}
.ws4{word-spacing:-11.612267pt;}
.ws12{word-spacing:-11.576533pt;}
.ws1a{word-spacing:-11.517333pt;}
.ws6{word-spacing:-11.481600pt;}
.ws11{word-spacing:-11.422720pt;}
.ws1b{word-spacing:-11.353600pt;}
.ws1{word-spacing:-0.085120pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-10.357882pt;}
._17{margin-left:-9.288925pt;}
._1{margin-left:-6.336000pt;}
._0{margin-left:-5.184000pt;}
._2{margin-left:-4.032000pt;}
._8{margin-left:-2.472960pt;}
._5{margin-left:-1.068800pt;}
._3{width:0.936960pt;}
._4{width:2.366995pt;}
._18{width:3.709440pt;}
._7{width:4.896000pt;}
._6{width:6.005760pt;}
._19{width:6.912000pt;}
._14{width:7.813120pt;}
._13{width:8.976640pt;}
._10{width:10.304000pt;}
._b{width:13.012480pt;}
._f{width:14.013440pt;}
._11{width:15.014400pt;}
._12{width:16.250880pt;}
._1d{width:17.722880pt;}
._9{width:19.548160pt;}
._a{width:20.437248pt;}
._1c{width:22.021120pt;}
._1b{width:22.997320pt;}
._1a{width:23.930040pt;}
._e{width:25.929379pt;}
._15{width:26.827098pt;}
._c{width:27.791360pt;}
._d{width:28.990208pt;}
._1f{width:31.047680pt;}
._1e{width:32.089600pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.fs4{font-size:117.119995pt;}
.fs2{font-size:128.000000pt;}
.fs5{font-size:149.119995pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:2.400004pt;}
.y106{bottom:2.879964pt;}
.yf9{bottom:2.879985pt;}
.y100{bottom:2.879995pt;}
.yf2{bottom:2.880005pt;}
.y103{bottom:2.880046pt;}
.y104{bottom:3.520020pt;}
.yee{bottom:7.359985pt;}
.y51{bottom:7.520020pt;}
.y17{bottom:7.999471pt;}
.yfb{bottom:11.679993pt;}
.yf7{bottom:11.680013pt;}
.yab{bottom:14.400024pt;}
.yf0{bottom:20.479980pt;}
.yfc{bottom:20.480001pt;}
.y1af{bottom:20.480021pt;}
.y12{bottom:27.999715pt;}
.yf1{bottom:38.079997pt;}
.y1ab{bottom:38.119954pt;}
.y30{bottom:49.919998pt;}
.y2{bottom:49.920066pt;}
.y1a8{bottom:55.680013pt;}
.y50{bottom:65.920003pt;}
.y1{bottom:75.552002pt;}
.y1a7{bottom:78.399984pt;}
.y4f{bottom:86.240031pt;}
.ydb{bottom:105.151998pt;}
.y1c2{bottom:105.631999pt;}
.y43{bottom:112.671997pt;}
.y14c{bottom:114.911997pt;}
.y4e{bottom:117.119995pt;}
.y18f{bottom:117.471995pt;}
.yb6{bottom:117.792002pt;}
.y98{bottom:118.752004pt;}
.y101{bottom:121.792002pt;}
.y174{bottom:122.272003pt;}
.yda{bottom:125.471995pt;}
.y1c1{bottom:125.792002pt;}
.y97{bottom:136.346670pt;}
.y4d{bottom:137.279989pt;}
.yb5{bottom:138.106669pt;}
.y12b{bottom:141.466665pt;}
.y173{bottom:142.426666pt;}
.y42{bottom:143.706665pt;}
.yd9{bottom:145.626668pt;}
.y14b{bottom:145.786662pt;}
.y1c0{bottom:146.106669pt;}
.y18e{bottom:147.386667pt;}
.yff{bottom:154.106669pt;}
.yb4{bottom:158.266663pt;}
.y12a{bottom:161.786662pt;}
.yd8{bottom:165.946665pt;}
.y1bf{bottom:166.266663pt;}
.y96{bottom:167.226664pt;}
.y18d{bottom:168.026662pt;}
.y4c{bottom:168.320028pt;}
.y172{bottom:173.306661pt;}
.y41{bottom:174.586670pt;}
.yb3{bottom:178.586670pt;}
.y129{bottom:181.946676pt;}
.y95{bottom:184.826660pt;}
.y1be{bottom:186.586670pt;}
.y18c{bottom:188.666667pt;}
.y171{bottom:193.626668pt;}
.y14a{bottom:195.386658pt;}
.yd7{bottom:196.826660pt;}
.yb2{bottom:198.746663pt;}
.y4b{bottom:199.199992pt;}
.y128{bottom:202.266663pt;}
.y94{bottom:202.426676pt;}
.yfe{bottom:204.026672pt;}
.y40{bottom:205.466675pt;}
.y170{bottom:213.786662pt;}
.yd6{bottom:216.986674pt;}
.y18b{bottom:217.146667pt;}
.y1bd{bottom:217.466675pt;}
.yb1{bottom:219.066671pt;}
.yd{bottom:221.306626pt;}
.ye{bottom:221.306661pt;}
.y127{bottom:222.426676pt;}
.y149{bottom:228.826660pt;}
.y4a{bottom:230.119995pt;}
.y93{bottom:233.306661pt;}
.y16f{bottom:234.106669pt;}
.yfd{bottom:236.186666pt;}
.y3f{bottom:236.346659pt;}
.yd5{bottom:237.306661pt;}
.y1bc{bottom:237.626668pt;}
.y18a{bottom:237.786662pt;}
.yb0{bottom:239.226664pt;}
.y18{bottom:242.586670pt;}
.y148{bottom:248.986674pt;}
.y49{bottom:250.279989pt;}
.y92{bottom:250.906657pt;}
.y126{bottom:253.466675pt;}
.y16e{bottom:254.266663pt;}
.yd4{bottom:257.466675pt;}
.y1bb{bottom:257.946676pt;}
.y189{bottom:258.426676pt;}
.yaf{bottom:259.546672pt;}
.y3e{bottom:267.226664pt;}
.yaa{bottom:267.226685pt;}
.yfa{bottom:268.506673pt;}
.y91{bottom:268.666667pt;}
.y147{bottom:269.306661pt;}
.y48{bottom:270.599976pt;}
.y125{bottom:273.626668pt;}
.y16d{bottom:274.586670pt;}
.y2f{bottom:276.346716pt;}
.yd3{bottom:277.786662pt;}
.y1ba{bottom:278.106669pt;}
.y188{bottom:278.906657pt;}
.yae{bottom:279.706665pt;}
.ya9{bottom:284.826660pt;}
.y146{bottom:289.466675pt;}
.y124{bottom:293.946676pt;}
.y16c{bottom:294.746663pt;}
.yd2{bottom:297.946676pt;}
.y3d{bottom:298.106669pt;}
.y1b9{bottom:298.426676pt;}
.yc{bottom:298.746633pt;}
.y90{bottom:299.586670pt;}
.yad{bottom:300.066671pt;}
.y47{bottom:301.480021pt;}
.y145{bottom:309.826660pt;}
.ya8{bottom:310.746663pt;}
.y123{bottom:314.146667pt;}
.y8f{bottom:317.186666pt;}
.yd1{bottom:318.306661pt;}
.yf8{bottom:318.466675pt;}
.y1b8{bottom:318.626668pt;}
.y187{bottom:320.226664pt;}
.y16b{bottom:320.386658pt;}
.y3c{bottom:329.186666pt;}
.yb{bottom:329.666729pt;}
.y144{bottom:329.986674pt;}
.y9e{bottom:330.786662pt;}
.y46{bottom:332.359985pt;}
.y122{bottom:334.466675pt;}
.ya7{bottom:337.626668pt;}
.y1b7{bottom:338.946676pt;}
.y8e{bottom:348.066650pt;}
.yd0{bottom:349.186686pt;}
.y143{bottom:350.306681pt;}
.yf6{bottom:350.626668pt;}
.y16a{bottom:351.266683pt;}
.y121{bottom:354.626668pt;}
.ya6{bottom:355.226685pt;}
.y1b6{bottom:359.106649pt;}
.y3b{bottom:360.066650pt;}
.ya{bottom:360.546639pt;}
.y45{bottom:364.359985pt;}
.y8d{bottom:365.666667pt;}
.ycf{bottom:369.506673pt;}
.y142{bottom:370.466675pt;}
.y169{bottom:371.586670pt;}
.ya5{bottom:372.826701pt;}
.y120{bottom:374.946655pt;}
.y1b5{bottom:379.426676pt;}
.yce{bottom:389.666667pt;}
.ya4{bottom:390.426636pt;}
.y141{bottom:390.786662pt;}
.y3a{bottom:390.946655pt;}
.y9{bottom:391.586703pt;}
.y168{bottom:391.746663pt;}
.y11f{bottom:395.106649pt;}
.y1b4{bottom:399.586670pt;}
.y8c{bottom:400.386678pt;}
.yf5{bottom:400.546672pt;}
.ya3{bottom:408.026652pt;}
.ycd{bottom:409.986654pt;}
.y186{bottom:410.946655pt;}
.y167{bottom:412.066650pt;}
.y11e{bottom:415.426676pt;}
.y8{bottom:419.426639pt;}
.y1b3{bottom:419.906657pt;}
.y140{bottom:421.666667pt;}
.y39{bottom:421.826660pt;}
.y16{bottom:424.867188pt;}
.ya2{bottom:425.946655pt;}
.ycc{bottom:430.146647pt;}
.y185{bottom:431.266683pt;}
.y166{bottom:432.226685pt;}
.yf4{bottom:432.866659pt;}
.y8b{bottom:433.826660pt;}
.y11d{bottom:435.586670pt;}
.y1a5{bottom:437.186686pt;}
.y1b2{bottom:440.066650pt;}
.y13f{bottom:441.986654pt;}
.ycb{bottom:450.466675pt;}
.y184{bottom:451.426676pt;}
.y38{bottom:452.706665pt;}
.ya1{bottom:452.866659pt;}
.y8a{bottom:453.986654pt;}
.y2e{bottom:455.586710pt;}
.y11c{bottom:455.906657pt;}
.y1b1{bottom:460.386678pt;}
.y13e{bottom:462.146647pt;}
.y165{bottom:463.266683pt;}
.yf3{bottom:465.026652pt;}
.y1a4{bottom:468.066650pt;}
.ya0{bottom:470.466675pt;}
.y183{bottom:472.866659pt;}
.y89{bottom:474.306681pt;}
.y11b{bottom:476.066650pt;}
.yca{bottom:481.346680pt;}
.y2d{bottom:482.306748pt;}
.y13d{bottom:482.466675pt;}
.y164{bottom:483.426676pt;}
.y37{bottom:483.586670pt;}
.y15{bottom:486.466545pt;}
.y9f{bottom:488.066691pt;}
.y1a3{bottom:488.226685pt;}
.y66{bottom:490.946655pt;}
.y1b0{bottom:491.266683pt;}
.y182{bottom:493.506673pt;}
.y11a{bottom:496.386678pt;}
.yef{bottom:497.346680pt;}
.yc9{bottom:501.506673pt;}
.y163{bottom:503.746663pt;}
.y88{bottom:505.186686pt;}
.y65{bottom:511.106649pt;}
.y13c{bottom:513.346680pt;}
.y181{bottom:513.986654pt;}
.y36{bottom:514.626668pt;}
.y119{bottom:516.546672pt;}
.y14{bottom:521.666667pt;}
.yc8{bottom:521.826660pt;}
.y87{bottom:525.506673pt;}
.y13b{bottom:533.506673pt;}
.y162{bottom:534.626668pt;}
.y1a2{bottom:536.733317pt;}
.y118{bottom:536.893351pt;}
.y180{bottom:538.813314pt;}
.yc7{bottom:542.013346pt;}
.y35{bottom:542.493327pt;}
.y64{bottom:543.133341pt;}
.y1ae{bottom:544.573324pt;}
.y86{bottom:545.693319pt;}
.y44{bottom:549.693319pt;}
.y13a{bottom:553.853353pt;}
.y161{bottom:554.813314pt;}
.y117{bottom:557.053345pt;}
.yc6{bottom:562.333333pt;}
.yed{bottom:564.893351pt;}
.y85{bottom:566.013346pt;}
.y17f{bottom:569.853353pt;}
.y139{bottom:574.013346pt;}
.y160{bottom:575.133341pt;}
.y63{bottom:576.573324pt;}
.y1a1{bottom:577.213338pt;}
.y7{bottom:577.533276pt;}
.yc5{bottom:582.493327pt;}
.y11{bottom:582.813599pt;}
.y84{bottom:586.173340pt;}
.y2c{bottom:586.493289pt;}
.y116{bottom:587.933350pt;}
.y17e{bottom:590.013346pt;}
.y138{bottom:594.333333pt;}
.y15f{bottom:595.293335pt;}
.y62{bottom:596.893351pt;}
.y83{bottom:606.493327pt;}
.y1a0{bottom:608.093343pt;}
.y115{bottom:608.253337pt;}
.y17d{bottom:610.333333pt;}
.y13{bottom:610.813314pt;}
.yc4{bottom:611.933350pt;}
.y137{bottom:614.493327pt;}
.yec{bottom:615.613322pt;}
.y61{bottom:617.053345pt;}
.y2b{bottom:617.533353pt;}
.y1ad{bottom:620.093343pt;}
.y82{bottom:626.653320pt;}
.y114{bottom:628.413330pt;}
.y17c{bottom:630.493327pt;}
.y136{bottom:634.813314pt;}
.y15e{bottom:635.773315pt;}
.yeb{bottom:635.933350pt;}
.y60{bottom:637.373332pt;}
.y2a{bottom:637.693276pt;}
.yc3{bottom:645.373332pt;}
.y1c7{bottom:646.493327pt;}
.y81{bottom:646.973348pt;}
.y113{bottom:648.733317pt;}
.y17b{bottom:650.813314pt;}
.y15d{bottom:656.093343pt;}
.y5f{bottom:657.533325pt;}
.y29{bottom:658.013353pt;}
.y19f{bottom:659.293335pt;}
.y1ac{bottom:660.253337pt;}
.yc2{bottom:665.533325pt;}
.y135{bottom:665.693319pt;}
.yea{bottom:666.813314pt;}
.y80{bottom:667.133341pt;}
.y17a{bottom:670.973348pt;}
.y15c{bottom:676.253337pt;}
.y10{bottom:676.413330pt;}
.y5e{bottom:677.853353pt;}
.y112{bottom:678.013346pt;}
.y19e{bottom:679.613322pt;}
.yc1{bottom:685.853353pt;}
.ye9{bottom:686.973307pt;}
.y7f{bottom:687.453369pt;}
.y28{bottom:688.893263pt;}
.y179{bottom:691.293294pt;}
.y15b{bottom:696.573324pt;}
.y5d{bottom:698.013346pt;}
.y19d{bottom:699.773356pt;}
.yc0{bottom:706.013346pt;}
.y134{bottom:706.173340pt;}
.ye8{bottom:707.293294pt;}
.y7e{bottom:707.613363pt;}
.y27{bottom:709.053334pt;}
.y178{bottom:711.453369pt;}
.y111{bottom:714.173340pt;}
.y15a{bottom:716.733317pt;}
.y1c6{bottom:717.853353pt;}
.y5c{bottom:718.333333pt;}
.y19c{bottom:720.093343pt;}
.ybf{bottom:726.333333pt;}
.ye7{bottom:727.453369pt;}
.y7d{bottom:727.933350pt;}
.y26{bottom:729.373411pt;}
.y1aa{bottom:735.773356pt;}
.y159{bottom:737.053304pt;}
.y1c5{bottom:738.173340pt;}
.y5b{bottom:738.493327pt;}
.y19b{bottom:740.253337pt;}
.ybe{bottom:746.493327pt;}
.y133{bottom:746.653320pt;}
.ye6{bottom:747.773356pt;}
.y7c{bottom:748.093343pt;}
.y25{bottom:749.533334pt;}
.y6{bottom:750.973295pt;}
.y158{bottom:757.213298pt;}
.y1c4{bottom:758.333333pt;}
.y5a{bottom:758.813314pt;}
.y19a{bottom:760.573324pt;}
.y110{bottom:764.893311pt;}
.y132{bottom:766.813314pt;}
.ye5{bottom:767.933350pt;}
.y7b{bottom:768.413330pt;}
.y6f{bottom:768.893311pt;}
.y24{bottom:769.853411pt;}
.ybd{bottom:777.573324pt;}
.y1c3{bottom:778.693359pt;}
.y59{bottom:779.013346pt;}
.y157{bottom:782.853353pt;}
.y10f{bottom:785.253337pt;}
.y131{bottom:787.173340pt;}
.y177{bottom:788.293294pt;}
.y7a{bottom:788.613363pt;}
.y23{bottom:790.053372pt;}
.y199{bottom:791.493327pt;}
.y6e{bottom:797.093343pt;}
.yf{bottom:797.733317pt;}
.ye4{bottom:798.853353pt;}
.y58{bottom:799.333333pt;}
.y10e{bottom:805.413330pt;}
.y130{bottom:807.333333pt;}
.y176{bottom:808.453369pt;}
.y79{bottom:808.933350pt;}
.y1a9{bottom:811.333333pt;}
.y198{bottom:811.653320pt;}
.y156{bottom:813.733317pt;}
.ye3{bottom:819.173340pt;}
.y22{bottom:820.933283pt;}
.y6d{bottom:825.413330pt;}
.y10d{bottom:825.733317pt;}
.ybc{bottom:828.613363pt;}
.y175{bottom:828.773356pt;}
.y57{bottom:831.333333pt;}
.y197{bottom:831.973307pt;}
.y155{bottom:834.053304pt;}
.y12f{bottom:838.373372pt;}
.ye2{bottom:839.333333pt;}
.y78{bottom:839.813314pt;}
.y21{bottom:841.253359pt;}
.y10c{bottom:845.893311pt;}
.ybb{bottom:848.933350pt;}
.y196{bottom:852.133301pt;}
.y6c{bottom:853.573324pt;}
.y154{bottom:854.213298pt;}
.y5{bottom:859.173394pt;}
.ye1{bottom:859.653320pt;}
.y77{bottom:859.973307pt;}
.y20{bottom:861.413283pt;}
.y9d{bottom:864.293294pt;}
.y56{bottom:864.773356pt;}
.yba{bottom:869.093343pt;}
.y12e{bottom:869.253337pt;}
.y195{bottom:872.453369pt;}
.y153{bottom:874.533366pt;}
.y10b{bottom:876.933350pt;}
.ye0{bottom:879.813314pt;}
.y76{bottom:880.293294pt;}
.y1f{bottom:881.733359pt;}
.y6b{bottom:881.893311pt;}
.yb9{bottom:889.413330pt;}
.y4{bottom:890.053304pt;}
.y152{bottom:894.693359pt;}
.y55{bottom:895.653320pt;}
.y10a{bottom:897.093343pt;}
.y194{bottom:898.053304pt;}
.ydf{bottom:900.133301pt;}
.y75{bottom:900.453369pt;}
.y1e{bottom:901.893283pt;}
.y1a6{bottom:909.413330pt;}
.yb8{bottom:909.573324pt;}
.y12d{bottom:909.733317pt;}
.y6a{bottom:910.053304pt;}
.y151{bottom:915.013346pt;}
.y3{bottom:916.613363pt;}
.y109{bottom:917.413330pt;}
.yde{bottom:920.293294pt;}
.y74{bottom:920.773356pt;}
.y1d{bottom:922.213359pt;}
.y54{bottom:926.693359pt;}
.y12c{bottom:929.893311pt;}
.y193{bottom:930.053304pt;}
.y108{bottom:937.573324pt;}
.y69{bottom:938.373372pt;}
.yb7{bottom:940.613363pt;}
.y73{bottom:940.933350pt;}
.y1c{bottom:942.373430pt;}
.y150{bottom:945.893311pt;}
.y192{bottom:950.693359pt;}
.y9c{bottom:951.173340pt;}
.ydd{bottom:951.333333pt;}
.y53{bottom:957.573324pt;}
.y107{bottom:957.733317pt;}
.y34{bottom:960.773356pt;}
.y72{bottom:961.253337pt;}
.y1b{bottom:962.693359pt;}
.y14f{bottom:966.213298pt;}
.y68{bottom:966.533366pt;}
.y191{bottom:971.173340pt;}
.y9b{bottom:971.493327pt;}
.y33{bottom:981.093343pt;}
.y71{bottom:981.413330pt;}
.y14e{bottom:986.373372pt;}
.y105{bottom:988.453369pt;}
.y52{bottom:989.573324pt;}
.ydc{bottom:991.813314pt;}
.y67{bottom:994.853353pt;}
.y1a{bottom:996.293381pt;}
.y9a{bottom:997.093343pt;}
.y14d{bottom:1006.693359pt;}
.y32{bottom:1012.000000pt;}
.y70{bottom:1012.479980pt;}
.y99{bottom:1014.719971pt;}
.y102{bottom:1020.799967pt;}
.y19{bottom:1025.760010pt;}
.y31{bottom:1032.319987pt;}
.y190{bottom:1033.120036pt;}
.h1a{height:17.600000pt;}
.h1d{height:18.240000pt;}
.h22{height:25.600000pt;}
.h17{height:26.560000pt;}
.h1b{height:35.199999pt;}
.h1c{height:35.232000pt;}
.h4{height:39.214080pt;}
.h20{height:40.803840pt;}
.h26{height:41.804800pt;}
.h23{height:43.200002pt;}
.h16{height:44.352000pt;}
.h18{height:44.689920pt;}
.h2{height:44.925440pt;}
.hf{height:45.573120pt;}
.h1f{height:49.518080pt;}
.h15{height:49.536000pt;}
.h12{height:51.048960pt;}
.h11{height:52.669440pt;}
.h19{height:52.832000pt;}
.h1e{height:58.563750pt;}
.h3{height:59.584000pt;}
.h13{height:60.435200pt;}
.h25{height:60.799998pt;}
.h24{height:60.832000pt;}
.hd{height:64.861440pt;}
.hc{height:78.022400pt;}
.h21{height:78.399999pt;}
.h9{height:85.497596pt;}
.h6{height:93.440000pt;}
.hb{height:105.875197pt;}
.ha{height:134.105998pt;}
.h7{height:140.160000pt;}
.h8{height:149.599162pt;}
.h10{height:389.626668pt;}
.h14{height:510.786662pt;}
.h5{height:1122.559163pt;}
.he{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:64.799998pt;}
.wb{width:74.240000pt;}
.we{width:74.271998pt;}
.wd{width:83.679998pt;}
.wc{width:93.151998pt;}
.w9{width:99.839996pt;}
.wa{width:104.832000pt;}
.w7{width:177.626668pt;}
.w8{width:423.266683pt;}
.w3{width:542.173177pt;}
.w2{width:602.173177pt;}
.w6{width:602.813314pt;}
.w5{width:603.613322pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.920003pt;}
.x14{left:5.920003pt;}
.x20{left:7.839986pt;}
.x9{left:9.600404pt;}
.x24{left:11.679993pt;}
.x2c{left:12.799967pt;}
.x21{left:14.079997pt;}
.x23{left:16.159993pt;}
.x26{left:17.920003pt;}
.x29{left:21.439982pt;}
.x27{left:23.680013pt;}
.x31{left:25.960002pt;}
.x34{left:28.799967pt;}
.x2e{left:29.759989pt;}
.x36{left:30.880005pt;}
.x33{left:33.319987pt;}
.x30{left:34.559977pt;}
.x1f{left:38.079997pt;}
.x2f{left:39.066691pt;}
.x32{left:41.440002pt;}
.x37{left:42.746663pt;}
.x35{left:45.119995pt;}
.x2d{left:48.799988pt;}
.x17{left:67.994670pt;}
.x2{left:94.432044pt;}
.x13{left:95.871999pt;}
.x19{left:102.880005pt;}
.x8{left:104.512004pt;}
.xe{left:109.151986pt;}
.x10{left:118.431985pt;}
.xd{left:123.514679pt;}
.x11{left:142.426654pt;}
.x1b{left:165.626656pt;}
.x1e{left:196.986674pt;}
.x16{left:244.674672pt;}
.x18{left:274.786662pt;}
.x22{left:303.106669pt;}
.x3{left:357.986654pt;}
.xb{left:368.386643pt;}
.x25{left:378.786662pt;}
.x1{left:396.866659pt;}
.x15{left:457.341339pt;}
.x28{left:473.213338pt;}
.x2a{left:558.333333pt;}
.x4{left:626.533347pt;}
.x2b{left:633.893351pt;}
.x6{left:638.533390pt;}
.xa{left:671.013346pt;}
.x1d{left:685.893299pt;}
.x38{left:689.093331pt;}
.x12{left:691.493315pt;}
.x1c{left:692.453357pt;}
.xf{left:694.213286pt;}
.x5{left:698.533433pt;}
.xc{left:700.453357pt;}
.x7{left:890.559977pt;}
}


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;
}
