
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* 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("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -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(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_ce355cda00366a208b5e04c7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_41ea408f9fff4af543d2e352.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2ec1209f805a81f9d0af101d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5b8fc06b2c0c0cd4f8991112.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dcd2793f30d747d0cc2f9ad9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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('chunks/assets/font_c0ced9e38bfccbe4670c6b95.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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('chunks/assets/font_828600fb94c9fa30b0c6760b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aee495e794fdc61159d70fe4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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('chunks/assets/font_d11d5230b4f8bfc7ecc56ca6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c0bd264db4d4381fd78e8d5d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_907eb9cf3e4571ba5508e8cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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('chunks/assets/font_e5c7779b85b92ec285bcddd3.woff2')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('chunks/assets/font_6f2ac8a2aae8ca3666dac0de.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2e8daa2eb88dab212a0c436c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_23c3ce1765d136aa3719d518.woff2')format("woff");}.fff{font-family:fff;line-height:0.674805;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('chunks/assets/font_6dc6ae9926f5feab5e08619c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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('chunks/assets/font_21d6d5e219c1159e1fc940e9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;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('chunks/assets/font_575894f3da041dce6fec97ab.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_24e8e9e62914c057563459fe.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_c060767f2d5ec7368ab683fc.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.127930;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);}
.va{vertical-align:-39.599937px;}
.vc{vertical-align:-15.839975px;}
.v2{vertical-align:-14.399977px;}
.v7{vertical-align:-10.079984px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:6.479990px;}
.v3{vertical-align:14.399977px;}
.v9{vertical-align:23.759962px;}
.v1{vertical-align:26.639957px;}
.v6{vertical-align:31.679949px;}
.v5{vertical-align:35.999942px;}
.v4{vertical-align:42.479932px;}
.v8{vertical-align:46.079926px;}
.lsd{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.195600px;}
.ls16{letter-spacing:0.292320px;}
.ls0{letter-spacing:0.303749px;}
.ls7{letter-spacing:0.359999px;}
.ls5{letter-spacing:0.362399px;}
.ls8{letter-spacing:0.503999px;}
.lsa{letter-spacing:0.719999px;}
.ls1a{letter-spacing:0.863999px;}
.ls15{letter-spacing:0.963118px;}
.ls10{letter-spacing:2.801516px;}
.ls13{letter-spacing:3.103015px;}
.ls14{letter-spacing:3.125515px;}
.ls12{letter-spacing:4.352393px;}
.ls17{letter-spacing:4.577513px;}
.lsf{letter-spacing:18.719970px;}
.ls18{letter-spacing:29.231953px;}
.ls19{letter-spacing:35.207944px;}
.lse{letter-spacing:95.903847px;}
.ls1{letter-spacing:843.328891px;}
.ls4{letter-spacing:846.304646px;}
.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;}
}
.ws9{word-spacing:-60.961582px;}
.ws3{word-spacing:-21.059966px;}
.ws8{word-spacing:-18.143971px;}
.ws2{word-spacing:-17.999971px;}
.wsa{word-spacing:-17.855971px;}
.wsb{word-spacing:-15.839975px;}
.wsd{word-spacing:-15.767975px;}
.ws6{word-spacing:-15.299976px;}
.ws0{word-spacing:-15.243726px;}
.ws7{word-spacing:-15.046776px;}
.ws4{word-spacing:-14.939976px;}
.ws5{word-spacing:-14.886696px;}
.wsc{word-spacing:-11.246382px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-9.719984px;}
._13{margin-left:-7.991987px;}
._8{margin-left:-6.358463px;}
._7{margin-left:-4.883134px;}
._2{margin-left:-3.714327px;}
._3{margin-left:-2.200700px;}
._1{margin-left:-1.020060px;}
._0{width:1.072422px;}
._10{width:2.083387px;}
._4{width:3.096982px;}
._6{width:4.501187px;}
._f{width:5.624964px;}
._15{width:7.298998px;}
._1a{width:8.304884px;}
._e{width:9.389881px;}
._c{width:11.092518px;}
._d{width:12.253214px;}
._16{width:13.833005px;}
._17{width:15.132829px;}
._18{width:16.271974px;}
._14{width:19.647182px;}
._11{width:21.388502px;}
._12{width:22.390267px;}
._1b{width:23.631249px;}
._a{width:25.857030px;}
._b{width:26.922095px;}
._9{width:35.979542px;}
._5{width:136.051776px;}
._1c{width:846.158246px;}
.fc9{color:rgb(46,116,181);}
.fc6{color:rgb(196,89,17);}
.fc5{color:transparent;}
.fc8{color:rgb(5,99,193);}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,143,211);}
.fc2{color:rgb(0,148,214);}
.fc1{color:rgb(20,65,118);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.359956px;}
.fsa{font-size:35.999942px;}
.fsd{font-size:41.759933px;}
.fsc{font-size:51.119918px;}
.fs1{font-size:59.759904px;}
.fs7{font-size:66.239894px;}
.fs8{font-size:71.999885px;}
.fs0{font-size:84.239865px;}
.fs5{font-size:95.759847px;}
.fs2{font-size:107.999827px;}
.fs3{font-size:113.759818px;}
.fsb{font-size:120.239808px;}
.fs4{font-size:131.759789px;}
.fs6{font-size:167.759732px;}
.y157{bottom:-12.420146px;}
.y0{bottom:0.000000px;}
.y7a{bottom:3.235515px;}
.y7f{bottom:3.235592px;}
.y85{bottom:3.235687px;}
.y8a{bottom:3.235749px;}
.ya5{bottom:3.237952px;}
.y75{bottom:3.238139px;}
.ye1{bottom:3.239694px;}
.ye6{bottom:3.239755px;}
.yab{bottom:3.239847px;}
.yc7{bottom:3.239891px;}
.yb0{bottom:3.239909px;}
.y15c{bottom:3.239981px;}
.ycd{bottom:3.239986px;}
.yb6{bottom:3.240004px;}
.yd2{bottom:3.240048px;}
.ybc{bottom:3.240099px;}
.yd7{bottom:3.240110px;}
.ydc{bottom:3.240172px;}
.y90{bottom:3.241244px;}
.y96{bottom:3.241333px;}
.y9b{bottom:3.241395px;}
.ya1{bottom:3.241490px;}
.yc2{bottom:3.284829px;}
.y83{bottom:3.955657px;}
.y88{bottom:3.955719px;}
.y8e{bottom:3.955814px;}
.y49{bottom:3.955855px;}
.y16b{bottom:3.956077px;}
.ya9{bottom:3.958617px;}
.ye4{bottom:3.959726px;}
.y14d{bottom:3.959736px;}
.y151{bottom:3.959803px;}
.y154{bottom:3.959838px;}
.yc5{bottom:3.959861px;}
.yae{bottom:3.959879px;}
.y65{bottom:3.959951px;}
.ycb{bottom:3.959956px;}
.yb4{bottom:3.959974px;}
.yd0{bottom:3.960018px;}
.yba{bottom:3.960069px;}
.yd5{bottom:3.960080px;}
.y196{bottom:3.960088px;}
.ybf{bottom:3.960131px;}
.yda{bottom:3.960142px;}
.y19c{bottom:3.960163px;}
.y93{bottom:3.961276px;}
.y99{bottom:3.961365px;}
.y4d{bottom:3.961386px;}
.y9f{bottom:3.961460px;}
.ya3{bottom:3.961522px;}
.ydf{bottom:3.991164px;}
.y149{bottom:3.991168px;}
.y69{bottom:4.320032px;}
.y153{bottom:4.499838px;}
.y166{bottom:4.499868px;}
.yec{bottom:5.040000px;}
.y68{bottom:5.580030px;}
.y5f{bottom:5.580149px;}
.y198{bottom:5.940126px;}
.y19a{bottom:6.120126px;}
.y2{bottom:6.659931px;}
.y159{bottom:7.199957px;}
.y163{bottom:7.200066px;}
.y161{bottom:7.200068px;}
.y168{bottom:7.380119px;}
.y199{bottom:7.740123px;}
.y55{bottom:7.918053px;}
.y51{bottom:7.921516px;}
.y19e{bottom:8.131164px;}
.y15f{bottom:10.979865px;}
.y156{bottom:11.519816px;}
.y87{bottom:12.415705px;}
.ye3{bottom:12.599712px;}
.yad{bottom:12.599865px;}
.ycf{bottom:12.600004px;}
.yd4{bottom:12.600066px;}
.ybe{bottom:12.600117px;}
.yd9{bottom:12.600128px;}
.y92{bottom:12.601262px;}
.ya2{bottom:12.601508px;}
.yde{bottom:12.631150px;}
.y78{bottom:12.955471px;}
.y7d{bottom:12.955547px;}
.yea{bottom:12.959821px;}
.y5c{bottom:13.680136px;}
.y77{bottom:16.915465px;}
.y7c{bottom:16.915541px;}
.y70{bottom:17.100211px;}
.y6c{bottom:17.280078px;}
.y95{bottom:20.521306px;}
.yc1{bottom:20.564801px;}
.yc4{bottom:21.239833px;}
.y98{bottom:21.241338px;}
.y81{bottom:22.855626px;}
.y8c{bottom:22.855783px;}
.yb2{bottom:22.859944px;}
.yb8{bottom:22.860039px;}
.y9d{bottom:22.861430px;}
.ya7{bottom:22.886787px;}
.yc9{bottom:23.039925px;}
.y15b{bottom:23.939948px;}
.y150{bottom:24.119771px;}
.y14c{bottom:24.299703px;}
.y148{bottom:24.331136px;}
.y82{bottom:24.655624px;}
.y8d{bottom:24.655781px;}
.y48{bottom:24.655822px;}
.y14b{bottom:24.659703px;}
.y14f{bottom:24.659770px;}
.yca{bottom:24.659923px;}
.yb3{bottom:24.659941px;}
.yb9{bottom:24.660036px;}
.y4c{bottom:24.661353px;}
.y9e{bottom:24.661427px;}
.ya8{bottom:24.686784px;}
.y16a{bottom:24.686944px;}
.y147{bottom:24.691135px;}
.y64{bottom:24.704918px;}
.y6e{bottom:24.840132px;}
.y6b{bottom:25.020066px;}
.y165{bottom:25.199835px;}
.ye8{bottom:27.539797px;}
.y54{bottom:28.618020px;}
.y50{bottom:28.621483px;}
.yed{bottom:28.799946px;}
.y15e{bottom:31.679832px;}
.y63{bottom:32.444906px;}
.ye9{bottom:33.659787px;}
.y6{bottom:34.019946px;}
.y67{bottom:34.019984px;}
.y5b{bottom:34.380103px;}
.y5e{bottom:35.280102px;}
.y1{bottom:36.180000px;}
.yeb{bottom:37.079941px;}
.y62{bottom:53.144873px;}
.y47{bottom:55.615772px;}
.y4b{bottom:55.801303px;}
.y4f{bottom:59.581433px;}
.y53{bottom:59.757970px;}
.y5a{bottom:64.080056px;}
.y5d{bottom:64.980054px;}
.y56{bottom:68.757955px;}
.y61{bottom:82.844825px;}
.y152{bottom:97.020000px;}
.ye7{bottom:99.180000px;}
.y40{bottom:110.159824px;}
.y14e{bottom:118.980000px;}
.y1a2{bottom:122.039805px;}
.y21{bottom:129.419793px;}
.y11c{bottom:129.960392px;}
.y3f{bottom:137.376380px;}
.y1a1{bottom:142.739772px;}
.ye5{bottom:149.580000px;}
.y11b{bottom:150.660359px;}
.y20{bottom:153.571254px;}
.y14a{bottom:161.100000px;}
.y1a0{bottom:163.439738px;}
.ye2{bottom:167.580000px;}
.y11a{bottom:171.360326px;}
.y3e{bottom:173.191223px;}
.y1f{bottom:180.751211px;}
.y19f{bottom:184.139705px;}
.ye0{bottom:188.280000px;}
.y6f{bottom:188.310960px;}
.y119{bottom:192.060293px;}
.y19d{bottom:201.600000px;}
.y146{bottom:203.400000px;}
.ydd{bottom:206.280000px;}
.y1c9{bottom:207.391168px;}
.y1e{bottom:207.931167px;}
.y3d{bottom:208.831166px;}
.y118{bottom:212.791160px;}
.ydb{bottom:227.010960px;}
.y1c8{bottom:228.091135px;}
.y6d{bottom:229.890960px;}
.y19b{bottom:231.510960px;}
.y117{bottom:233.491126px;}
.y1d{bottom:234.931124px;}
.y3c{bottom:244.471109px;}
.yd8{bottom:245.010960px;}
.y145{bottom:245.550960px;}
.y1c7{bottom:248.791102px;}
.y197{bottom:252.930960px;}
.y116{bottom:254.191093px;}
.y1c{bottom:262.111081px;}
.yd6{bottom:265.710960px;}
.y1c6{bottom:269.491069px;}
.y144{bottom:270.931067px;}
.y6a{bottom:271.470960px;}
.y115{bottom:274.891060px;}
.y195{bottom:278.490960px;}
.y3b{bottom:280.291052px;}
.yd3{bottom:283.710960px;}
.y1b{bottom:289.291037px;}
.y1c5{bottom:290.191036px;}
.y143{bottom:291.631033px;}
.y114{bottom:295.591027px;}
.y194{bottom:303.871014px;}
.yd1{bottom:304.410960px;}
.y1c4{bottom:310.891003px;}
.y142{bottom:312.331000px;}
.y66{bottom:313.230960px;}
.y3a{bottom:315.930995px;}
.y1a{bottom:316.110994px;}
.y113{bottom:316.290994px;}
.yce{bottom:322.410960px;}
.y193{bottom:324.570981px;}
.y1c3{bottom:331.590969px;}
.y141{bottom:333.030967px;}
.y19{bottom:335.910963px;}
.y112{bottom:336.990961px;}
.ycc{bottom:343.110960px;}
.y192{bottom:345.270948px;}
.y39{bottom:351.570937px;}
.y1c2{bottom:352.290936px;}
.y140{bottom:353.730934px;}
.y18{bottom:355.710931px;}
.yc8{bottom:361.110960px;}
.y60{bottom:363.990960px;}
.y191{bottom:365.970914px;}
.y1c1{bottom:372.990903px;}
.y13f{bottom:374.430901px;}
.y111{bottom:375.690899px;}
.y17{bottom:376.950897px;}
.y190{bottom:386.670881px;}
.y38{bottom:387.435880px;}
.y1c0{bottom:393.690870px;}
.y13e{bottom:395.130868px;}
.yc6{bottom:402.510960px;}
.y18f{bottom:407.370848px;}
.y15d{bottom:410.970960px;}
.y16{bottom:412.995839px;}
.y110{bottom:414.390837px;}
.y164{bottom:415.650960px;}
.y13d{bottom:415.830835px;}
.yc3{bottom:420.510960px;}
.y37{bottom:423.075823px;}
.y18e{bottom:428.070815px;}
.y10f{bottom:435.090804px;}
.y13c{bottom:436.530802px;}
.yc0{bottom:441.210960px;}
.y18d{bottom:448.815782px;}
.y10e{bottom:455.835771px;}
.y13b{bottom:457.275768px;}
.y15{bottom:457.815767px;}
.y36{bottom:458.715766px;}
.y59{bottom:463.575600px;}
.y1bf{bottom:464.835756px;}
.y18c{bottom:469.515749px;}
.ybd{bottom:476.535600px;}
.y10d{bottom:476.535738px;}
.y13a{bottom:477.975735px;}
.y167{bottom:480.855600px;}
.y18b{bottom:490.215716px;}
.y14{bottom:490.395715px;}
.y35{bottom:494.535709px;}
.ybb{bottom:497.235600px;}
.y10c{bottom:497.235704px;}
.y139{bottom:498.675702px;}
.y18a{bottom:510.915683px;}
.y160{bottom:513.075600px;}
.y162{bottom:513.975600px;}
.yb7{bottom:515.235600px;}
.y1be{bottom:515.235676px;}
.y10b{bottom:517.935671px;}
.y138{bottom:519.375669px;}
.y13{bottom:522.795664px;}
.y34{bottom:530.175652px;}
.y189{bottom:531.615649px;}
.y1bd{bottom:535.935643px;}
.y10a{bottom:538.635638px;}
.y137{bottom:540.075636px;}
.y188{bottom:552.315616px;}
.yb5{bottom:556.635600px;}
.y1bc{bottom:556.635609px;}
.y12{bottom:557.895607px;}
.y136{bottom:560.775603px;}
.y33{bottom:565.995594px;}
.y58{bottom:566.535594px;}
.y15a{bottom:571.215600px;}
.y187{bottom:573.015583px;}
.yb1{bottom:574.635600px;}
.y109{bottom:576.615577px;}
.y1bb{bottom:577.335576px;}
.y135{bottom:581.475570px;}
.y158{bottom:582.015600px;}
.y186{bottom:593.715550px;}
.y108{bottom:593.895550px;}
.y1ba{bottom:598.035543px;}
.y11{bottom:601.634337px;}
.y32{bottom:601.635537px;}
.y134{bottom:602.175537px;}
.y57{bottom:605.955530px;}
.y107{bottom:611.175522px;}
.y185{bottom:614.415517px;}
.yaf{bottom:616.035600px;}
.y1b9{bottom:618.735510px;}
.y133{bottom:622.875503px;}
.y106{bottom:628.455494px;}
.yac{bottom:634.035600px;}
.y184{bottom:635.115484px;}
.y31{bottom:637.275480px;}
.y1b8{bottom:639.435477px;}
.y132{bottom:643.575470px;}
.y10{bottom:645.222468px;}
.y105{bottom:645.735467px;}
.y52{bottom:646.664400px;}
.yaa{bottom:654.735600px;}
.y183{bottom:655.815451px;}
.y1b7{bottom:660.135444px;}
.y104{bottom:662.835439px;}
.y131{bottom:664.275437px;}
.y155{bottom:666.075600px;}
.ya6{bottom:672.735600px;}
.y30{bottom:673.122423px;}
.y182{bottom:676.515418px;}
.y103{bottom:680.142412px;}
.y1b6{bottom:680.862411px;}
.y130{bottom:685.002404px;}
.yf{bottom:688.782398px;}
.y181{bottom:697.242384px;}
.y102{bottom:697.422384px;}
.y1b5{bottom:701.562377px;}
.y12f{bottom:705.702371px;}
.y2f{bottom:708.762366px;}
.ya4{bottom:714.164400px;}
.y101{bottom:714.702356px;}
.y180{bottom:717.942351px;}
.y1b4{bottom:722.082345px;}
.y12e{bottom:726.402338px;}
.y100{bottom:731.982329px;}
.y4e{bottom:732.160800px;}
.ye{bottom:734.682325px;}
.y17f{bottom:738.642318px;}
.y1b3{bottom:742.782312px;}
.y2e{bottom:744.402309px;}
.y12d{bottom:747.102305px;}
.yff{bottom:749.262301px;}
.ya0{bottom:752.860800px;}
.y17e{bottom:759.342285px;}
.y1b2{bottom:763.482278px;}
.y12c{bottom:767.802272px;}
.y9c{bottom:770.860800px;}
.yfe{bottom:779.142253px;}
.y17d{bottom:780.042252px;}
.y2d{bottom:780.222252px;}
.y1b1{bottom:784.182245px;}
.y12b{bottom:788.502238px;}
.y17c{bottom:800.742219px;}
.y1b0{bottom:804.882212px;}
.y12a{bottom:809.202205px;}
.yfd{bottom:811.902201px;}
.y9a{bottom:812.260800px;}
.y4a{bottom:817.480800px;}
.y17b{bottom:821.442186px;}
.y2c{bottom:822.882183px;}
.y1af{bottom:825.582179px;}
.y129{bottom:829.902172px;}
.y97{bottom:830.260800px;}
.yfc{bottom:832.602168px;}
.y17a{bottom:842.142153px;}
.y1ae{bottom:846.282146px;}
.y128{bottom:850.602139px;}
.y94{bottom:850.960800px;}
.yfb{bottom:853.302135px;}
.y2b{bottom:857.262128px;}
.y179{bottom:862.842119px;}
.y1ad{bottom:866.982113px;}
.y127{bottom:871.302106px;}
.yfa{bottom:874.002102px;}
.y178{bottom:883.542086px;}
.y91{bottom:886.240800px;}
.y1ac{bottom:887.682080px;}
.y2a{bottom:891.642073px;}
.y126{bottom:892.002073px;}
.yf9{bottom:894.702068px;}
.y46{bottom:899.071200px;}
.y177{bottom:904.242053px;}
.y8f{bottom:906.940800px;}
.y1ab{bottom:908.382047px;}
.y125{bottom:912.702040px;}
.yf8{bottom:915.402035px;}
.y176{bottom:924.987020px;}
.y8b{bottom:924.991200px;}
.y29{bottom:926.067018px;}
.y1aa{bottom:929.127013px;}
.y124{bottom:933.447006px;}
.yf7{bottom:936.147002px;}
.y175{bottom:946.586985px;}
.yd{bottom:949.466981px;}
.y1a9{bottom:949.826980px;}
.y28{bottom:953.246975px;}
.y123{bottom:954.146973px;}
.y174{bottom:955.586971px;}
.yf6{bottom:956.846969px;}
.y89{bottom:966.391200px;}
.y1a8{bottom:970.526947px;}
.y45{bottom:973.406943px;}
.y122{bottom:974.846940px;}
.yf5{bottom:977.546936px;}
.y173{bottom:979.346933px;}
.y86{bottom:984.391200px;}
.y172{bottom:988.346919px;}
.y1a7{bottom:991.226914px;}
.yc{bottom:992.846911px;}
.y44{bottom:993.206911px;}
.y121{bottom:995.546907px;}
.y27{bottom:996.086906px;}
.yf4{bottom:998.246903px;}
.y43{bottom:1004.726892px;}
.y84{bottom:1005.091200px;}
.y171{bottom:1011.746881px;}
.y1a6{bottom:1014.266877px;}
.y1a5{bottom:1015.886875px;}
.y120{bottom:1016.246874px;}
.yf3{bottom:1018.946870px;}
.y80{bottom:1023.091200px;}
.yb{bottom:1023.806862px;}
.y26{bottom:1030.466851px;}
.y170{bottom:1032.806848px;}
.y11f{bottom:1036.946841px;}
.yf2{bottom:1048.646822px;}
.y42{bottom:1054.406813px;}
.ya{bottom:1054.946812px;}
.y16f{bottom:1055.666811px;}
.y11e{bottom:1057.646808px;}
.y7e{bottom:1064.491200px;}
.y25{bottom:1064.666797px;}
.y16e{bottom:1076.726777px;}
.yf1{bottom:1078.346775px;}
.y7b{bottom:1082.491200px;}
.y24{bottom:1087.346760px;}
.y9{bottom:1090.586755px;}
.y16d{bottom:1097.426744px;}
.yf0{bottom:1099.046742px;}
.y1a4{bottom:1099.047342px;}
.y79{bottom:1112.191200px;}
.y16c{bottom:1118.126711px;}
.y23{bottom:1118.306711px;}
.yef{bottom:1119.746708px;}
.y1a3{bottom:1119.747308px;}
.y8{bottom:1121.727305px;}
.y76{bottom:1130.191200px;}
.y169{bottom:1135.591200px;}
.y41{bottom:1138.646678px;}
.yee{bottom:1140.446675px;}
.y11d{bottom:1140.447275px;}
.y7{bottom:1152.718156px;}
.y74{bottom:1159.920000px;}
.y22{bottom:1161.178142px;}
.y73{bottom:1193.218091px;}
.y5{bottom:1193.398091px;}
.y72{bottom:1210.318063px;}
.y4{bottom:1210.498063px;}
.y71{bottom:1227.598036px;}
.y3{bottom:1227.778036px;}
.h20{height:17.100000px;}
.h29{height:17.136576px;}
.h2d{height:17.280000px;}
.h11{height:18.542783px;}
.h28{height:20.700000px;}
.h35{height:20.736576px;}
.h3e{height:21.240000px;}
.h12{height:24.398398px;}
.h48{height:24.840000px;}
.h43{height:27.180000px;}
.h40{height:27.360000px;}
.h2{height:27.720000px;}
.h3f{height:28.293768px;}
.h4b{height:29.016576px;}
.h24{height:29.700000px;}
.h22{height:29.736576px;}
.h2b{height:34.380000px;}
.h32{height:34.593768px;}
.h27{height:37.800000px;}
.h2a{height:37.836576px;}
.h2f{height:37.980000px;}
.h34{height:38.016576px;}
.h5{height:39.830210px;}
.h41{height:40.680000px;}
.h26{height:41.400000px;}
.h31{height:41.433768px;}
.h3b{height:41.436576px;}
.h4{height:41.493449px;}
.h1f{height:41.522629px;}
.h1d{height:41.580000px;}
.h1c{height:41.760000px;}
.h44{height:42.513768px;}
.hd{height:44.149148px;}
.h23{height:46.800000px;}
.h21{height:46.836576px;}
.h14{height:48.796797px;}
.h15{height:49.992108px;}
.hf{height:50.027264px;}
.h37{height:50.400000px;}
.h1b{height:50.760000px;}
.h2c{height:55.080000px;}
.h33{height:55.293768px;}
.h42{height:55.473768px;}
.h3{height:56.146199px;}
.he{height:57.092252px;}
.h38{height:57.600000px;}
.h3a{height:58.490766px;}
.h25{height:58.500000px;}
.h2e{height:58.680000px;}
.h30{height:58.713768px;}
.h3c{height:61.171777px;}
.ha{height:66.536261px;}
.h4a{height:67.651767px;}
.h36{height:67.680000px;}
.h3d{height:70.071919px;}
.hb{height:71.982307px;}
.h13{height:72.360000px;}
.h6{height:73.195195px;}
.h7{height:75.821363px;}
.h16{height:81.576720px;}
.h39{height:83.545530px;}
.h49{height:84.931739px;}
.h17{height:85.320000px;}
.h18{height:85.500000px;}
.h45{height:85.911894px;}
.h47{height:86.027206px;}
.h8{height:89.298138px;}
.h9{height:89.302938px;}
.h46{height:97.171720px;}
.h1a{height:99.573840px;}
.h19{height:99.720000px;}
.hc{height:113.696537px;}
.h10{height:116.563524px;}
.h1e{height:1262.879850px;}
.h1{height:1263.000000px;}
.h0{height:1263.059850px;}
.w2{width:21.093768px;}
.w9{width:73.980000px;}
.wa{width:126.720000px;}
.w12{width:188.490960px;}
.w13{width:190.108080px;}
.w15{width:191.188080px;}
.w14{width:193.890960px;}
.wf{width:198.388080px;}
.w10{width:210.450960px;}
.wc{width:213.148080px;}
.wb{width:223.228080px;}
.w11{width:230.788080px;}
.w16{width:246.988080px;}
.w18{width:247.035600px;}
.w17{width:247.168080px;}
.wd{width:304.815600px;}
.we{width:323.533440px;}
.w3{width:369.795600px;}
.w4{width:369.824400px;}
.w5{width:371.804400px;}
.w6{width:406.695600px;}
.w8{width:648.284400px;}
.w7{width:892.979850px;}
.w1{width:893.250000px;}
.w0{width:893.339850px;}
.x0{left:0.000000px;}
.x1b{left:8.099865px;}
.x35{left:18.899712px;}
.x39{left:20.158230px;}
.x4a{left:21.598227px;}
.x1f{left:23.396089px;}
.x32{left:24.659703px;}
.x1e{left:27.896082px;}
.x57{left:30.058121px;}
.x2f{left:32.760352px;}
.x3c{left:35.998204px;}
.x23{left:40.467210px;}
.x36{left:44.278191px;}
.x3b{left:46.079669px;}
.x4d{left:47.340290px;}
.x54{left:50.219662px;}
.x50{left:55.799653px;}
.x48{left:56.878230px;}
.x4f{left:58.183076px;}
.x2d{left:59.939647px;}
.x42{left:64.618244px;}
.x38{left:70.560291px;}
.x52{left:73.663052px;}
.x33{left:74.700285px;}
.x5{left:76.499878px;}
.x16{left:80.819871px;}
.x1a{left:84.996464px;}
.x47{left:88.558179px;}
.x4{left:90.396455px;}
.x44{left:92.700138px;}
.x34{left:94.318111px;}
.x55{left:96.883015px;}
.x20{left:100.837339px;}
.x53{left:101.923007px;}
.x56{left:102.960201px;}
.x51{left:106.560196px;}
.x3e{left:108.224968px;}
.x15{left:110.016424px;}
.x17{left:111.815821px;}
.x37{left:116.143076px;}
.x3a{left:123.163065px;}
.x21{left:127.476396px;}
.xb{left:129.636393px;}
.x31{left:135.403045px;}
.x4c{left:137.196380px;}
.xd{left:139.176902px;}
.x2{left:141.336374px;}
.x8{left:147.636364px;}
.x6{left:148.716362px;}
.xc{left:151.951257px;}
.x43{left:158.610960px;}
.x13{left:161.491242px;}
.x12{left:174.271221px;}
.x3f{left:182.924849px;}
.x25{left:190.471195px;}
.x40{left:194.070960px;}
.xa{left:225.571139px;}
.x3{left:240.330215px;}
.x3d{left:248.970960px;}
.x7{left:250.950648px;}
.x24{left:260.131084px;}
.x10{left:269.176069px;}
.xe{left:303.195640px;}
.x2e{left:309.855600px;}
.x27{left:325.695979px;}
.x49{left:333.255600px;}
.x18{left:337.215960px;}
.x2a{left:340.995954px;}
.x28{left:343.695950px;}
.x14{left:353.595934px;}
.x58{left:355.215932px;}
.xf{left:358.635926px;}
.x19{left:361.155922px;}
.x2b{left:365.295916px;}
.x2c{left:380.055892px;}
.x29{left:383.655886px;}
.x26{left:397.875863px;}
.x1{left:436.035600px;}
.x11{left:446.655785px;}
.x1c{left:448.304400px;}
.x41{left:470.084400px;}
.x9{left:473.322743px;}
.x46{left:486.824400px;}
.x45{left:502.304400px;}
.x30{left:523.724400px;}
.x4e{left:581.504400px;}
.x4b{left:676.228018px;}
.x1d{left:733.291200px;}
.x22{left:766.080000px;}
@media print{
.va{vertical-align:-35.199944pt;}
.vc{vertical-align:-14.079977pt;}
.v2{vertical-align:-12.799980pt;}
.v7{vertical-align:-8.959986pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:5.759991pt;}
.v3{vertical-align:12.799980pt;}
.v9{vertical-align:21.119966pt;}
.v1{vertical-align:23.679962pt;}
.v6{vertical-align:28.159955pt;}
.v5{vertical-align:31.999949pt;}
.v4{vertical-align:37.759940pt;}
.v8{vertical-align:40.959934pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.173866pt;}
.ls16{letter-spacing:0.259840pt;}
.ls0{letter-spacing:0.269999pt;}
.ls7{letter-spacing:0.319999pt;}
.ls5{letter-spacing:0.322133pt;}
.ls8{letter-spacing:0.447999pt;}
.lsa{letter-spacing:0.639999pt;}
.ls1a{letter-spacing:0.767999pt;}
.ls15{letter-spacing:0.856105pt;}
.ls10{letter-spacing:2.490236pt;}
.ls13{letter-spacing:2.758236pt;}
.ls14{letter-spacing:2.778236pt;}
.ls12{letter-spacing:3.868794pt;}
.ls17{letter-spacing:4.068900pt;}
.lsf{letter-spacing:16.639973pt;}
.ls18{letter-spacing:25.983958pt;}
.ls19{letter-spacing:31.295950pt;}
.lse{letter-spacing:85.247864pt;}
.ls1{letter-spacing:749.625681pt;}
.ls4{letter-spacing:752.270796pt;}
.ws9{word-spacing:-54.188073pt;}
.ws3{word-spacing:-18.719970pt;}
.ws8{word-spacing:-16.127974pt;}
.ws2{word-spacing:-15.999974pt;}
.wsa{word-spacing:-15.871975pt;}
.wsb{word-spacing:-14.079977pt;}
.wsd{word-spacing:-14.015978pt;}
.ws6{word-spacing:-13.599978pt;}
.ws0{word-spacing:-13.549978pt;}
.ws7{word-spacing:-13.374912pt;}
.ws4{word-spacing:-13.279979pt;}
.ws5{word-spacing:-13.232619pt;}
.wsc{word-spacing:-9.996784pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-8.639986pt;}
._13{margin-left:-7.103989pt;}
._8{margin-left:-5.651967pt;}
._7{margin-left:-4.340563pt;}
._2{margin-left:-3.301624pt;}
._3{margin-left:-1.956178pt;}
._1{margin-left:-0.906720pt;}
._0{width:0.953264pt;}
._10{width:1.851900pt;}
._4{width:2.752873pt;}
._6{width:4.001055pt;}
._f{width:4.999968pt;}
._15{width:6.487998pt;}
._1a{width:7.382119pt;}
._e{width:8.346561pt;}
._c{width:9.860016pt;}
._d{width:10.891746pt;}
._16{width:12.296005pt;}
._17{width:13.451403pt;}
._18{width:14.463977pt;}
._14{width:17.464162pt;}
._11{width:19.012002pt;}
._12{width:19.902460pt;}
._1b{width:21.005554pt;}
._a{width:22.984027pt;}
._b{width:23.930751pt;}
._9{width:31.981815pt;}
._5{width:120.934912pt;}
._1c{width:752.140663pt;}
.fs9{font-size:24.319961pt;}
.fsa{font-size:31.999949pt;}
.fsd{font-size:37.119941pt;}
.fsc{font-size:45.439927pt;}
.fs1{font-size:53.119915pt;}
.fs7{font-size:58.879906pt;}
.fs8{font-size:63.999898pt;}
.fs0{font-size:74.879880pt;}
.fs5{font-size:85.119864pt;}
.fs2{font-size:95.999846pt;}
.fs3{font-size:101.119838pt;}
.fsb{font-size:106.879829pt;}
.fs4{font-size:117.119813pt;}
.fs6{font-size:149.119761pt;}
.y157{bottom:-11.040130pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:2.876014pt;}
.y7f{bottom:2.876081pt;}
.y85{bottom:2.876166pt;}
.y8a{bottom:2.876221pt;}
.ya5{bottom:2.878180pt;}
.y75{bottom:2.878346pt;}
.ye1{bottom:2.879728pt;}
.ye6{bottom:2.879783pt;}
.yab{bottom:2.879864pt;}
.yc7{bottom:2.879903pt;}
.yb0{bottom:2.879919pt;}
.y15c{bottom:2.879983pt;}
.ycd{bottom:2.879987pt;}
.yb6{bottom:2.880004pt;}
.yd2{bottom:2.880042pt;}
.ybc{bottom:2.880088pt;}
.yd7{bottom:2.880097pt;}
.ydc{bottom:2.880153pt;}
.y90{bottom:2.881106pt;}
.y96{bottom:2.881185pt;}
.y9b{bottom:2.881240pt;}
.ya1{bottom:2.881325pt;}
.yc2{bottom:2.919848pt;}
.y83{bottom:3.516139pt;}
.y88{bottom:3.516194pt;}
.y8e{bottom:3.516279pt;}
.y49{bottom:3.516316pt;}
.y16b{bottom:3.516513pt;}
.ya9{bottom:3.518771pt;}
.ye4{bottom:3.519756pt;}
.y14d{bottom:3.519765pt;}
.y151{bottom:3.519825pt;}
.y154{bottom:3.519856pt;}
.yc5{bottom:3.519876pt;}
.yae{bottom:3.519893pt;}
.y65{bottom:3.519957pt;}
.ycb{bottom:3.519961pt;}
.yb4{bottom:3.519977pt;}
.yd0{bottom:3.520016pt;}
.yba{bottom:3.520062pt;}
.yd5{bottom:3.520071pt;}
.y196{bottom:3.520078pt;}
.ybf{bottom:3.520117pt;}
.yda{bottom:3.520126pt;}
.y19c{bottom:3.520145pt;}
.y93{bottom:3.521134pt;}
.y99{bottom:3.521214pt;}
.y4d{bottom:3.521232pt;}
.y9f{bottom:3.521298pt;}
.ya3{bottom:3.521353pt;}
.ydf{bottom:3.547701pt;}
.y149{bottom:3.547705pt;}
.y69{bottom:3.840028pt;}
.y153{bottom:3.999856pt;}
.y166{bottom:3.999882pt;}
.yec{bottom:4.480000pt;}
.y68{bottom:4.960027pt;}
.y5f{bottom:4.960133pt;}
.y198{bottom:5.280112pt;}
.y19a{bottom:5.440112pt;}
.y2{bottom:5.919939pt;}
.y159{bottom:6.399962pt;}
.y163{bottom:6.400059pt;}
.y161{bottom:6.400060pt;}
.y168{bottom:6.560106pt;}
.y199{bottom:6.880109pt;}
.y55{bottom:7.038269pt;}
.y51{bottom:7.041347pt;}
.y19e{bottom:7.227702pt;}
.y15f{bottom:9.759880pt;}
.y156{bottom:10.239836pt;}
.y87{bottom:11.036182pt;}
.ye3{bottom:11.199744pt;}
.yad{bottom:11.199880pt;}
.ycf{bottom:11.200004pt;}
.yd4{bottom:11.200059pt;}
.ybe{bottom:11.200104pt;}
.yd9{bottom:11.200114pt;}
.y92{bottom:11.201122pt;}
.ya2{bottom:11.201341pt;}
.yde{bottom:11.227689pt;}
.y78{bottom:11.515974pt;}
.y7d{bottom:11.516042pt;}
.yea{bottom:11.519841pt;}
.y5c{bottom:12.160121pt;}
.y77{bottom:15.035969pt;}
.y7c{bottom:15.036036pt;}
.y70{bottom:15.200188pt;}
.y6c{bottom:15.360069pt;}
.y95{bottom:18.241161pt;}
.yc1{bottom:18.279823pt;}
.yc4{bottom:18.879852pt;}
.y98{bottom:18.881189pt;}
.y81{bottom:20.316112pt;}
.y8c{bottom:20.316252pt;}
.yb2{bottom:20.319950pt;}
.yb8{bottom:20.320035pt;}
.y9d{bottom:20.321271pt;}
.ya7{bottom:20.343811pt;}
.yc9{bottom:20.479934pt;}
.y15b{bottom:21.279954pt;}
.y150{bottom:21.439796pt;}
.y14c{bottom:21.599736pt;}
.y148{bottom:21.627676pt;}
.y82{bottom:21.916110pt;}
.y8d{bottom:21.916249pt;}
.y48{bottom:21.916286pt;}
.y14b{bottom:21.919736pt;}
.y14f{bottom:21.919796pt;}
.yca{bottom:21.919931pt;}
.yb3{bottom:21.919948pt;}
.yb9{bottom:21.920032pt;}
.y4c{bottom:21.921202pt;}
.y9e{bottom:21.921269pt;}
.ya8{bottom:21.943808pt;}
.y16a{bottom:21.943950pt;}
.y147{bottom:21.947676pt;}
.y64{bottom:21.959927pt;}
.y6e{bottom:22.080118pt;}
.y6b{bottom:22.240058pt;}
.y165{bottom:22.399853pt;}
.ye8{bottom:24.479820pt;}
.y54{bottom:25.438240pt;}
.y50{bottom:25.441318pt;}
.yed{bottom:25.599952pt;}
.y15e{bottom:28.159850pt;}
.y63{bottom:28.839916pt;}
.ye9{bottom:29.919811pt;}
.y6{bottom:30.239952pt;}
.y67{bottom:30.239986pt;}
.y5b{bottom:30.560092pt;}
.y5e{bottom:31.360091pt;}
.y1{bottom:32.160000pt;}
.yeb{bottom:32.959947pt;}
.y62{bottom:47.239887pt;}
.y47{bottom:49.436242pt;}
.y4b{bottom:49.601158pt;}
.y4f{bottom:52.961274pt;}
.y53{bottom:53.118195pt;}
.y5a{bottom:56.960050pt;}
.y5d{bottom:57.760048pt;}
.y56{bottom:61.118183pt;}
.y61{bottom:73.639844pt;}
.y152{bottom:86.240000pt;}
.ye7{bottom:88.160000pt;}
.y40{bottom:97.919843pt;}
.y14e{bottom:105.760000pt;}
.y1a2{bottom:108.479826pt;}
.y21{bottom:115.039816pt;}
.y11c{bottom:115.520349pt;}
.y3f{bottom:122.112338pt;}
.y1a1{bottom:126.879797pt;}
.ye5{bottom:132.960000pt;}
.y11b{bottom:133.920319pt;}
.y20{bottom:136.507782pt;}
.y14a{bottom:143.200000pt;}
.y1a0{bottom:145.279768pt;}
.ye2{bottom:148.960000pt;}
.y11a{bottom:152.320290pt;}
.y3e{bottom:153.947754pt;}
.y1f{bottom:160.667743pt;}
.y19f{bottom:163.679738pt;}
.ye0{bottom:167.360000pt;}
.y6f{bottom:167.387520pt;}
.y119{bottom:170.720260pt;}
.y19d{bottom:179.200000pt;}
.y146{bottom:180.800000pt;}
.ydd{bottom:183.360000pt;}
.y1c9{bottom:184.347705pt;}
.y1e{bottom:184.827704pt;}
.y3d{bottom:185.627703pt;}
.y118{bottom:189.147697pt;}
.ydb{bottom:201.787520pt;}
.y1c8{bottom:202.747676pt;}
.y6d{bottom:204.347520pt;}
.y19b{bottom:205.787520pt;}
.y117{bottom:207.547668pt;}
.y1d{bottom:208.827666pt;}
.y3c{bottom:217.307652pt;}
.yd8{bottom:217.787520pt;}
.y145{bottom:218.267520pt;}
.y1c7{bottom:221.147646pt;}
.y197{bottom:224.827520pt;}
.y116{bottom:225.947638pt;}
.y1c{bottom:232.987627pt;}
.yd6{bottom:236.187520pt;}
.y1c6{bottom:239.547617pt;}
.y144{bottom:240.827615pt;}
.y6a{bottom:241.307520pt;}
.y115{bottom:244.347609pt;}
.y195{bottom:247.547520pt;}
.y3b{bottom:249.147601pt;}
.yd3{bottom:252.187520pt;}
.y1b{bottom:257.147589pt;}
.y1c5{bottom:257.947587pt;}
.y143{bottom:259.227585pt;}
.y114{bottom:262.747580pt;}
.y194{bottom:270.107568pt;}
.yd1{bottom:270.587520pt;}
.y1c4{bottom:276.347558pt;}
.y142{bottom:277.627556pt;}
.y66{bottom:278.427520pt;}
.y3a{bottom:280.827551pt;}
.y1a{bottom:280.987550pt;}
.y113{bottom:281.147550pt;}
.yce{bottom:286.587520pt;}
.y193{bottom:288.507538pt;}
.y1c3{bottom:294.747528pt;}
.y141{bottom:296.027526pt;}
.y19{bottom:298.587522pt;}
.y112{bottom:299.547521pt;}
.ycc{bottom:304.987520pt;}
.y192{bottom:306.907509pt;}
.y39{bottom:312.507500pt;}
.y1c2{bottom:313.147499pt;}
.y140{bottom:314.427497pt;}
.y18{bottom:316.187494pt;}
.yc8{bottom:320.987520pt;}
.y60{bottom:323.547520pt;}
.y191{bottom:325.307480pt;}
.y1c1{bottom:331.547470pt;}
.y13f{bottom:332.827467pt;}
.y111{bottom:333.947466pt;}
.y17{bottom:335.067464pt;}
.y190{bottom:343.707450pt;}
.y38{bottom:344.387449pt;}
.y1c0{bottom:349.947440pt;}
.y13e{bottom:351.227438pt;}
.yc6{bottom:357.787520pt;}
.y18f{bottom:362.107421pt;}
.y15d{bottom:365.307520pt;}
.y16{bottom:367.107413pt;}
.y110{bottom:368.347411pt;}
.y164{bottom:369.467520pt;}
.y13d{bottom:369.627409pt;}
.yc3{bottom:373.787520pt;}
.y37{bottom:376.067398pt;}
.y18e{bottom:380.507391pt;}
.y10f{bottom:386.747381pt;}
.y13c{bottom:388.027379pt;}
.yc0{bottom:392.187520pt;}
.y18d{bottom:398.947362pt;}
.y10e{bottom:405.187352pt;}
.y13b{bottom:406.467350pt;}
.y15{bottom:406.947349pt;}
.y36{bottom:407.747348pt;}
.y59{bottom:412.067200pt;}
.y1bf{bottom:413.187339pt;}
.y18c{bottom:417.347332pt;}
.ybd{bottom:423.587200pt;}
.y10d{bottom:423.587322pt;}
.y13a{bottom:424.867320pt;}
.y167{bottom:427.427200pt;}
.y18b{bottom:435.747303pt;}
.y14{bottom:435.907303pt;}
.y35{bottom:439.587297pt;}
.ybb{bottom:441.987200pt;}
.y10c{bottom:441.987293pt;}
.y139{bottom:443.267291pt;}
.y18a{bottom:454.147273pt;}
.y160{bottom:456.067200pt;}
.y162{bottom:456.867200pt;}
.yb7{bottom:457.987200pt;}
.y1be{bottom:457.987267pt;}
.y10b{bottom:460.387263pt;}
.y138{bottom:461.667261pt;}
.y13{bottom:464.707256pt;}
.y34{bottom:471.267246pt;}
.y189{bottom:472.547244pt;}
.y1bd{bottom:476.387238pt;}
.y10a{bottom:478.787234pt;}
.y137{bottom:480.067232pt;}
.y188{bottom:490.947214pt;}
.yb5{bottom:494.787200pt;}
.y1bc{bottom:494.787208pt;}
.y12{bottom:495.907207pt;}
.y136{bottom:498.467202pt;}
.y33{bottom:503.107195pt;}
.y58{bottom:503.587194pt;}
.y15a{bottom:507.747200pt;}
.y187{bottom:509.347185pt;}
.yb1{bottom:510.787200pt;}
.y109{bottom:512.547180pt;}
.y1bb{bottom:513.187179pt;}
.y135{bottom:516.867173pt;}
.y158{bottom:517.347200pt;}
.y186{bottom:527.747156pt;}
.y108{bottom:527.907155pt;}
.y1ba{bottom:531.587149pt;}
.y11{bottom:534.786078pt;}
.y32{bottom:534.787144pt;}
.y134{bottom:535.267144pt;}
.y57{bottom:538.627138pt;}
.y107{bottom:543.267131pt;}
.y185{bottom:546.147126pt;}
.yaf{bottom:547.587200pt;}
.y1b9{bottom:549.987120pt;}
.y133{bottom:553.667114pt;}
.y106{bottom:558.627106pt;}
.yac{bottom:563.587200pt;}
.y184{bottom:564.547097pt;}
.y31{bottom:566.467094pt;}
.y1b8{bottom:568.387091pt;}
.y132{bottom:572.067085pt;}
.y10{bottom:573.531082pt;}
.y105{bottom:573.987082pt;}
.y52{bottom:574.812800pt;}
.yaa{bottom:581.987200pt;}
.y183{bottom:582.947067pt;}
.y1b7{bottom:586.787061pt;}
.y104{bottom:589.187057pt;}
.y131{bottom:590.467055pt;}
.y155{bottom:592.067200pt;}
.ya6{bottom:597.987200pt;}
.y30{bottom:598.331043pt;}
.y182{bottom:601.347038pt;}
.y103{bottom:604.571033pt;}
.y1b6{bottom:605.211032pt;}
.y130{bottom:608.891026pt;}
.yf{bottom:612.251020pt;}
.y181{bottom:619.771008pt;}
.y102{bottom:619.931008pt;}
.y1b5{bottom:623.611002pt;}
.y12f{bottom:627.290996pt;}
.y2f{bottom:630.010992pt;}
.ya4{bottom:634.812800pt;}
.y101{bottom:635.290984pt;}
.y180{bottom:638.170979pt;}
.y1b4{bottom:641.850973pt;}
.y12e{bottom:645.690967pt;}
.y100{bottom:650.650959pt;}
.y4e{bottom:650.809600pt;}
.ye{bottom:653.050955pt;}
.y17f{bottom:656.570949pt;}
.y1b3{bottom:660.250944pt;}
.y2e{bottom:661.690941pt;}
.y12d{bottom:664.090937pt;}
.yff{bottom:666.010934pt;}
.ya0{bottom:669.209600pt;}
.y17e{bottom:674.970920pt;}
.y1b2{bottom:678.650914pt;}
.y12c{bottom:682.490908pt;}
.y9c{bottom:685.209600pt;}
.yfe{bottom:692.570892pt;}
.y17d{bottom:693.370891pt;}
.y2d{bottom:693.530890pt;}
.y1b1{bottom:697.050885pt;}
.y12b{bottom:700.890879pt;}
.y17c{bottom:711.770861pt;}
.y1b0{bottom:715.450855pt;}
.y12a{bottom:719.290849pt;}
.yfd{bottom:721.690845pt;}
.y9a{bottom:722.009600pt;}
.y4a{bottom:726.649600pt;}
.y17b{bottom:730.170832pt;}
.y2c{bottom:731.450830pt;}
.y1af{bottom:733.850826pt;}
.y129{bottom:737.690820pt;}
.y97{bottom:738.009600pt;}
.yfc{bottom:740.090816pt;}
.y17a{bottom:748.570802pt;}
.y1ae{bottom:752.250796pt;}
.y128{bottom:756.090790pt;}
.y94{bottom:756.409600pt;}
.yfb{bottom:758.490786pt;}
.y2b{bottom:762.010781pt;}
.y179{bottom:766.970773pt;}
.y1ad{bottom:770.650767pt;}
.y127{bottom:774.490761pt;}
.yfa{bottom:776.890757pt;}
.y178{bottom:785.370743pt;}
.y91{bottom:787.769600pt;}
.y1ac{bottom:789.050738pt;}
.y2a{bottom:792.570732pt;}
.y126{bottom:792.890731pt;}
.yf9{bottom:795.290728pt;}
.y46{bottom:799.174400pt;}
.y177{bottom:803.770714pt;}
.y8f{bottom:806.169600pt;}
.y1ab{bottom:807.450708pt;}
.y125{bottom:811.290702pt;}
.yf8{bottom:813.690698pt;}
.y176{bottom:822.210684pt;}
.y8b{bottom:822.214400pt;}
.y29{bottom:823.170683pt;}
.y1aa{bottom:825.890679pt;}
.y124{bottom:829.730672pt;}
.yf7{bottom:832.130669pt;}
.y175{bottom:841.410654pt;}
.yd{bottom:843.970650pt;}
.y1a9{bottom:844.290649pt;}
.y28{bottom:847.330644pt;}
.y123{bottom:848.130643pt;}
.y174{bottom:849.410641pt;}
.yf6{bottom:850.530639pt;}
.y89{bottom:859.014400pt;}
.y1a8{bottom:862.690620pt;}
.y45{bottom:865.250616pt;}
.y122{bottom:866.530614pt;}
.yf5{bottom:868.930610pt;}
.y173{bottom:870.530607pt;}
.y86{bottom:875.014400pt;}
.y172{bottom:878.530594pt;}
.y1a7{bottom:881.090590pt;}
.yc{bottom:882.530588pt;}
.y44{bottom:882.850587pt;}
.y121{bottom:884.930584pt;}
.y27{bottom:885.410583pt;}
.yf4{bottom:887.330580pt;}
.y43{bottom:893.090571pt;}
.y84{bottom:893.414400pt;}
.y171{bottom:899.330561pt;}
.y1a6{bottom:901.570557pt;}
.y1a5{bottom:903.010555pt;}
.y120{bottom:903.330555pt;}
.yf3{bottom:905.730551pt;}
.y80{bottom:909.414400pt;}
.yb{bottom:910.050544pt;}
.y26{bottom:915.970534pt;}
.y170{bottom:918.050531pt;}
.y11f{bottom:921.730525pt;}
.yf2{bottom:932.130509pt;}
.y42{bottom:937.250500pt;}
.ya{bottom:937.730500pt;}
.y16f{bottom:938.370499pt;}
.y11e{bottom:940.130496pt;}
.y7e{bottom:946.214400pt;}
.y25{bottom:946.370486pt;}
.y16e{bottom:957.090469pt;}
.yf1{bottom:958.530466pt;}
.y7b{bottom:962.214400pt;}
.y24{bottom:966.530454pt;}
.y9{bottom:969.410449pt;}
.y16d{bottom:975.490439pt;}
.yf0{bottom:976.930437pt;}
.y1a4{bottom:976.930970pt;}
.y79{bottom:988.614400pt;}
.y16c{bottom:993.890410pt;}
.y23{bottom:994.050410pt;}
.yef{bottom:995.330407pt;}
.y1a3{bottom:995.330941pt;}
.y8{bottom:997.090938pt;}
.y76{bottom:1004.614400pt;}
.y169{bottom:1009.414400pt;}
.y41{bottom:1012.130381pt;}
.yee{bottom:1013.730378pt;}
.y11d{bottom:1013.730911pt;}
.y7{bottom:1024.638361pt;}
.y74{bottom:1031.040000pt;}
.y22{bottom:1032.158349pt;}
.y73{bottom:1060.638303pt;}
.y5{bottom:1060.798303pt;}
.y72{bottom:1075.838279pt;}
.y4{bottom:1075.998278pt;}
.y71{bottom:1091.198254pt;}
.y3{bottom:1091.358254pt;}
.h20{height:15.200000pt;}
.h29{height:15.232512pt;}
.h2d{height:15.360000pt;}
.h11{height:16.482474pt;}
.h28{height:18.400000pt;}
.h35{height:18.432512pt;}
.h3e{height:18.880000pt;}
.h12{height:21.687465pt;}
.h48{height:22.080000pt;}
.h43{height:24.160000pt;}
.h40{height:24.320000pt;}
.h2{height:24.640000pt;}
.h3f{height:25.150016pt;}
.h4b{height:25.792512pt;}
.h24{height:26.400000pt;}
.h22{height:26.432512pt;}
.h2b{height:30.560000pt;}
.h32{height:30.750016pt;}
.h27{height:33.600000pt;}
.h2a{height:33.632512pt;}
.h2f{height:33.760000pt;}
.h34{height:33.792512pt;}
.h5{height:35.404631pt;}
.h41{height:36.160000pt;}
.h26{height:36.800000pt;}
.h31{height:36.830016pt;}
.h3b{height:36.832512pt;}
.h4{height:36.883066pt;}
.h1f{height:36.909003pt;}
.h1d{height:36.960000pt;}
.h1c{height:37.120000pt;}
.h44{height:37.790016pt;}
.hd{height:39.243687pt;}
.h23{height:41.600000pt;}
.h21{height:41.632512pt;}
.h14{height:43.374931pt;}
.h15{height:44.437429pt;}
.hf{height:44.468679pt;}
.h37{height:44.800000pt;}
.h1b{height:45.120000pt;}
.h2c{height:48.960000pt;}
.h33{height:49.150016pt;}
.h42{height:49.310016pt;}
.h3{height:49.907733pt;}
.he{height:50.748669pt;}
.h38{height:51.200000pt;}
.h3a{height:51.991792pt;}
.h25{height:52.000000pt;}
.h2e{height:52.160000pt;}
.h30{height:52.190016pt;}
.h3c{height:54.374913pt;}
.ha{height:59.143343pt;}
.h4a{height:60.134904pt;}
.h36{height:60.160000pt;}
.h3d{height:62.286150pt;}
.hb{height:63.984273pt;}
.h13{height:64.320000pt;}
.h6{height:65.062396pt;}
.h7{height:67.396767pt;}
.h16{height:72.512640pt;}
.h39{height:74.262694pt;}
.h49{height:75.494879pt;}
.h17{height:75.840000pt;}
.h18{height:76.000000pt;}
.h45{height:76.366128pt;}
.h47{height:76.468628pt;}
.h8{height:79.376123pt;}
.h9{height:79.380390pt;}
.h46{height:86.374862pt;}
.h1a{height:88.510080pt;}
.h19{height:88.640000pt;}
.hc{height:101.063588pt;}
.h10{height:103.612022pt;}
.h1e{height:1122.559867pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719867pt;}
.w2{width:18.750016pt;}
.w9{width:65.760000pt;}
.wa{width:112.640000pt;}
.w12{width:167.547520pt;}
.w13{width:168.984960pt;}
.w15{width:169.944960pt;}
.w14{width:172.347520pt;}
.wf{width:176.344960pt;}
.w10{width:187.067520pt;}
.wc{width:189.464960pt;}
.wb{width:198.424960pt;}
.w11{width:205.144960pt;}
.w16{width:219.544960pt;}
.w18{width:219.587200pt;}
.w17{width:219.704960pt;}
.wd{width:270.947200pt;}
.we{width:287.585280pt;}
.w3{width:328.707200pt;}
.w4{width:328.732800pt;}
.w5{width:330.492800pt;}
.w6{width:361.507200pt;}
.w8{width:576.252800pt;}
.w7{width:793.759867pt;}
.w1{width:794.000000pt;}
.w0{width:794.079867pt;}
.x0{left:0.000000pt;}
.x1b{left:7.199880pt;}
.x35{left:16.799744pt;}
.x39{left:17.918426pt;}
.x4a{left:19.198424pt;}
.x1f{left:20.796524pt;}
.x32{left:21.919736pt;}
.x1e{left:24.796517pt;}
.x57{left:26.718330pt;}
.x2f{left:29.120313pt;}
.x3c{left:31.998404pt;}
.x23{left:35.970853pt;}
.x36{left:39.358392pt;}
.x3b{left:40.959706pt;}
.x4d{left:42.080258pt;}
.x54{left:44.639700pt;}
.x50{left:49.599692pt;}
.x48{left:50.558427pt;}
.x4f{left:51.718290pt;}
.x2d{left:53.279686pt;}
.x42{left:57.438440pt;}
.x38{left:62.720259pt;}
.x52{left:65.478268pt;}
.x33{left:66.400253pt;}
.x5{left:67.999891pt;}
.x16{left:71.839885pt;}
.x1a{left:75.552412pt;}
.x47{left:78.718382pt;}
.x4{left:80.352405pt;}
.x44{left:82.400123pt;}
.x34{left:83.838321pt;}
.x55{left:86.118235pt;}
.x20{left:89.633190pt;}
.x53{left:90.598228pt;}
.x56{left:91.520179pt;}
.x51{left:94.720174pt;}
.x3e{left:96.199972pt;}
.x15{left:97.792377pt;}
.x17{left:99.391841pt;}
.x37{left:103.238290pt;}
.x3a{left:109.478280pt;}
.x21{left:113.312352pt;}
.xb{left:115.232349pt;}
.x31{left:120.358263pt;}
.x4c{left:121.952338pt;}
.xd{left:123.712802pt;}
.x2{left:125.632332pt;}
.x8{left:131.232323pt;}
.x6{left:132.192322pt;}
.xc{left:135.067784pt;}
.x43{left:140.987520pt;}
.x13{left:143.547770pt;}
.x12{left:154.907752pt;}
.x3f{left:162.599866pt;}
.x25{left:169.307729pt;}
.x40{left:172.507520pt;}
.xa{left:200.507679pt;}
.x3{left:213.626858pt;}
.x3d{left:221.307520pt;}
.x7{left:223.067243pt;}
.x24{left:231.227630pt;}
.x10{left:239.267617pt;}
.xe{left:269.507235pt;}
.x2e{left:275.427200pt;}
.x27{left:289.507537pt;}
.x49{left:296.227200pt;}
.x18{left:299.747520pt;}
.x2a{left:303.107515pt;}
.x28{left:305.507511pt;}
.x14{left:314.307497pt;}
.x58{left:315.747495pt;}
.xf{left:318.787490pt;}
.x19{left:321.027486pt;}
.x2b{left:324.707480pt;}
.x2c{left:337.827459pt;}
.x29{left:341.027454pt;}
.x26{left:353.667434pt;}
.x1{left:387.587200pt;}
.x11{left:397.027365pt;}
.x1c{left:398.492800pt;}
.x41{left:417.852800pt;}
.x9{left:420.731327pt;}
.x46{left:432.732800pt;}
.x45{left:446.492800pt;}
.x30{left:465.532800pt;}
.x4e{left:516.892800pt;}
.x4b{left:601.091572pt;}
.x1d{left:651.814400pt;}
.x22{left:680.960000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  