
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6df3c109a95904b2e8ea7db8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_900a637601ba7bdd8a991e24.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_06f8dd1e17a5f71337cfbbf2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_08b9efdd52de2f7d1cecf6e2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_033e50f2eef76df1e379ee74.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_98f0da8f5990242923a494bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_bc483cef4e221c17881140e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_a2e68499e66e796d00441f81.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_45e5a349865ae74e361f1f29.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls27{letter-spacing:-0.546600px;}
.ls18{letter-spacing:-0.426000px;}
.ls2a{letter-spacing:-0.399000px;}
.ls1c{letter-spacing:-0.391800px;}
.ls1d{letter-spacing:-0.310800px;}
.ls12{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.ls13{letter-spacing:-0.121200px;}
.ls1b{letter-spacing:-0.093000px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls22{letter-spacing:-0.066000px;}
.ls1f{letter-spacing:-0.049680px;}
.lsd{letter-spacing:-0.039000px;}
.ls14{letter-spacing:-0.038880px;}
.ls20{letter-spacing:-0.013320px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.ls26{letter-spacing:0.034560px;}
.lsf{letter-spacing:0.045360px;}
.ls23{letter-spacing:0.047520px;}
.ls24{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.065400px;}
.ls5{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls21{letter-spacing:0.098400px;}
.ls25{letter-spacing:0.108600px;}
.ls1a{letter-spacing:0.111000px;}
.ls10{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.173520px;}
.ls3{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.199200px;}
.ls19{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls29{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls28{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.337400px;}
.ws11{word-spacing:-13.324800px;}
.ws12{word-spacing:-13.260960px;}
.ws4{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.213080px;}
.wsb{word-spacing:-13.187520px;}
.ws6{word-spacing:-13.187400px;}
.wsf{word-spacing:-13.176720px;}
.wsc{word-spacing:-13.133400px;}
.ws5{word-spacing:-13.065600px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws3{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
._e{margin-left:-3.613326px;}
._6{margin-left:-2.478000px;}
._0{margin-left:-1.110000px;}
._2{width:1.175578px;}
._5{width:2.431622px;}
._9{width:4.199652px;}
._1{width:5.284188px;}
._3{width:6.291671px;}
._d{width:7.483201px;}
._c{width:9.078000px;}
._b{width:10.220400px;}
._a{width:11.704320px;}
._4{width:15.050400px;}
._10{width:16.789093px;}
._f{width:17.849278px;}
._8{width:19.233602px;}
._7{width:20.260200px;}
._11{width:21.463080px;}
._12{width:22.665000px;}
._38{width:24.468840px;}
._1c{width:25.551000px;}
._4d{width:26.873640px;}
._63{width:28.078920px;}
._3a{width:29.158200px;}
._5a{width:30.601080px;}
._2d{width:31.983840px;}
._35{width:33.005880px;}
._26{width:34.448760px;}
._59{width:35.591040px;}
._31{width:36.793440px;}
._64{width:37.875600px;}
._2e{width:39.318480px;}
._49{width:40.520880px;}
._3d{width:42.264360px;}
._2c{width:43.346520px;}
._6b{width:44.792280px;}
._43{width:46.713240px;}
._7b{width:47.915640px;}
._15{width:49.118040px;}
._14{width:50.380560px;}
._7d{width:51.402600px;}
._25{width:52.424640px;}
._16{width:53.867520px;}
._60{width:54.889560px;}
._27{width:56.212200px;}
._1e{width:57.474720px;}
._17{width:59.158080px;}
._3e{width:60.600960px;}
._5b{width:61.683120px;}
._39{width:62.765280px;}
._36{width:63.907560px;}
._41{width:65.711160px;}
._56{width:66.853440px;}
._52{width:67.995720px;}
._70{width:69.679080px;}
._53{width:70.732440px;}
._33{width:72.525480px;}
._62{width:73.526760px;}
._45{width:74.548800px;}
._69{width:76.232160px;}
._23{width:77.795280px;}
._50{width:80.223840px;}
._20{width:81.462600px;}
._3b{width:82.905480px;}
._7f{width:84.047760px;}
._67{width:85.644720px;}
._2a{width:87.294240px;}
._6a{width:88.644720px;}
._1d{width:89.999640px;}
._30{width:91.911720px;}
._3c{width:93.306240px;}
._6e{width:94.508640px;}
._71{width:95.771160px;}
._21{width:97.394400px;}
._22{width:98.536680px;}
._1f{width:100.240800px;}
._80{width:101.963520px;}
._3f{width:103.286160px;}
._2f{width:106.532640px;}
._5e{width:108.877320px;}
._99{width:110.260080px;}
._81{width:111.943440px;}
._40{width:113.025600px;}
._32{width:114.348960px;}
._58{width:116.272080px;}
._8b{width:117.414360px;}
._6f{width:118.797120px;}
._57{width:120.300120px;}
._78{width:121.803120px;}
._37{width:123.246000px;}
._88{width:124.809120px;}
._42{width:126.191880px;}
._46{width:128.115720px;}
._13{width:129.979440px;}
._29{width:131.903280px;}
._72{width:133.586640px;}
._9b{width:135.450360px;}
._77{width:136.472400px;}
._7a{width:138.155760px;}
._44{width:140.540760px;}
._4a{width:143.085600px;}
._51{width:146.752920px;}
._87{width:149.037480px;}
._61{width:150.179760px;}
._93{width:152.885160px;}
._1b{width:154.748880px;}
._95{width:156.071520px;}
._18{width:157.422000px;}
._82{width:158.837040px;}
._19{width:161.301960px;}
._8a{width:163.406160px;}
._65{width:165.510360px;}
._73{width:167.674680px;}
._97{width:168.696720px;}
._4f{width:170.740800px;}
._4e{width:172.243800px;}
._34{width:173.325960px;}
._94{width:174.528360px;}
._6d{width:175.670640px;}
._47{width:176.863320px;}
._66{width:180.119520px;}
._79{width:182.283840px;}
._5d{width:183.666600px;}
._1a{width:186.131520px;}
._5c{width:187.153560px;}
._2b{width:191.001240px;}
._75{width:192.504240px;}
._8c{width:197.153640px;}
._91{width:198.335880px;}
._89{width:199.658520px;}
._98{width:201.041280px;}
._92{width:204.708600px;}
._86{width:207.654480px;}
._90{width:210.720600px;}
._68{width:213.065280px;}
._83{width:215.169480px;}
._54{width:218.295720px;}
._8e{width:219.858840px;}
._24{width:221.542200px;}
._85{width:223.766640px;}
._4c{width:228.576240px;}
._55{width:230.680440px;}
._4b{width:231.882840px;}
._7e{width:234.227520px;}
._96{width:240.419880px;}
._9a{width:241.562160px;}
._28{width:243.867480px;}
._5f{width:250.640280px;}
._76{width:252.744480px;}
._8d{width:254.788560px;}
._7c{width:259.778520px;}
._48{width:268.135200px;}
._84{width:297.834480px;}
._74{width:302.343480px;}
._6c{width:351.261360px;}
._9d{width:356.150880px;}
._8f{width:369.557640px;}
._9c{width:404.086080px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yba{bottom:3.330000px;}
.y95{bottom:7.830000px;}
.yd7{bottom:7.860000px;}
.y8e{bottom:7.920000px;}
.yb9{bottom:20.880000px;}
.y94{bottom:25.380000px;}
.yd6{bottom:25.410000px;}
.y8d{bottom:25.470000px;}
.y93{bottom:43.020000px;}
.y9e{bottom:43.050000px;}
.y98{bottom:43.110000px;}
.y92{bottom:60.570000px;}
.yd5{bottom:60.600000px;}
.y97{bottom:60.660000px;}
.y9d{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.yf7{bottom:78.120000px;}
.yd4{bottom:78.150000px;}
.y91{bottom:78.210000px;}
.y9c{bottom:78.240000px;}
.y90{bottom:95.760000px;}
.yd3{bottom:95.790000px;}
.yd0{bottom:95.850000px;}
.yb4{bottom:95.880000px;}
.y1{bottom:101.640000px;}
.y14d{bottom:110.730000px;}
.yb8{bottom:111.810000px;}
.yb7{bottom:113.310000px;}
.yd2{bottom:113.340000px;}
.yb0{bottom:113.400000px;}
.yb3{bottom:113.430000px;}
.y1a4{bottom:118.200000px;}
.y11b{bottom:125.040000px;}
.y12d{bottom:129.540000px;}
.yaf{bottom:130.950000px;}
.ybe{bottom:130.980000px;}
.y136{bottom:131.040000px;}
.yb2{bottom:131.070000px;}
.ycf{bottom:131.250000px;}
.y201{bottom:133.680000px;}
.y86{bottom:134.850000px;}
.y1a3{bottom:135.840000px;}
.yf2{bottom:136.200000px;}
.ye8{bottom:140.340000px;}
.y55{bottom:144.300000px;}
.y27{bottom:145.200000px;}
.y12c{bottom:147.090000px;}
.y133{bottom:147.810000px;}
.yf1{bottom:148.500000px;}
.ybd{bottom:148.530000px;}
.yfa{bottom:148.590000px;}
.yec{bottom:148.620000px;}
.y1c3{bottom:148.710000px;}
.y1ed{bottom:151.320000px;}
.yb6{bottom:152.220000px;}
.y85{bottom:152.490000px;}
.y1a2{bottom:153.390000px;}
.y26{bottom:162.840000px;}
.ya1{bottom:164.640000px;}
.y12b{bottom:164.730000px;}
.y11a{bottom:165.450000px;}
.yf6{bottom:166.050000px;}
.y111{bottom:166.140000px;}
.yeb{bottom:166.170000px;}
.y1c2{bottom:166.260000px;}
.y148{bottom:168.330000px;}
.y1ec{bottom:168.870000px;}
.y1a1{bottom:170.940000px;}
.ye7{bottom:175.890000px;}
.y200{bottom:177.870000px;}
.y54{bottom:179.850000px;}
.y25{bottom:180.390000px;}
.y12a{bottom:182.280000px;}
.y110{bottom:183.690000px;}
.y119{bottom:183.720000px;}
.y132{bottom:183.780000px;}
.y84{bottom:188.040000px;}
.y1a0{bottom:188.580000px;}
.y1c1{bottom:193.170000px;}
.ye6{bottom:193.440000px;}
.y1eb{bottom:195.510000px;}
.y53{bottom:197.490000px;}
.y24{bottom:197.940000px;}
.y129{bottom:199.920000px;}
.y122{bottom:201.240000px;}
.y13a{bottom:201.270000px;}
.y10f{bottom:201.330000px;}
.y118{bottom:201.360000px;}
.y147{bottom:203.880000px;}
.y83{bottom:205.680000px;}
.y19f{bottom:206.130000px;}
.ye5{bottom:211.080000px;}
.y1ea{bottom:213.060000px;}
.y105{bottom:214.680000px;}
.y52{bottom:215.040000px;}
.y23{bottom:215.580000px;}
.y128{bottom:217.470000px;}
.y10e{bottom:218.880000px;}
.y117{bottom:218.910000px;}
.y135{bottom:218.970000px;}
.y1ff{bottom:222.060000px;}
.y82{bottom:223.230000px;}
.y19e{bottom:223.680000px;}
.ye4{bottom:228.630000px;}
.y1e9{bottom:230.610000px;}
.y51{bottom:232.680000px;}
.y22{bottom:233.130000px;}
.y127{bottom:235.020000px;}
.y10d{bottom:236.430000px;}
.y116{bottom:236.460000px;}
.y131{bottom:236.520000px;}
.y125{bottom:236.550000px;}
.y146{bottom:239.430000px;}
.y1fe{bottom:239.610000px;}
.y81{bottom:240.780000px;}
.y1c0{bottom:241.500000px;}
.ye3{bottom:246.180000px;}
.y50{bottom:250.230000px;}
.y104{bottom:250.320000px;}
.y126{bottom:252.660000px;}
.y121{bottom:253.980000px;}
.y139{bottom:254.010000px;}
.y10c{bottom:254.070000px;}
.y115{bottom:254.100000px;}
.y176{bottom:254.460000px;}
.y1e8{bottom:257.250000px;}
.y80{bottom:258.420000px;}
.y1bf{bottom:259.050000px;}
.y19d{bottom:259.320000px;}
.ya0{bottom:262.290000px;}
.ye2{bottom:263.820000px;}
.y1fd{bottom:266.250000px;}
.y21{bottom:268.770000px;}
.yf0{bottom:269.040000px;}
.y10b{bottom:271.620000px;}
.y114{bottom:271.650000px;}
.y130{bottom:271.710000px;}
.y175{bottom:272.100000px;}
.y1e7{bottom:274.800000px;}
.y145{bottom:275.070000px;}
.y7f{bottom:275.970000px;}
.y1be{bottom:276.600000px;}
.y19c{bottom:276.870000px;}
.ye1{bottom:281.370000px;}
.yce{bottom:281.730000px;}
.y1fc{bottom:283.800000px;}
.yb5{bottom:285.060000px;}
.y123{bottom:285.600000px;}
.y4f{bottom:285.780000px;}
.y103{bottom:285.870000px;}
.y20{bottom:286.320000px;}
.y120{bottom:289.170000px;}
.y138{bottom:289.200000px;}
.y10a{bottom:289.260000px;}
.y113{bottom:289.290000px;}
.y174{bottom:289.650000px;}
.y1bd{bottom:294.240000px;}
.y19b{bottom:294.510000px;}
.ye0{bottom:299.010000px;}
.y1e6{bottom:301.440000px;}
.y4e{bottom:303.420000px;}
.y102{bottom:303.510000px;}
.y1f{bottom:303.870000px;}
.y109{bottom:306.810000px;}
.y124{bottom:306.840000px;}
.y173{bottom:307.200000px;}
.y1fb{bottom:310.440000px;}
.y144{bottom:310.620000px;}
.y7e{bottom:311.610000px;}
.y1bc{bottom:311.790000px;}
.y19a{bottom:312.060000px;}
.y14c{bottom:313.950000px;}
.ydf{bottom:316.560000px;}
.y1e5{bottom:318.990000px;}
.y4d{bottom:320.970000px;}
.y101{bottom:321.060000px;}
.y1e{bottom:321.510000px;}
.y11f{bottom:324.360000px;}
.y108{bottom:324.390000px;}
.y134{bottom:324.480000px;}
.y172{bottom:324.840000px;}
.y1fa{bottom:327.990000px;}
.y143{bottom:328.260000px;}
.y7d{bottom:329.160000px;}
.y1bb{bottom:329.430000px;}
.y199{bottom:329.610000px;}
.yde{bottom:334.110000px;}
.y4c{bottom:338.610000px;}
.y11e{bottom:341.910000px;}
.y9f{bottom:342.390000px;}
.y1e4{bottom:345.540000px;}
.y142{bottom:345.810000px;}
.y7c{bottom:346.710000px;}
.y198{bottom:347.250000px;}
.ydd{bottom:351.750000px;}
.y1f9{bottom:354.540000px;}
.y100{bottom:356.250000px;}
.y1d{bottom:357.060000px;}
.y171{bottom:359.940000px;}
.y1e3{bottom:363.180000px;}
.y141{bottom:363.360000px;}
.y7b{bottom:364.350000px;}
.y197{bottom:364.800000px;}
.ydc{bottom:369.300000px;}
.y1f8{bottom:372.180000px;}
.yff{bottom:373.800000px;}
.y4b{bottom:374.160000px;}
.y1c{bottom:374.700000px;}
.y140{bottom:381.000000px;}
.y7a{bottom:381.900000px;}
.y196{bottom:382.440000px;}
.y112{bottom:386.220000px;}
.y1e2{bottom:389.730000px;}
.yfe{bottom:391.440000px;}
.y4a{bottom:391.710000px;}
.y1b{bottom:392.250000px;}
.y1ba{bottom:393.330000px;}
.y170{bottom:395.580000px;}
.y13f{bottom:398.550000px;}
.y79{bottom:399.540000px;}
.y195{bottom:399.990000px;}
.yb1{bottom:400.260000px;}
.ydb{bottom:402.330000px;}
.y1e1{bottom:407.370000px;}
.yfd{bottom:408.990000px;}
.y49{bottom:409.350000px;}
.y1a{bottom:409.800000px;}
.y16f{bottom:413.130000px;}
.y13e{bottom:416.190000px;}
.y1f7{bottom:416.370000px;}
.y194{bottom:417.540000px;}
.y1b9{bottom:420.240000px;}
.yfc{bottom:426.540000px;}
.y16e{bottom:430.770000px;}
.ycd{bottom:432.120000px;}
.y13d{bottom:433.740000px;}
.y1e0{bottom:433.920000px;}
.y78{bottom:435.090000px;}
.y193{bottom:435.180000px;}
.yef{bottom:437.070000px;}
.y9b{bottom:440.040000px;}
.yfb{bottom:444.180000px;}
.y48{bottom:444.900000px;}
.y19{bottom:445.440000px;}
.y16d{bottom:448.320000px;}
.y13c{bottom:451.290000px;}
.y1df{bottom:451.470000px;}
.y77{bottom:452.640000px;}
.y1b8{bottom:457.590000px;}
.y47{bottom:462.450000px;}
.y18{bottom:462.990000px;}
.y16c{bottom:465.870000px;}
.y76{bottom:470.310000px;}
.y192{bottom:470.760000px;}
.yf9{bottom:477.150000px;}
.y1de{bottom:478.140000px;}
.y46{bottom:480.120000px;}
.y17{bottom:480.660000px;}
.y14b{bottom:482.010000px;}
.y16b{bottom:483.540000px;}
.y13b{bottom:484.350000px;}
.y75{bottom:487.860000px;}
.y191{bottom:488.400000px;}
.y12f{bottom:491.730000px;}
.y1dd{bottom:495.690000px;}
.y45{bottom:497.670000px;}
.y16{bottom:498.210000px;}
.y16a{bottom:501.090000px;}
.y74{bottom:505.500000px;}
.y1b7{bottom:505.860000px;}
.y190{bottom:505.950000px;}
.y1dc{bottom:522.330000px;}
.y1b6{bottom:523.410000px;}
.y18f{bottom:523.500000px;}
.y44{bottom:533.310000px;}
.y15{bottom:533.760000px;}
.y169{bottom:536.730000px;}
.y9a{bottom:537.720000px;}
.y1db{bottom:539.880000px;}
.y73{bottom:541.050000px;}
.y18e{bottom:541.140000px;}
.y1b5{bottom:541.860000px;}
.yae{bottom:550.770000px;}
.y43{bottom:550.860000px;}
.y14{bottom:551.400000px;}
.yda{bottom:552.750000px;}
.y168{bottom:554.280000px;}
.y1da{bottom:557.430000px;}
.y72{bottom:558.600000px;}
.y18d{bottom:558.690000px;}
.y1b4{bottom:559.410000px;}
.ycc{bottom:564.990000px;}
.y42{bottom:568.410000px;}
.y13{bottom:568.950000px;}
.y167{bottom:571.830000px;}
.y71{bottom:576.240000px;}
.y18c{bottom:576.330000px;}
.y1b3{bottom:577.860000px;}
.y1d9{bottom:584.070000px;}
.y41{bottom:586.050000px;}
.yee{bottom:587.490000px;}
.y166{bottom:589.470000px;}
.y70{bottom:593.790000px;}
.y18b{bottom:593.880000px;}
.y1b2{bottom:595.410000px;}
.y1d8{bottom:601.620000px;}
.y12{bottom:604.590000px;}
.y165{bottom:607.020000px;}
.y6f{bottom:611.340000px;}
.y18a{bottom:611.430000px;}
.y11d{bottom:611.970000px;}
.y1f6{bottom:619.260000px;}
.y40{bottom:621.600000px;}
.y11{bottom:622.140000px;}
.y1b1{bottom:623.220000px;}
.y164{bottom:624.660000px;}
.y1d7{bottom:628.260000px;}
.y6e{bottom:628.980000px;}
.ycb{bottom:631.320000px;}
.y99{bottom:635.460000px;}
.y3f{bottom:639.240000px;}
.y10{bottom:639.690000px;}
.y163{bottom:642.210000px;}
.yf8{bottom:645.180000px;}
.y1d6{bottom:645.810000px;}
.y189{bottom:647.070000px;}
.yca{bottom:648.870000px;}
.y3e{bottom:656.790000px;}
.yf{bottom:657.330000px;}
.y162{bottom:659.760000px;}
.y1b0{bottom:660.210000px;}
.y1d5{bottom:663.360000px;}
.y6d{bottom:664.530000px;}
.y188{bottom:664.620000px;}
.y3d{bottom:674.340000px;}
.ye{bottom:674.880000px;}
.y1af{bottom:677.760000px;}
.y6c{bottom:682.170000px;}
.y187{bottom:682.260000px;}
.yc9{bottom:684.510000px;}
.y14a{bottom:685.230000px;}
.y1d4{bottom:690.000000px;}
.y107{bottom:694.950000px;}
.y161{bottom:695.400000px;}
.y6b{bottom:699.720000px;}
.y186{bottom:699.810000px;}
.yad{bottom:701.160000px;}
.yd{bottom:701.790000px;}
.yc8{bottom:702.060000px;}
.yd9{bottom:703.230000px;}
.y1d3{bottom:707.550000px;}
.y3c{bottom:709.980000px;}
.y160{bottom:712.950000px;}
.y6a{bottom:717.270000px;}
.y185{bottom:717.360000px;}
.yc7{bottom:719.610000px;}
.y1f5{bottom:725.190000px;}
.y3b{bottom:727.530000px;}
.y15f{bottom:730.590000px;}
.y1d2{bottom:734.190000px;}
.y69{bottom:734.910000px;}
.y184{bottom:735.000000px;}
.yc6{bottom:737.250000px;}
.yed{bottom:737.970000px;}
.y3a{bottom:745.170000px;}
.y15e{bottom:748.140000px;}
.yc{bottom:750.030000px;}
.y96{bottom:750.660000px;}
.y1f4{bottom:751.740000px;}
.y68{bottom:752.460000px;}
.y183{bottom:752.550000px;}
.yc5{bottom:754.800000px;}
.y1d1{bottom:760.740000px;}
.y39{bottom:762.720000px;}
.y15d{bottom:765.690000px;}
.yac{bottom:767.490000px;}
.y1f3{bottom:769.290000px;}
.y67{bottom:770.100000px;}
.y182{bottom:770.190000px;}
.yc4{bottom:772.440000px;}
.y1d0{bottom:778.290000px;}
.y12e{bottom:782.880000px;}
.y15c{bottom:783.330000px;}
.yb{bottom:785.850000px;}
.y181{bottom:787.740000px;}
.yc3{bottom:789.990000px;}
.yf5{bottom:795.660000px;}
.y1cf{bottom:795.930000px;}
.y38{bottom:798.270000px;}
.y15b{bottom:800.880000px;}
.yab{bottom:803.040000px;}
.y66{bottom:805.650000px;}
.yc2{bottom:807.540000px;}
.y1ce{bottom:813.480000px;}
.y20a{bottom:813.930000px;}
.y37{bottom:815.910000px;}
.y1ae{bottom:818.520000px;}
.yaa{bottom:820.680000px;}
.ya{bottom:821.850000px;}
.y65{bottom:823.200000px;}
.y180{bottom:823.290000px;}
.yc1{bottom:825.180000px;}
.y137{bottom:828.240000px;}
.y1f2{bottom:831.030000px;}
.y209{bottom:831.480000px;}
.y36{bottom:833.460000px;}
.y149{bottom:835.620000px;}
.y1ad{bottom:836.070000px;}
.y15a{bottom:836.520000px;}
.ya9{bottom:838.230000px;}
.y1cd{bottom:840.030000px;}
.y64{bottom:840.840000px;}
.y17f{bottom:840.930000px;}
.yc0{bottom:842.730000px;}
.y8f{bottom:848.400000px;}
.yd8{bottom:853.620000px;}
.y159{bottom:854.070000px;}
.ya8{bottom:855.780000px;}
.y1cc{bottom:857.670000px;}
.y208{bottom:858.030000px;}
.y63{bottom:858.390000px;}
.y17e{bottom:858.480000px;}
.ybf{bottom:860.280000px;}
.y9{bottom:861.630000px;}
.y1ac{bottom:862.980000px;}
.y35{bottom:869.100000px;}
.y158{bottom:871.620000px;}
.ya7{bottom:873.420000px;}
.y1f1{bottom:875.220000px;}
.y207{bottom:875.670000px;}
.y62{bottom:876.030000px;}
.y8{bottom:879.630000px;}
.y1cb{bottom:884.220000px;}
.y34{bottom:886.650000px;}
.yea{bottom:888.360000px;}
.y157{bottom:889.260000px;}
.ya6{bottom:890.970000px;}
.y206{bottom:893.220000px;}
.ybc{bottom:893.310000px;}
.y61{bottom:893.580000px;}
.y17d{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.y1ca{bottom:901.860000px;}
.y33{bottom:904.200000px;}
.y156{bottom:906.810000px;}
.ya5{bottom:908.610000px;}
.y60{bottom:911.130000px;}
.y17c{bottom:911.220000px;}
.y1f0{bottom:919.410000px;}
.y205{bottom:919.860000px;}
.y155{bottom:924.450000px;}
.ya4{bottom:926.160000px;}
.y1c9{bottom:928.410000px;}
.y5f{bottom:928.770000px;}
.y17b{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y204{bottom:937.410000px;}
.y32{bottom:939.840000px;}
.y154{bottom:942.000000px;}
.y1c8{bottom:945.960000px;}
.y5e{bottom:946.320000px;}
.y17a{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y31{bottom:957.390000px;}
.ya3{bottom:959.100000px;}
.y153{bottom:959.550000px;}
.y8c{bottom:963.600000px;}
.y179{bottom:963.960000px;}
.y1c7{bottom:972.600000px;}
.y5d{bottom:973.230000px;}
.y11c{bottom:973.410000px;}
.y30{bottom:975.030000px;}
.yf4{bottom:981.240000px;}
.y1ab{bottom:981.600000px;}
.y152{bottom:986.460000px;}
.y4{bottom:987.630000px;}
.y1c6{bottom:990.150000px;}
.y1aa{bottom:999.150000px;}
.y178{bottom:999.600000px;}
.y2f{bottom:1001.850000px;}
.yd1{bottom:1004.100000px;}
.y1ef{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y1a9{bottom:1016.820000px;}
.y177{bottom:1017.180000px;}
.y5c{bottom:1021.590000px;}
.y203{bottom:1025.820000px;}
.y8b{bottom:1029.960000px;}
.y1a8{bottom:1034.370000px;}
.y151{bottom:1034.820000px;}
.y106{bottom:1038.870000px;}
.y5b{bottom:1039.140000px;}
.y202{bottom:1043.370000px;}
.y2e{bottom:1050.210000px;}
.y1a7{bottom:1051.920000px;}
.y150{bottom:1052.370000px;}
.ya2{bottom:1056.870000px;}
.y5a{bottom:1057.500000px;}
.y1c5{bottom:1060.920000px;}
.ybb{bottom:1061.370000px;}
.y8a{bottom:1065.510000px;}
.y2d{bottom:1068.120000px;}
.y1a6{bottom:1069.560000px;}
.y14f{bottom:1069.920000px;}
.ye9{bottom:1073.970000px;}
.y59{bottom:1075.050000px;}
.y1c4{bottom:1078.560000px;}
.y89{bottom:1083.150000px;}
.y1a5{bottom:1087.110000px;}
.y14e{bottom:1087.560000px;}
.y58{bottom:1093.500000px;}
.y1ee{bottom:1096.110000px;}
.y88{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y57{bottom:1111.050000px;}
.yf3{bottom:1114.110000px;}
.y2b{bottom:1122.750000px;}
.y87{bottom:1127.610000px;}
.y56{bottom:1138.860000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h14{height:39.600000px;}
.h1c{height:39.690000px;}
.hb{height:44.190000px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h1f{height:61.740000px;}
.ha{height:61.793886px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h10{height:79.290000px;}
.h15{height:92.430000px;}
.he{height:96.930000px;}
.hf{height:96.960000px;}
.hd{height:114.480000px;}
.h13{height:132.030000px;}
.h1b{height:132.120000px;}
.h17{height:132.150000px;}
.h11{height:149.670000px;}
.h18{height:149.700000px;}
.h12{height:149.790000px;}
.h1a{height:167.220000px;}
.h16{height:167.250000px;}
.h1e{height:167.310000px;}
.h2c{height:167.340000px;}
.h23{height:180.390000px;}
.h1d{height:184.770000px;}
.h19{height:184.890000px;}
.h2b{height:202.410000px;}
.h2a{height:202.440000px;}
.h2d{height:202.500000px;}
.h22{height:220.050000px;}
.h26{height:255.180000px;}
.h27{height:290.430000px;}
.h21{height:308.010000px;}
.h25{height:325.560000px;}
.h29{height:343.080000px;}
.h20{height:343.110000px;}
.h28{height:343.200000px;}
.h24{height:360.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:43.560000px;}
.w27{width:83.880000px;}
.w28{width:84.270000px;}
.w25{width:89.010000px;}
.w13{width:91.710000px;}
.w3{width:93.540000px;}
.w1d{width:97.380000px;}
.w26{width:97.830000px;}
.w9{width:108.120000px;}
.w20{width:109.800000px;}
.we{width:111.000000px;}
.wb{width:112.500000px;}
.wa{width:113.490000px;}
.w18{width:113.790000px;}
.w22{width:114.390000px;}
.w19{width:116.010000px;}
.w10{width:118.440000px;}
.w2a{width:120.600000px;}
.w1f{width:124.020000px;}
.w15{width:126.450000px;}
.w11{width:127.830000px;}
.w5{width:129.150000px;}
.w1c{width:130.140000px;}
.w1b{width:130.530000px;}
.w23{width:130.680000px;}
.w1e{width:133.590000px;}
.w24{width:136.380000px;}
.w7{width:136.710000px;}
.w29{width:139.140000px;}
.w21{width:139.350000px;}
.w14{width:162.030000px;}
.w1a{width:164.070000px;}
.w4{width:164.250000px;}
.wf{width:167.670000px;}
.w17{width:174.870000px;}
.wc{width:184.620000px;}
.w6{width:184.800000px;}
.wd{width:189.540000px;}
.w16{width:197.580000px;}
.w12{width:227.790000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:3.960000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x27{left:111.239987px;}
.x5{left:122.039987px;}
.x14{left:161.190000px;}
.x7{left:163.020000px;}
.xc{left:177.600000px;}
.x10{left:180.480000px;}
.x18{left:183.360000px;}
.x1d{left:203.160000px;}
.x21{left:205.950000px;}
.x2{left:251.759987px;}
.xd{left:291.900000px;}
.x22{left:295.770000px;}
.x19{left:300.090000px;}
.x15{left:323.940000px;}
.x8{left:327.990000px;}
.x11{left:348.960000px;}
.x23{left:394.320000px;}
.xe{left:405.210000px;}
.x1e{left:438.420000px;}
.x16{left:451.200000px;}
.x9{left:457.950000px;}
.x1a{left:464.970000px;}
.x12{left:468.120000px;}
.x24{left:478.920000px;}
.x25{left:564.000000px;}
.x1f{left:578.580000px;}
.xf{left:590.640000px;}
.x13{left:596.670000px;}
.xa{left:643.470000px;}
.x17{left:649.590000px;}
.x20{left:693.780000px;}
.x26{left:703.860000px;}
.x1b{left:727.080000px;}
.xb{left:780.900000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls27{letter-spacing:-0.485867pt;}
.ls18{letter-spacing:-0.378667pt;}
.ls2a{letter-spacing:-0.354667pt;}
.ls1c{letter-spacing:-0.348267pt;}
.ls1d{letter-spacing:-0.276267pt;}
.ls12{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls13{letter-spacing:-0.107733pt;}
.ls1b{letter-spacing:-0.082667pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls22{letter-spacing:-0.058667pt;}
.ls1f{letter-spacing:-0.044160pt;}
.lsd{letter-spacing:-0.034667pt;}
.ls14{letter-spacing:-0.034560pt;}
.ls20{letter-spacing:-0.011840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.ls26{letter-spacing:0.030720pt;}
.lsf{letter-spacing:0.040320pt;}
.ls23{letter-spacing:0.042240pt;}
.ls24{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.058133pt;}
.ls5{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls21{letter-spacing:0.087467pt;}
.ls25{letter-spacing:0.096533pt;}
.ls1a{letter-spacing:0.098667pt;}
.ls10{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.154240pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.177067pt;}
.ls19{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls29{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls28{letter-spacing:71.863680pt;}
.wsa{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.855467pt;}
.ws11{word-spacing:-11.844267pt;}
.ws12{word-spacing:-11.787520pt;}
.ws4{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.744960pt;}
.wsb{word-spacing:-11.722240pt;}
.ws6{word-spacing:-11.722133pt;}
.wsf{word-spacing:-11.712640pt;}
.wsc{word-spacing:-11.674133pt;}
.ws5{word-spacing:-11.613867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws3{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
._e{margin-left:-3.211845pt;}
._6{margin-left:-2.202666pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.044958pt;}
._5{width:2.161442pt;}
._9{width:3.733024pt;}
._1{width:4.697056pt;}
._3{width:5.592596pt;}
._d{width:6.651734pt;}
._c{width:8.069333pt;}
._b{width:9.084800pt;}
._a{width:10.403840pt;}
._4{width:13.378134pt;}
._10{width:14.923638pt;}
._f{width:15.866025pt;}
._8{width:17.096535pt;}
._7{width:18.009066pt;}
._11{width:19.078294pt;}
._12{width:20.146666pt;}
._38{width:21.750080pt;}
._1c{width:22.712000pt;}
._4d{width:23.887680pt;}
._63{width:24.959040pt;}
._3a{width:25.918400pt;}
._5a{width:27.200960pt;}
._2d{width:28.430080pt;}
._35{width:29.338560pt;}
._26{width:30.621120pt;}
._59{width:31.636480pt;}
._31{width:32.705280pt;}
._64{width:33.667200pt;}
._2e{width:34.949760pt;}
._49{width:36.018560pt;}
._3d{width:37.568320pt;}
._2c{width:38.530240pt;}
._6b{width:39.815360pt;}
._43{width:41.522880pt;}
._7b{width:42.591680pt;}
._15{width:43.660480pt;}
._14{width:44.782720pt;}
._7d{width:45.691200pt;}
._25{width:46.599680pt;}
._16{width:47.882240pt;}
._60{width:48.790720pt;}
._27{width:49.966400pt;}
._1e{width:51.088640pt;}
._17{width:52.584960pt;}
._3e{width:53.867520pt;}
._5b{width:54.829440pt;}
._39{width:55.791360pt;}
._36{width:56.806720pt;}
._41{width:58.409920pt;}
._56{width:59.425280pt;}
._52{width:60.440640pt;}
._70{width:61.936960pt;}
._53{width:62.873280pt;}
._33{width:64.467093pt;}
._62{width:65.357120pt;}
._45{width:66.265600pt;}
._69{width:67.761920pt;}
._23{width:69.151360pt;}
._50{width:71.310080pt;}
._20{width:72.411200pt;}
._3b{width:73.693760pt;}
._7f{width:74.709120pt;}
._67{width:76.128640pt;}
._2a{width:77.594880pt;}
._6a{width:78.795307pt;}
._1d{width:79.999680pt;}
._30{width:81.699307pt;}
._3c{width:82.938880pt;}
._6e{width:84.007680pt;}
._71{width:85.129920pt;}
._21{width:86.572800pt;}
._22{width:87.588160pt;}
._1f{width:89.102933pt;}
._80{width:90.634240pt;}
._3f{width:91.809920pt;}
._2f{width:94.695680pt;}
._5e{width:96.779840pt;}
._99{width:98.008960pt;}
._81{width:99.505280pt;}
._40{width:100.467200pt;}
._32{width:101.643520pt;}
._58{width:103.352960pt;}
._8b{width:104.368320pt;}
._6f{width:105.597440pt;}
._57{width:106.933440pt;}
._78{width:108.269440pt;}
._37{width:109.552000pt;}
._88{width:110.941440pt;}
._42{width:112.170560pt;}
._46{width:113.880640pt;}
._13{width:115.537280pt;}
._29{width:117.247360pt;}
._72{width:118.743680pt;}
._9b{width:120.400320pt;}
._77{width:121.308800pt;}
._7a{width:122.805120pt;}
._44{width:124.925120pt;}
._4a{width:127.187200pt;}
._51{width:130.447040pt;}
._87{width:132.477760pt;}
._61{width:133.493120pt;}
._93{width:135.897920pt;}
._1b{width:137.554560pt;}
._95{width:138.730240pt;}
._18{width:139.930667pt;}
._82{width:141.188480pt;}
._19{width:143.379520pt;}
._8a{width:145.249920pt;}
._65{width:147.120320pt;}
._73{width:149.044160pt;}
._97{width:149.952640pt;}
._4f{width:151.769600pt;}
._4e{width:153.105600pt;}
._34{width:154.067520pt;}
._94{width:155.136320pt;}
._6d{width:156.151680pt;}
._47{width:157.211840pt;}
._66{width:160.106240pt;}
._79{width:162.030080pt;}
._5d{width:163.259200pt;}
._1a{width:165.450240pt;}
._5c{width:166.358720pt;}
._2b{width:169.778880pt;}
._75{width:171.114880pt;}
._8c{width:175.247680pt;}
._91{width:176.298560pt;}
._89{width:177.474240pt;}
._98{width:178.703360pt;}
._92{width:181.963200pt;}
._86{width:184.581760pt;}
._90{width:187.307200pt;}
._68{width:189.391360pt;}
._83{width:191.261760pt;}
._54{width:194.040640pt;}
._8e{width:195.430080pt;}
._24{width:196.926400pt;}
._85{width:198.903680pt;}
._4c{width:203.178880pt;}
._55{width:205.049280pt;}
._4b{width:206.118080pt;}
._7e{width:208.202240pt;}
._96{width:213.706560pt;}
._9a{width:214.721920pt;}
._28{width:216.771093pt;}
._5f{width:222.791360pt;}
._76{width:224.661760pt;}
._8d{width:226.478720pt;}
._7c{width:230.914240pt;}
._48{width:238.342400pt;}
._84{width:264.741760pt;}
._74{width:268.749760pt;}
._6c{width:312.232320pt;}
._9d{width:316.578560pt;}
._8f{width:328.495680pt;}
._9c{width:359.187627pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:2.960000pt;}
.y95{bottom:6.960000pt;}
.yd7{bottom:6.986667pt;}
.y8e{bottom:7.040000pt;}
.yb9{bottom:18.560000pt;}
.y94{bottom:22.560000pt;}
.yd6{bottom:22.586667pt;}
.y8d{bottom:22.640000pt;}
.y93{bottom:38.240000pt;}
.y9e{bottom:38.266667pt;}
.y98{bottom:38.320000pt;}
.y92{bottom:53.840000pt;}
.yd5{bottom:53.866667pt;}
.y97{bottom:53.920000pt;}
.y9d{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.yf7{bottom:69.440000pt;}
.yd4{bottom:69.466667pt;}
.y91{bottom:69.520000pt;}
.y9c{bottom:69.546667pt;}
.y90{bottom:85.120000pt;}
.yd3{bottom:85.146667pt;}
.yd0{bottom:85.200000pt;}
.yb4{bottom:85.226667pt;}
.y1{bottom:90.346667pt;}
.y14d{bottom:98.426667pt;}
.yb8{bottom:99.386667pt;}
.yb7{bottom:100.720000pt;}
.yd2{bottom:100.746667pt;}
.yb0{bottom:100.800000pt;}
.yb3{bottom:100.826667pt;}
.y1a4{bottom:105.066667pt;}
.y11b{bottom:111.146667pt;}
.y12d{bottom:115.146667pt;}
.yaf{bottom:116.400000pt;}
.ybe{bottom:116.426667pt;}
.y136{bottom:116.480000pt;}
.yb2{bottom:116.506667pt;}
.ycf{bottom:116.666667pt;}
.y201{bottom:118.826667pt;}
.y86{bottom:119.866667pt;}
.y1a3{bottom:120.746667pt;}
.yf2{bottom:121.066667pt;}
.ye8{bottom:124.746667pt;}
.y55{bottom:128.266667pt;}
.y27{bottom:129.066667pt;}
.y12c{bottom:130.746667pt;}
.y133{bottom:131.386667pt;}
.yf1{bottom:132.000000pt;}
.ybd{bottom:132.026667pt;}
.yfa{bottom:132.080000pt;}
.yec{bottom:132.106667pt;}
.y1c3{bottom:132.186667pt;}
.y1ed{bottom:134.506667pt;}
.yb6{bottom:135.306667pt;}
.y85{bottom:135.546667pt;}
.y1a2{bottom:136.346667pt;}
.y26{bottom:144.746667pt;}
.ya1{bottom:146.346667pt;}
.y12b{bottom:146.426667pt;}
.y11a{bottom:147.066667pt;}
.yf6{bottom:147.600000pt;}
.y111{bottom:147.680000pt;}
.yeb{bottom:147.706667pt;}
.y1c2{bottom:147.786667pt;}
.y148{bottom:149.626667pt;}
.y1ec{bottom:150.106667pt;}
.y1a1{bottom:151.946667pt;}
.ye7{bottom:156.346667pt;}
.y200{bottom:158.106667pt;}
.y54{bottom:159.866667pt;}
.y25{bottom:160.346667pt;}
.y12a{bottom:162.026667pt;}
.y110{bottom:163.280000pt;}
.y119{bottom:163.306667pt;}
.y132{bottom:163.360000pt;}
.y84{bottom:167.146667pt;}
.y1a0{bottom:167.626667pt;}
.y1c1{bottom:171.706667pt;}
.ye6{bottom:171.946667pt;}
.y1eb{bottom:173.786667pt;}
.y53{bottom:175.546667pt;}
.y24{bottom:175.946667pt;}
.y129{bottom:177.706667pt;}
.y122{bottom:178.880000pt;}
.y13a{bottom:178.906667pt;}
.y10f{bottom:178.960000pt;}
.y118{bottom:178.986667pt;}
.y147{bottom:181.226667pt;}
.y83{bottom:182.826667pt;}
.y19f{bottom:183.226667pt;}
.ye5{bottom:187.626667pt;}
.y1ea{bottom:189.386667pt;}
.y105{bottom:190.826667pt;}
.y52{bottom:191.146667pt;}
.y23{bottom:191.626667pt;}
.y128{bottom:193.306667pt;}
.y10e{bottom:194.560000pt;}
.y117{bottom:194.586667pt;}
.y135{bottom:194.640000pt;}
.y1ff{bottom:197.386667pt;}
.y82{bottom:198.426667pt;}
.y19e{bottom:198.826667pt;}
.ye4{bottom:203.226667pt;}
.y1e9{bottom:204.986667pt;}
.y51{bottom:206.826667pt;}
.y22{bottom:207.226667pt;}
.y127{bottom:208.906667pt;}
.y10d{bottom:210.160000pt;}
.y116{bottom:210.186667pt;}
.y131{bottom:210.240000pt;}
.y125{bottom:210.266667pt;}
.y146{bottom:212.826667pt;}
.y1fe{bottom:212.986667pt;}
.y81{bottom:214.026667pt;}
.y1c0{bottom:214.666667pt;}
.ye3{bottom:218.826667pt;}
.y50{bottom:222.426667pt;}
.y104{bottom:222.506667pt;}
.y126{bottom:224.586667pt;}
.y121{bottom:225.760000pt;}
.y139{bottom:225.786667pt;}
.y10c{bottom:225.840000pt;}
.y115{bottom:225.866667pt;}
.y176{bottom:226.186667pt;}
.y1e8{bottom:228.666667pt;}
.y80{bottom:229.706667pt;}
.y1bf{bottom:230.266667pt;}
.y19d{bottom:230.506667pt;}
.ya0{bottom:233.146667pt;}
.ye2{bottom:234.506667pt;}
.y1fd{bottom:236.666667pt;}
.y21{bottom:238.906667pt;}
.yf0{bottom:239.146667pt;}
.y10b{bottom:241.440000pt;}
.y114{bottom:241.466667pt;}
.y130{bottom:241.520000pt;}
.y175{bottom:241.866667pt;}
.y1e7{bottom:244.266667pt;}
.y145{bottom:244.506667pt;}
.y7f{bottom:245.306667pt;}
.y1be{bottom:245.866667pt;}
.y19c{bottom:246.106667pt;}
.ye1{bottom:250.106667pt;}
.yce{bottom:250.426667pt;}
.y1fc{bottom:252.266667pt;}
.yb5{bottom:253.386667pt;}
.y123{bottom:253.866667pt;}
.y4f{bottom:254.026667pt;}
.y103{bottom:254.106667pt;}
.y20{bottom:254.506667pt;}
.y120{bottom:257.040000pt;}
.y138{bottom:257.066667pt;}
.y10a{bottom:257.120000pt;}
.y113{bottom:257.146667pt;}
.y174{bottom:257.466667pt;}
.y1bd{bottom:261.546667pt;}
.y19b{bottom:261.786667pt;}
.ye0{bottom:265.786667pt;}
.y1e6{bottom:267.946667pt;}
.y4e{bottom:269.706667pt;}
.y102{bottom:269.786667pt;}
.y1f{bottom:270.106667pt;}
.y109{bottom:272.720000pt;}
.y124{bottom:272.746667pt;}
.y173{bottom:273.066667pt;}
.y1fb{bottom:275.946667pt;}
.y144{bottom:276.106667pt;}
.y7e{bottom:276.986667pt;}
.y1bc{bottom:277.146667pt;}
.y19a{bottom:277.386667pt;}
.y14c{bottom:279.066667pt;}
.ydf{bottom:281.386667pt;}
.y1e5{bottom:283.546667pt;}
.y4d{bottom:285.306667pt;}
.y101{bottom:285.386667pt;}
.y1e{bottom:285.786667pt;}
.y11f{bottom:288.320000pt;}
.y108{bottom:288.346667pt;}
.y134{bottom:288.426667pt;}
.y172{bottom:288.746667pt;}
.y1fa{bottom:291.546667pt;}
.y143{bottom:291.786667pt;}
.y7d{bottom:292.586667pt;}
.y1bb{bottom:292.826667pt;}
.y199{bottom:292.986667pt;}
.yde{bottom:296.986667pt;}
.y4c{bottom:300.986667pt;}
.y11e{bottom:303.920000pt;}
.y9f{bottom:304.346667pt;}
.y1e4{bottom:307.146667pt;}
.y142{bottom:307.386667pt;}
.y7c{bottom:308.186667pt;}
.y198{bottom:308.666667pt;}
.ydd{bottom:312.666667pt;}
.y1f9{bottom:315.146667pt;}
.y100{bottom:316.666667pt;}
.y1d{bottom:317.386667pt;}
.y171{bottom:319.946667pt;}
.y1e3{bottom:322.826667pt;}
.y141{bottom:322.986667pt;}
.y7b{bottom:323.866667pt;}
.y197{bottom:324.266667pt;}
.ydc{bottom:328.266667pt;}
.y1f8{bottom:330.826667pt;}
.yff{bottom:332.266667pt;}
.y4b{bottom:332.586667pt;}
.y1c{bottom:333.066667pt;}
.y140{bottom:338.666667pt;}
.y7a{bottom:339.466667pt;}
.y196{bottom:339.946667pt;}
.y112{bottom:343.306667pt;}
.y1e2{bottom:346.426667pt;}
.yfe{bottom:347.946667pt;}
.y4a{bottom:348.186667pt;}
.y1b{bottom:348.666667pt;}
.y1ba{bottom:349.626667pt;}
.y170{bottom:351.626667pt;}
.y13f{bottom:354.266667pt;}
.y79{bottom:355.146667pt;}
.y195{bottom:355.546667pt;}
.yb1{bottom:355.786667pt;}
.ydb{bottom:357.626667pt;}
.y1e1{bottom:362.106667pt;}
.yfd{bottom:363.546667pt;}
.y49{bottom:363.866667pt;}
.y1a{bottom:364.266667pt;}
.y16f{bottom:367.226667pt;}
.y13e{bottom:369.946667pt;}
.y1f7{bottom:370.106667pt;}
.y194{bottom:371.146667pt;}
.y1b9{bottom:373.546667pt;}
.yfc{bottom:379.146667pt;}
.y16e{bottom:382.906667pt;}
.ycd{bottom:384.106667pt;}
.y13d{bottom:385.546667pt;}
.y1e0{bottom:385.706667pt;}
.y78{bottom:386.746667pt;}
.y193{bottom:386.826667pt;}
.yef{bottom:388.506667pt;}
.y9b{bottom:391.146667pt;}
.yfb{bottom:394.826667pt;}
.y48{bottom:395.466667pt;}
.y19{bottom:395.946667pt;}
.y16d{bottom:398.506667pt;}
.y13c{bottom:401.146667pt;}
.y1df{bottom:401.306667pt;}
.y77{bottom:402.346667pt;}
.y1b8{bottom:406.746667pt;}
.y47{bottom:411.066667pt;}
.y18{bottom:411.546667pt;}
.y16c{bottom:414.106667pt;}
.y76{bottom:418.053333pt;}
.y192{bottom:418.453333pt;}
.yf9{bottom:424.133333pt;}
.y1de{bottom:425.013333pt;}
.y46{bottom:426.773333pt;}
.y17{bottom:427.253333pt;}
.y14b{bottom:428.453333pt;}
.y16b{bottom:429.813333pt;}
.y13b{bottom:430.533333pt;}
.y75{bottom:433.653333pt;}
.y191{bottom:434.133333pt;}
.y12f{bottom:437.093333pt;}
.y1dd{bottom:440.613333pt;}
.y45{bottom:442.373333pt;}
.y16{bottom:442.853333pt;}
.y16a{bottom:445.413333pt;}
.y74{bottom:449.333333pt;}
.y1b7{bottom:449.653333pt;}
.y190{bottom:449.733333pt;}
.y1dc{bottom:464.293333pt;}
.y1b6{bottom:465.253333pt;}
.y18f{bottom:465.333333pt;}
.y44{bottom:474.053333pt;}
.y15{bottom:474.453333pt;}
.y169{bottom:477.093333pt;}
.y9a{bottom:477.973333pt;}
.y1db{bottom:479.893333pt;}
.y73{bottom:480.933333pt;}
.y18e{bottom:481.013333pt;}
.y1b5{bottom:481.653333pt;}
.yae{bottom:489.573333pt;}
.y43{bottom:489.653333pt;}
.y14{bottom:490.133333pt;}
.yda{bottom:491.333333pt;}
.y168{bottom:492.693333pt;}
.y1da{bottom:495.493333pt;}
.y72{bottom:496.533333pt;}
.y18d{bottom:496.613333pt;}
.y1b4{bottom:497.253333pt;}
.ycc{bottom:502.213333pt;}
.y42{bottom:505.253333pt;}
.y13{bottom:505.733333pt;}
.y167{bottom:508.293333pt;}
.y71{bottom:512.213333pt;}
.y18c{bottom:512.293333pt;}
.y1b3{bottom:513.653333pt;}
.y1d9{bottom:519.173333pt;}
.y41{bottom:520.933333pt;}
.yee{bottom:522.213333pt;}
.y166{bottom:523.973333pt;}
.y70{bottom:527.813333pt;}
.y18b{bottom:527.893333pt;}
.y1b2{bottom:529.253333pt;}
.y1d8{bottom:534.773333pt;}
.y12{bottom:537.413333pt;}
.y165{bottom:539.573333pt;}
.y6f{bottom:543.413333pt;}
.y18a{bottom:543.493333pt;}
.y11d{bottom:543.973333pt;}
.y1f6{bottom:550.453333pt;}
.y40{bottom:552.533333pt;}
.y11{bottom:553.013333pt;}
.y1b1{bottom:553.973333pt;}
.y164{bottom:555.253333pt;}
.y1d7{bottom:558.453333pt;}
.y6e{bottom:559.093333pt;}
.ycb{bottom:561.173333pt;}
.y99{bottom:564.853333pt;}
.y3f{bottom:568.213333pt;}
.y10{bottom:568.613333pt;}
.y163{bottom:570.853333pt;}
.yf8{bottom:573.493333pt;}
.y1d6{bottom:574.053333pt;}
.y189{bottom:575.173333pt;}
.yca{bottom:576.773333pt;}
.y3e{bottom:583.813333pt;}
.yf{bottom:584.293333pt;}
.y162{bottom:586.453333pt;}
.y1b0{bottom:586.853333pt;}
.y1d5{bottom:589.653333pt;}
.y6d{bottom:590.693333pt;}
.y188{bottom:590.773333pt;}
.y3d{bottom:599.413333pt;}
.ye{bottom:599.893333pt;}
.y1af{bottom:602.453333pt;}
.y6c{bottom:606.373333pt;}
.y187{bottom:606.453333pt;}
.yc9{bottom:608.453333pt;}
.y14a{bottom:609.093333pt;}
.y1d4{bottom:613.333333pt;}
.y107{bottom:617.733333pt;}
.y161{bottom:618.133333pt;}
.y6b{bottom:621.973333pt;}
.y186{bottom:622.053333pt;}
.yad{bottom:623.253333pt;}
.yd{bottom:623.813333pt;}
.yc8{bottom:624.053333pt;}
.yd9{bottom:625.093333pt;}
.y1d3{bottom:628.933333pt;}
.y3c{bottom:631.093333pt;}
.y160{bottom:633.733333pt;}
.y6a{bottom:637.573333pt;}
.y185{bottom:637.653333pt;}
.yc7{bottom:639.653333pt;}
.y1f5{bottom:644.613333pt;}
.y3b{bottom:646.693333pt;}
.y15f{bottom:649.413333pt;}
.y1d2{bottom:652.613333pt;}
.y69{bottom:653.253333pt;}
.y184{bottom:653.333333pt;}
.yc6{bottom:655.333333pt;}
.yed{bottom:655.973333pt;}
.y3a{bottom:662.373333pt;}
.y15e{bottom:665.013333pt;}
.yc{bottom:666.693333pt;}
.y96{bottom:667.253333pt;}
.y1f4{bottom:668.213333pt;}
.y68{bottom:668.853333pt;}
.y183{bottom:668.933333pt;}
.yc5{bottom:670.933333pt;}
.y1d1{bottom:676.213333pt;}
.y39{bottom:677.973333pt;}
.y15d{bottom:680.613333pt;}
.yac{bottom:682.213333pt;}
.y1f3{bottom:683.813333pt;}
.y67{bottom:684.533333pt;}
.y182{bottom:684.613333pt;}
.yc4{bottom:686.613333pt;}
.y1d0{bottom:691.813333pt;}
.y12e{bottom:695.893333pt;}
.y15c{bottom:696.293333pt;}
.yb{bottom:698.533333pt;}
.y181{bottom:700.213333pt;}
.yc3{bottom:702.213333pt;}
.yf5{bottom:707.253333pt;}
.y1cf{bottom:707.493333pt;}
.y38{bottom:709.573333pt;}
.y15b{bottom:711.893333pt;}
.yab{bottom:713.813333pt;}
.y66{bottom:716.133333pt;}
.yc2{bottom:717.813333pt;}
.y1ce{bottom:723.093333pt;}
.y20a{bottom:723.493333pt;}
.y37{bottom:725.253333pt;}
.y1ae{bottom:727.573333pt;}
.yaa{bottom:729.493333pt;}
.ya{bottom:730.533333pt;}
.y65{bottom:731.733333pt;}
.y180{bottom:731.813333pt;}
.yc1{bottom:733.493333pt;}
.y137{bottom:736.213333pt;}
.y1f2{bottom:738.693333pt;}
.y209{bottom:739.093333pt;}
.y36{bottom:740.853333pt;}
.y149{bottom:742.773333pt;}
.y1ad{bottom:743.173333pt;}
.y15a{bottom:743.573333pt;}
.ya9{bottom:745.093333pt;}
.y1cd{bottom:746.693333pt;}
.y64{bottom:747.413333pt;}
.y17f{bottom:747.493333pt;}
.yc0{bottom:749.093333pt;}
.y8f{bottom:754.133333pt;}
.yd8{bottom:758.773333pt;}
.y159{bottom:759.173333pt;}
.ya8{bottom:760.693333pt;}
.y1cc{bottom:762.373333pt;}
.y208{bottom:762.693333pt;}
.y63{bottom:763.013333pt;}
.y17e{bottom:763.093333pt;}
.ybf{bottom:764.693333pt;}
.y9{bottom:765.893333pt;}
.y1ac{bottom:767.093333pt;}
.y35{bottom:772.533333pt;}
.y158{bottom:774.773333pt;}
.ya7{bottom:776.373333pt;}
.y1f1{bottom:777.973333pt;}
.y207{bottom:778.373333pt;}
.y62{bottom:778.693333pt;}
.y8{bottom:781.893333pt;}
.y1cb{bottom:785.973333pt;}
.y34{bottom:788.133333pt;}
.yea{bottom:789.653333pt;}
.y157{bottom:790.453333pt;}
.ya6{bottom:791.973333pt;}
.y206{bottom:793.973333pt;}
.ybc{bottom:794.053333pt;}
.y61{bottom:794.293333pt;}
.y17d{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.y1ca{bottom:801.653333pt;}
.y33{bottom:803.733333pt;}
.y156{bottom:806.053333pt;}
.ya5{bottom:807.653333pt;}
.y60{bottom:809.893333pt;}
.y17c{bottom:809.973333pt;}
.y1f0{bottom:817.253333pt;}
.y205{bottom:817.653333pt;}
.y155{bottom:821.733333pt;}
.ya4{bottom:823.253333pt;}
.y1c9{bottom:825.253333pt;}
.y5f{bottom:825.573333pt;}
.y17b{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y204{bottom:833.253333pt;}
.y32{bottom:835.413333pt;}
.y154{bottom:837.333333pt;}
.y1c8{bottom:840.853333pt;}
.y5e{bottom:841.173333pt;}
.y17a{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y31{bottom:851.013333pt;}
.ya3{bottom:852.533333pt;}
.y153{bottom:852.933333pt;}
.y8c{bottom:856.533333pt;}
.y179{bottom:856.853333pt;}
.y1c7{bottom:864.533333pt;}
.y5d{bottom:865.093333pt;}
.y11c{bottom:865.253333pt;}
.y30{bottom:866.693333pt;}
.yf4{bottom:872.213333pt;}
.y1ab{bottom:872.533333pt;}
.y152{bottom:876.853333pt;}
.y4{bottom:877.893333pt;}
.y1c6{bottom:880.133333pt;}
.y1aa{bottom:888.133333pt;}
.y178{bottom:888.533333pt;}
.y2f{bottom:890.533333pt;}
.yd1{bottom:892.533333pt;}
.y1ef{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y1a9{bottom:903.840000pt;}
.y177{bottom:904.160000pt;}
.y5c{bottom:908.080000pt;}
.y203{bottom:911.840000pt;}
.y8b{bottom:915.520000pt;}
.y1a8{bottom:919.440000pt;}
.y151{bottom:919.840000pt;}
.y106{bottom:923.440000pt;}
.y5b{bottom:923.680000pt;}
.y202{bottom:927.440000pt;}
.y2e{bottom:933.520000pt;}
.y1a7{bottom:935.040000pt;}
.y150{bottom:935.440000pt;}
.ya2{bottom:939.440000pt;}
.y5a{bottom:940.000000pt;}
.y1c5{bottom:943.040000pt;}
.ybb{bottom:943.440000pt;}
.y8a{bottom:947.120000pt;}
.y2d{bottom:949.440000pt;}
.y1a6{bottom:950.720000pt;}
.y14f{bottom:951.040000pt;}
.ye9{bottom:954.640000pt;}
.y59{bottom:955.600000pt;}
.y1c4{bottom:958.720000pt;}
.y89{bottom:962.800000pt;}
.y1a5{bottom:966.320000pt;}
.y14e{bottom:966.720000pt;}
.y58{bottom:972.000000pt;}
.y1ee{bottom:974.320000pt;}
.y88{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y57{bottom:987.600000pt;}
.yf3{bottom:990.320000pt;}
.y2b{bottom:998.000000pt;}
.y87{bottom:1002.320000pt;}
.y56{bottom:1012.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h14{height:35.200000pt;}
.h1c{height:35.280000pt;}
.hb{height:39.280000pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h1f{height:54.880000pt;}
.ha{height:54.927899pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h10{height:70.480000pt;}
.h15{height:82.160000pt;}
.he{height:86.160000pt;}
.hf{height:86.186667pt;}
.hd{height:101.760000pt;}
.h13{height:117.360000pt;}
.h1b{height:117.440000pt;}
.h17{height:117.466667pt;}
.h11{height:133.040000pt;}
.h18{height:133.066667pt;}
.h12{height:133.146667pt;}
.h1a{height:148.640000pt;}
.h16{height:148.666667pt;}
.h1e{height:148.720000pt;}
.h2c{height:148.746667pt;}
.h23{height:160.346667pt;}
.h1d{height:164.240000pt;}
.h19{height:164.346667pt;}
.h2b{height:179.920000pt;}
.h2a{height:179.946667pt;}
.h2d{height:180.000000pt;}
.h22{height:195.600000pt;}
.h26{height:226.826667pt;}
.h27{height:258.160000pt;}
.h21{height:273.786667pt;}
.h25{height:289.386667pt;}
.h29{height:304.960000pt;}
.h20{height:304.986667pt;}
.h28{height:305.066667pt;}
.h24{height:320.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:38.720000pt;}
.w27{width:74.560000pt;}
.w28{width:74.906667pt;}
.w25{width:79.120000pt;}
.w13{width:81.520000pt;}
.w3{width:83.146667pt;}
.w1d{width:86.560000pt;}
.w26{width:86.960000pt;}
.w9{width:96.106667pt;}
.w20{width:97.600000pt;}
.we{width:98.666667pt;}
.wb{width:100.000000pt;}
.wa{width:100.880000pt;}
.w18{width:101.146667pt;}
.w22{width:101.680000pt;}
.w19{width:103.120000pt;}
.w10{width:105.280000pt;}
.w2a{width:107.200000pt;}
.w1f{width:110.240000pt;}
.w15{width:112.400000pt;}
.w11{width:113.626667pt;}
.w5{width:114.800000pt;}
.w1c{width:115.680000pt;}
.w1b{width:116.026667pt;}
.w23{width:116.160000pt;}
.w1e{width:118.746667pt;}
.w24{width:121.226667pt;}
.w7{width:121.520000pt;}
.w29{width:123.680000pt;}
.w21{width:123.866667pt;}
.w14{width:144.026667pt;}
.w1a{width:145.840000pt;}
.w4{width:146.000000pt;}
.wf{width:149.040000pt;}
.w17{width:155.440000pt;}
.wc{width:164.106667pt;}
.w6{width:164.266667pt;}
.wd{width:168.480000pt;}
.w16{width:175.626667pt;}
.w12{width:202.480000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:3.520000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x27{left:98.879988pt;}
.x5{left:108.479988pt;}
.x14{left:143.280000pt;}
.x7{left:144.906667pt;}
.xc{left:157.866667pt;}
.x10{left:160.426667pt;}
.x18{left:162.986667pt;}
.x1d{left:180.586667pt;}
.x21{left:183.066667pt;}
.x2{left:223.786655pt;}
.xd{left:259.466667pt;}
.x22{left:262.906667pt;}
.x19{left:266.746667pt;}
.x15{left:287.946667pt;}
.x8{left:291.546667pt;}
.x11{left:310.186667pt;}
.x23{left:350.506667pt;}
.xe{left:360.186667pt;}
.x1e{left:389.706667pt;}
.x16{left:401.066667pt;}
.x9{left:407.066667pt;}
.x1a{left:413.306667pt;}
.x12{left:416.106667pt;}
.x24{left:425.706667pt;}
.x25{left:501.333333pt;}
.x1f{left:514.293333pt;}
.xf{left:525.013333pt;}
.x13{left:530.373333pt;}
.xa{left:571.973333pt;}
.x17{left:577.413333pt;}
.x20{left:616.693333pt;}
.x26{left:625.653333pt;}
.x1b{left:646.293333pt;}
.xb{left:694.133333pt;}
.x3{left:718.773322pt;}
}




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