
    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_ec2b84aa67e821316ca38960.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944336;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_a8e9211f608ab14c1498767a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_b64883c68cf1c9a1b7551a2b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966797;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_b48ec2c329c46bcd3b3c0b2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_480e43d28e09adb6981d38fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_e0ef7113f2aa3bd2618e918b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944336;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_4278855af53fb63074662c57.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.762207;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_1a1a477be9467505fc760003.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_909c3586de658c87c2651790.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.736816;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_f59e6cb5811e3c7ee14c6984.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966797;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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);}
.m2{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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls15{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.828000px;}
.ls24{letter-spacing:-0.756000px;}
.ls14{letter-spacing:-0.660000px;}
.ls1f{letter-spacing:-0.564600px;}
.ls16{letter-spacing:-0.484800px;}
.ls29{letter-spacing:-0.414000px;}
.ls26{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.324000px;}
.lsb{letter-spacing:-0.298200px;}
.lsd{letter-spacing:-0.262200px;}
.lsc{letter-spacing:-0.240600px;}
.ls2c{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.213000px;}
.lsf{letter-spacing:-0.198000px;}
.lse{letter-spacing:-0.122400px;}
.ls1d{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.091200px;}
.ls23{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.057600px;}
.ls17{letter-spacing:-0.052560px;}
.ls22{letter-spacing:-0.032400px;}
.ls8{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.018000px;}
.ls21{letter-spacing:0.047520px;}
.ls27{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.057600px;}
.ls2{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.109440px;}
.ls6{letter-spacing:0.122400px;}
.ls20{letter-spacing:0.155400px;}
.ls1a{letter-spacing:0.155520px;}
.ls1{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.237600px;}
.ls12{letter-spacing:0.253200px;}
.ls7{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.417600px;}
.ls13{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.810000px;}
.ls19{letter-spacing:4.320000px;}
.ls5{letter-spacing:4.500000px;}
.ls3{letter-spacing:6.480000px;}
.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;}
}
.ws25{word-spacing:-54.000000px;}
.ws1b{word-spacing:-22.407840px;}
.ws1e{word-spacing:-22.316640px;}
.ws5{word-spacing:-22.167240px;}
.ws4{word-spacing:-22.109640px;}
.ws0{word-spacing:-17.726640px;}
.ws10{word-spacing:-17.280000px;}
.wsb{word-spacing:-16.920000px;}
.wsf{word-spacing:-16.813200px;}
.ws1f{word-spacing:-16.715400px;}
.wse{word-spacing:-16.617600px;}
.ws1c{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.502400px;}
.wsd{word-spacing:-16.347000px;}
.ws1d{word-spacing:-16.297800px;}
.ws17{word-spacing:-15.953760px;}
.ws11{word-spacing:-15.900000px;}
.ws13{word-spacing:-15.896160px;}
.ws18{word-spacing:-15.843600px;}
.ws12{word-spacing:-15.624000px;}
.ws20{word-spacing:-15.300000px;}
.ws21{word-spacing:-14.907600px;}
.ws1a{word-spacing:-14.878800px;}
.ws22{word-spacing:-14.850000px;}
.ws29{word-spacing:-14.310000px;}
.ws27{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.410000px;}
.ws26{word-spacing:-13.284000px;}
.ws3{word-spacing:-13.230000px;}
.ws24{word-spacing:-13.140000px;}
.wsa{word-spacing:-13.032000px;}
.ws2a{word-spacing:-13.014000px;}
.ws28{word-spacing:-12.906000px;}
.ws14{word-spacing:-12.831840px;}
.ws15{word-spacing:-12.117600px;}
.ws8{word-spacing:-11.818800px;}
.ws23{word-spacing:-11.304000px;}
.ws1{word-spacing:-10.648800px;}
.ws9{word-spacing:-5.821200px;}
.ws6{word-spacing:-5.698800px;}
.ws7{word-spacing:-5.115600px;}
.ws19{word-spacing:0.000000px;}
._1d{margin-left:-14.254080px;}
._14{margin-left:-10.776960px;}
._1c{margin-left:-8.354160px;}
._1b{margin-left:-7.023120px;}
._a{margin-left:-4.555263px;}
._9{margin-left:-3.494483px;}
._5{margin-left:-2.273280px;}
._1{margin-left:-1.117158px;}
._0{width:1.058400px;}
._7{width:2.301600px;}
._8{width:3.645130px;}
._4{width:4.784275px;}
._3{width:6.053040px;}
._6{width:7.095683px;}
._d{width:8.187840px;}
._15{width:9.595033px;}
._e{width:10.897920px;}
._f{width:12.182400px;}
._c{width:14.190637px;}
._b{width:15.456000px;}
._18{width:16.698678px;}
._20{width:17.818560px;}
._21{width:18.890598px;}
._22{width:20.284122px;}
._1e{width:22.190400px;}
._1f{width:23.229798px;}
._10{width:24.249600px;}
._2a{width:26.406000px;}
._11{width:27.793878px;}
._28{width:29.646000px;}
._12{width:31.433040px;}
._16{width:35.408160px;}
._17{width:36.436477px;}
._19{width:40.280400px;}
._1a{width:41.486598px;}
._2b{width:52.542000px;}
._29{width:56.376000px;}
._27{width:66.170317px;}
._26{width:67.176000px;}
._2{width:72.720240px;}
._25{width:116.437158px;}
._24{width:117.828000px;}
._23{width:127.656000px;}
._13{width:256.152157px;}
._2c{width:663.960000px;}
.fc6{color:rgb(0,0,204);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(31,73,125);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:20.880000px;}
.fsc{font-size:23.760000px;}
.fsa{font-size:31.875440px;}
.fs2{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fsb{font-size:50.848916px;}
.fs1{font-size:54.000000px;}
.fsd{font-size:56.920429px;}
.fsf{font-size:59.760000px;}
.fs10{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:69.822393px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y228{bottom:3.234000px;}
.y56{bottom:3.240000px;}
.y16e{bottom:3.420000px;}
.y16f{bottom:3.600000px;}
.y69{bottom:3.960000px;}
.y163{bottom:4.140000px;}
.y6f{bottom:4.320000px;}
.y1b{bottom:4.860000px;}
.y27{bottom:7.020000px;}
.y55{bottom:16.380000px;}
.yfa{bottom:16.560000px;}
.y227{bottom:16.914000px;}
.y26{bottom:17.100000px;}
.y161{bottom:21.060000px;}
.y15f{bottom:21.420000px;}
.y25{bottom:21.600000px;}
.y6e{bottom:22.680000px;}
.y1a{bottom:24.885000px;}
.y54{bottom:29.700000px;}
.y136{bottom:29.880000px;}
.y49{bottom:30.060000px;}
.y24{bottom:35.820000px;}
.y6d{bottom:40.890000px;}
.y48{bottom:43.380000px;}
.y53{bottom:43.560000px;}
.y6{bottom:44.100000px;}
.y67{bottom:46.620000px;}
.y19{bottom:47.565000px;}
.y23{bottom:49.500000px;}
.y5{bottom:56.160000px;}
.y47{bottom:56.925000px;}
.y52{bottom:58.545000px;}
.y6c{bottom:59.070000px;}
.y22{bottom:63.180000px;}
.y66{bottom:63.360000px;}
.y4{bottom:69.480000px;}
.y18{bottom:70.425000px;}
.y46{bottom:72.585000px;}
.y51{bottom:73.125000px;}
.y21{bottom:73.260000px;}
.y65{bottom:76.680000px;}
.y6b{bottom:77.790000px;}
.y45{bottom:86.085000px;}
.y50{bottom:86.445000px;}
.y20{bottom:93.060000px;}
.y15{bottom:93.285000px;}
.y16{bottom:97.065000px;}
.y17{bottom:98.505000px;}
.y44{bottom:99.225000px;}
.y4f{bottom:99.585000px;}
.y1f{bottom:103.860000px;}
.y63{bottom:105.696000px;}
.yb1{bottom:112.356000px;}
.y43{bottom:112.545000px;}
.y4e{bottom:112.905000px;}
.y123{bottom:117.936000px;}
.yf8{bottom:119.376000px;}
.y42{bottom:125.685000px;}
.y62{bottom:125.856000px;}
.y15c{bottom:126.036000px;}
.y4d{bottom:126.405000px;}
.yb0{bottom:130.536000px;}
.y229{bottom:135.756000px;}
.y122{bottom:136.116000px;}
.yf7{bottom:137.556000px;}
.y41{bottom:139.185000px;}
.y4c{bottom:139.725000px;}
.y1a3{bottom:140.436000px;}
.y1e{bottom:143.505000px;}
.y15b{bottom:144.216000px;}
.y61{bottom:145.476000px;}
.yaf{bottom:148.716000px;}
.y226{bottom:149.616000px;}
.y40{bottom:152.685000px;}
.y4b{bottom:153.045000px;}
.y121{bottom:154.290000px;}
.y1d{bottom:154.305000px;}
.yf6{bottom:155.730000px;}
.y1a2{bottom:158.610000px;}
.y1ea{bottom:160.770000px;}
.y15a{bottom:162.390000px;}
.y60{bottom:163.650000px;}
.y3f{bottom:166.185000px;}
.y4a{bottom:166.545000px;}
.yae{bottom:166.890000px;}
.y120{bottom:172.650000px;}
.yf5{bottom:174.090000px;}
.y1e9{bottom:175.530000px;}
.y1a1{bottom:176.970000px;}
.y3e{bottom:179.865000px;}
.y159{bottom:180.570000px;}
.y5f{bottom:182.010000px;}
.yad{bottom:185.070000px;}
.y11f{bottom:190.830000px;}
.yf4{bottom:192.270000px;}
.y3d{bottom:193.005000px;}
.y1a0{bottom:195.150000px;}
.y158{bottom:198.930000px;}
.y5e{bottom:199.110000px;}
.yac{bottom:205.050000px;}
.y1e8{bottom:206.130000px;}
.y3c{bottom:206.505000px;}
.y11e{bottom:209.010000px;}
.yf3{bottom:210.450000px;}
.y19f{bottom:213.330000px;}
.y5d{bottom:216.030000px;}
.y157{bottom:217.110000px;}
.y1e7{bottom:221.070000px;}
.yab{bottom:223.230000px;}
.y11d{bottom:227.190000px;}
.yf2{bottom:228.630000px;}
.y19e{bottom:231.510000px;}
.y5c{bottom:232.950000px;}
.y225{bottom:234.930000px;}
.y156{bottom:235.830000px;}
.y1e6{bottom:236.370000px;}
.yaa{bottom:241.410000px;}
.y11c{bottom:245.550000px;}
.yf1{bottom:246.990000px;}
.y19d{bottom:249.870000px;}
.y5b{bottom:250.050000px;}
.y1e5{bottom:251.310000px;}
.y155{bottom:255.810000px;}
.ya9{bottom:259.590000px;}
.y11b{bottom:264.270000px;}
.yf0{bottom:265.170000px;}
.y1e4{bottom:266.610000px;}
.y5a{bottom:266.970000px;}
.y19c{bottom:268.050000px;}
.y224{bottom:270.930000px;}
.y154{bottom:273.990000px;}
.ya8{bottom:277.770000px;}
.y1e3{bottom:281.550000px;}
.yef{bottom:283.350000px;}
.y59{bottom:284.070000px;}
.y19b{bottom:286.230000px;}
.y153{bottom:292.170000px;}
.y1e2{bottom:296.490000px;}
.ya7{bottom:296.670000px;}
.yee{bottom:301.530000px;}
.y11a{bottom:302.250000px;}
.y58{bottom:302.970000px;}
.y19a{bottom:304.410000px;}
.y223{bottom:306.750000px;}
.y152{bottom:310.350000px;}
.y1e1{bottom:311.790000px;}
.ya6{bottom:316.470000px;}
.yed{bottom:320.430000px;}
.y119{bottom:320.610000px;}
.y199{bottom:322.590000px;}
.y57{bottom:327.810000px;}
.y1e0{bottom:327.990000px;}
.y151{bottom:328.710000px;}
.ya5{bottom:334.650000px;}
.y118{bottom:338.790000px;}
.y198{bottom:340.950000px;}
.yec{bottom:341.490000px;}
.y222{bottom:342.750000px;}
.y1df{bottom:343.290000px;}
.y3b{bottom:345.990000px;}
.y150{bottom:346.890000px;}
.ya4{bottom:353.010000px;}
.y117{bottom:356.970000px;}
.y1de{bottom:358.230000px;}
.y197{bottom:359.130000px;}
.yeb{bottom:363.990000px;}
.y14f{bottom:365.070000px;}
.ya3{bottom:371.190000px;}
.y1dd{bottom:373.530000px;}
.y116{bottom:375.150000px;}
.y196{bottom:377.310000px;}
.y221{bottom:378.750000px;}
.yea{bottom:382.170000px;}
.y14e{bottom:383.250000px;}
.y1dc{bottom:388.830000px;}
.ya2{bottom:389.370000px;}
.y115{bottom:393.510000px;}
.y195{bottom:395.490000px;}
.ye9{bottom:400.530000px;}
.y14d{bottom:401.475000px;}
.y1db{bottom:403.815000px;}
.ya1{bottom:407.595000px;}
.y114{bottom:411.735000px;}
.y194{bottom:413.895000px;}
.y220{bottom:414.795000px;}
.ye8{bottom:418.755000px;}
.y1da{bottom:419.115000px;}
.y14c{bottom:419.835000px;}
.ya0{bottom:425.955000px;}
.y113{bottom:429.915000px;}
.y193{bottom:432.075000px;}
.y1d9{bottom:434.055000px;}
.ye7{bottom:436.935000px;}
.y14b{bottom:438.015000px;}
.y9f{bottom:444.135000px;}
.y112{bottom:448.095000px;}
.y192{bottom:450.255000px;}
.y21f{bottom:450.795000px;}
.ye6{bottom:455.115000px;}
.y14a{bottom:456.195000px;}
.y9e{bottom:462.315000px;}
.y1d8{bottom:465.555000px;}
.y111{bottom:466.455000px;}
.y191{bottom:468.435000px;}
.ye5{bottom:474.015000px;}
.y149{bottom:474.375000px;}
.y9d{bottom:480.495000px;}
.y110{bottom:484.635000px;}
.y21e{bottom:486.615000px;}
.y190{bottom:486.795000px;}
.y148{bottom:492.735000px;}
.ye4{bottom:493.815000px;}
.y1d7{bottom:495.795000px;}
.y9c{bottom:498.855000px;}
.y10f{bottom:502.815000px;}
.y18f{bottom:504.975000px;}
.y1d6{bottom:510.555000px;}
.y147{bottom:510.915000px;}
.ye3{bottom:511.995000px;}
.y9b{bottom:517.035000px;}
.y10e{bottom:520.995000px;}
.y21d{bottom:522.615000px;}
.y18e{bottom:523.155000px;}
.y1d5{bottom:525.855000px;}
.y146{bottom:529.095000px;}
.ye2{bottom:530.355000px;}
.y9a{bottom:535.215000px;}
.y10d{bottom:539.355000px;}
.y1d4{bottom:541.155000px;}
.y18d{bottom:541.335000px;}
.y145{bottom:547.275000px;}
.ye1{bottom:548.535000px;}
.y99{bottom:553.395000px;}
.y1d3{bottom:556.455000px;}
.y10c{bottom:557.535000px;}
.y21c{bottom:558.615000px;}
.y18c{bottom:560.955000px;}
.y144{bottom:565.635000px;}
.ye0{bottom:566.715000px;}
.y3a{bottom:567.075000px;}
.y1d2{bottom:571.395000px;}
.y98{bottom:571.755000px;}
.y10b{bottom:575.715000px;}
.y18b{bottom:583.455000px;}
.y143{bottom:583.815000px;}
.ydf{bottom:584.895000px;}
.y39{bottom:585.435000px;}
.y1d1{bottom:586.335000px;}
.y97{bottom:589.935000px;}
.y10a{bottom:593.895000px;}
.y21b{bottom:594.615000px;}
.y18a{bottom:601.635000px;}
.y142{bottom:601.995000px;}
.y38{bottom:602.355000px;}
.yde{bottom:603.075000px;}
.y96{bottom:608.115000px;}
.y109{bottom:612.255000px;}
.y1d0{bottom:616.575000px;}
.y37{bottom:619.635000px;}
.y189{bottom:619.815000px;}
.y141{bottom:620.175000px;}
.ydd{bottom:621.435000px;}
.y95{bottom:626.295000px;}
.y108{bottom:630.435000px;}
.y1cf{bottom:631.875000px;}
.y36{bottom:637.995000px;}
.y188{bottom:638.175000px;}
.y140{bottom:638.535000px;}
.ydc{bottom:639.615000px;}
.y94{bottom:644.655000px;}
.y1ce{bottom:646.815000px;}
.y107{bottom:648.615000px;}
.y21a{bottom:648.795000px;}
.y35{bottom:656.175000px;}
.y187{bottom:656.355000px;}
.y13f{bottom:656.715000px;}
.ydb{bottom:657.795000px;}
.y1cd{bottom:661.755000px;}
.y93{bottom:662.835000px;}
.y106{bottom:666.795000px;}
.y34{bottom:674.355000px;}
.y186{bottom:674.535000px;}
.y13e{bottom:674.895000px;}
.yda{bottom:675.975000px;}
.y1cc{bottom:677.055000px;}
.y92{bottom:681.015000px;}
.y219{bottom:681.195000px;}
.y105{bottom:685.155000px;}
.y13a{bottom:691.095000px;}
.y1cb{bottom:692.355000px;}
.y33{bottom:692.535000px;}
.y185{bottom:692.715000px;}
.yd9{bottom:694.335000px;}
.y218{bottom:696.495000px;}
.y91{bottom:699.195000px;}
.y104{bottom:703.335000px;}
.y1ca{bottom:707.655000px;}
.y13d{bottom:708.375000px;}
.y32{bottom:710.895000px;}
.y184{bottom:711.075000px;}
.y217{bottom:711.795000px;}
.yd8{bottom:712.515000px;}
.y90{bottom:717.555000px;}
.y103{bottom:721.545000px;}
.y1c9{bottom:722.625000px;}
.y13c{bottom:725.685000px;}
.y216{bottom:726.765000px;}
.y31{bottom:729.105000px;}
.y183{bottom:729.285000px;}
.yd7{bottom:730.725000px;}
.y8f{bottom:735.765000px;}
.y1c8{bottom:737.925000px;}
.y102{bottom:739.725000px;}
.y215{bottom:742.065000px;}
.y13b{bottom:742.965000px;}
.y30{bottom:747.285000px;}
.y182{bottom:747.465000px;}
.yd6{bottom:748.905000px;}
.y1c7{bottom:752.865000px;}
.y8e{bottom:753.945000px;}
.y214{bottom:757.005000px;}
.y101{bottom:758.085000px;}
.y135{bottom:760.425000px;}
.y2f{bottom:765.465000px;}
.y181{bottom:765.645000px;}
.yd5{bottom:767.265000px;}
.y1c6{bottom:767.625000px;}
.y213{bottom:771.945000px;}
.y8d{bottom:772.125000px;}
.y100{bottom:776.265000px;}
.y139{bottom:777.705000px;}
.y1c5{bottom:782.925000px;}
.y2e{bottom:783.645000px;}
.y180{bottom:783.825000px;}
.yd4{bottom:785.445000px;}
.y212{bottom:787.245000px;}
.y8c{bottom:790.305000px;}
.yff{bottom:794.445000px;}
.y138{bottom:794.985000px;}
.y1c4{bottom:798.225000px;}
.y2d{bottom:802.005000px;}
.y17f{bottom:802.185000px;}
.yd3{bottom:803.625000px;}
.y8b{bottom:809.205000px;}
.y137{bottom:812.265000px;}
.yfe{bottom:812.625000px;}
.y1c3{bottom:813.525000px;}
.y211{bottom:816.945000px;}
.y2c{bottom:820.185000px;}
.y17e{bottom:820.365000px;}
.yd2{bottom:821.805000px;}
.y1c2{bottom:828.465000px;}
.y8a{bottom:829.005000px;}
.yfd{bottom:830.985000px;}
.y133{bottom:831.165000px;}
.y210{bottom:832.245000px;}
.y2b{bottom:838.365000px;}
.y17d{bottom:838.545000px;}
.yd1{bottom:840.165000px;}
.y1c1{bottom:843.765000px;}
.y89{bottom:847.185000px;}
.y134{bottom:848.805000px;}
.yfc{bottom:849.705000px;}
.y2a{bottom:856.545000px;}
.y17c{bottom:856.725000px;}
.yd0{bottom:858.345000px;}
.y1c0{bottom:858.705000px;}
.y20f{bottom:862.125000px;}
.y88{bottom:865.545000px;}
.yfb{bottom:869.505000px;}
.y132{bottom:873.105000px;}
.y1bf{bottom:874.005000px;}
.y17b{bottom:875.085000px;}
.y29{bottom:875.445000px;}
.ycf{bottom:876.525000px;}
.y20e{bottom:877.425000px;}
.yf9{bottom:883.365000px;}
.y87{bottom:883.725000px;}
.y1be{bottom:888.945000px;}
.y131{bottom:889.305000px;}
.y20d{bottom:892.365000px;}
.y17a{bottom:893.265000px;}
.yce{bottom:894.705000px;}
.y28{bottom:896.505000px;}
.y86{bottom:901.905000px;}
.y1bd{bottom:904.245000px;}
.y130{bottom:907.485000px;}
.y20c{bottom:907.665000px;}
.y179{bottom:911.445000px;}
.ycd{bottom:913.065000px;}
.y1c{bottom:914.685000px;}
.y1bc{bottom:919.185000px;}
.y85{bottom:920.085000px;}
.y20b{bottom:923.865000px;}
.y12f{bottom:925.665000px;}
.y178{bottom:929.625000px;}
.ycc{bottom:931.245000px;}
.y1bb{bottom:934.125000px;}
.y84{bottom:938.445000px;}
.y20a{bottom:939.165000px;}
.y12e{bottom:943.845000px;}
.y177{bottom:947.985000px;}
.ycb{bottom:949.425000px;}
.y209{bottom:954.465000px;}
.y83{bottom:956.625000px;}
.y12d{bottom:962.205000px;}
.y1ba{bottom:964.365000px;}
.y176{bottom:966.165000px;}
.yca{bottom:967.605000px;}
.y208{bottom:969.765000px;}
.y82{bottom:974.805000px;}
.y1b9{bottom:979.665000px;}
.y12c{bottom:980.385000px;}
.y175{bottom:984.345000px;}
.y207{bottom:985.065000px;}
.yc9{bottom:986.505000px;}
.y81{bottom:992.985000px;}
.y1b8{bottom:994.605000px;}
.y12b{bottom:998.565000px;}
.y206{bottom:1000.005000px;}
.y174{bottom:1002.525000px;}
.yc8{bottom:1006.305000px;}
.y1b7{bottom:1009.905000px;}
.y80{bottom:1011.345000px;}
.y205{bottom:1015.305000px;}
.y12a{bottom:1016.745000px;}
.y173{bottom:1020.885000px;}
.yc7{bottom:1024.485000px;}
.y1b6{bottom:1025.205000px;}
.y7f{bottom:1029.525000px;}
.y14{bottom:1029.885000px;}
.y204{bottom:1030.245000px;}
.y129{bottom:1035.105000px;}
.y172{bottom:1039.065000px;}
.y1b5{bottom:1040.505000px;}
.yc6{bottom:1042.890000px;}
.y203{bottom:1045.590000px;}
.y7e{bottom:1047.750000px;}
.y128{bottom:1053.330000px;}
.y1b4{bottom:1055.310000px;}
.y171{bottom:1057.290000px;}
.y202{bottom:1060.530000px;}
.yc5{bottom:1061.070000px;}
.y7d{bottom:1065.930000px;}
.y1b3{bottom:1070.610000px;}
.y127{bottom:1071.510000px;}
.y201{bottom:1075.290000px;}
.y170{bottom:1075.470000px;}
.yc4{bottom:1079.250000px;}
.y7c{bottom:1084.290000px;}
.y1b2{bottom:1087.530000px;}
.y16d{bottom:1089.330000px;}
.y126{bottom:1089.690000px;}
.y200{bottom:1090.590000px;}
.yc3{bottom:1097.430000px;}
.y7b{bottom:1102.470000px;}
.y16c{bottom:1105.170000px;}
.y1ff{bottom:1105.530000px;}
.y125{bottom:1108.590000px;}
.y1b1{bottom:1110.210000px;}
.yc2{bottom:1115.610000px;}
.y1fe{bottom:1120.470000px;}
.y7a{bottom:1120.650000px;}
.y16b{bottom:1122.630000px;}
.y1b0{bottom:1128.390000px;}
.y124{bottom:1129.650000px;}
.yc1{bottom:1133.970000px;}
.y1fd{bottom:1135.770000px;}
.y79{bottom:1138.830000px;}
.y16a{bottom:1139.910000px;}
.y1af{bottom:1146.570000px;}
.y13{bottom:1149.090000px;}
.y1fc{bottom:1150.710000px;}
.yc0{bottom:1152.150000px;}
.y78{bottom:1157.190000px;}
.y1ae{bottom:1164.750000px;}
.y1fb{bottom:1166.010000px;}
.ybf{bottom:1170.330000px;}
.y169{bottom:1174.470000px;}
.y77{bottom:1175.370000px;}
.y12{bottom:1180.590000px;}
.y1fa{bottom:1181.310000px;}
.y1ad{bottom:1183.110000px;}
.ybe{bottom:1188.510000px;}
.y168{bottom:1191.750000px;}
.y76{bottom:1193.550000px;}
.y1f9{bottom:1196.250000px;}
.y1ac{bottom:1201.290000px;}
.y11{bottom:1204.350000px;}
.ybd{bottom:1206.870000px;}
.y167{bottom:1209.210000px;}
.y1f8{bottom:1211.550000px;}
.y75{bottom:1211.730000px;}
.y1ab{bottom:1219.470000px;}
.ybc{bottom:1225.050000px;}
.y166{bottom:1226.490000px;}
.y1f7{bottom:1226.850000px;}
.y10{bottom:1228.110000px;}
.y74{bottom:1230.090000px;}
.y1aa{bottom:1237.650000px;}
.y1f6{bottom:1242.150000px;}
.ybb{bottom:1243.230000px;}
.y165{bottom:1243.770000px;}
.y73{bottom:1248.270000px;}
.yf{bottom:1252.050000px;}
.y1a9{bottom:1256.010000px;}
.y1f5{bottom:1257.450000px;}
.y164{bottom:1261.050000px;}
.yba{bottom:1261.410000px;}
.y72{bottom:1266.450000px;}
.y1f4{bottom:1272.750000px;}
.y1a8{bottom:1274.190000px;}
.ye{bottom:1275.810000px;}
.y162{bottom:1278.330000px;}
.yb9{bottom:1279.770000px;}
.y71{bottom:1285.890000px;}
.y1f3{bottom:1287.690000px;}
.y1a7{bottom:1292.370000px;}
.y15e{bottom:1297.230000px;}
.yd{bottom:1297.590000px;}
.yb8{bottom:1297.950000px;}
.y1f2{bottom:1302.990000px;}
.yc{bottom:1309.290000px;}
.y70{bottom:1309.650000px;}
.y1a6{bottom:1310.550000px;}
.yb7{bottom:1316.130000px;}
.y1f1{bottom:1317.930000px;}
.y6a{bottom:1327.830000px;}
.y1a5{bottom:1328.910000px;}
.y160{bottom:1331.970000px;}
.y1f0{bottom:1333.230000px;}
.yb6{bottom:1334.310000px;}
.yb{bottom:1339.530000px;}
.y1a4{bottom:1348.350000px;}
.y1ef{bottom:1349.430000px;}
.yb5{bottom:1352.670000px;}
.ya{bottom:1353.390000px;}
.y15d{bottom:1354.830000px;}
.y1ee{bottom:1364.400000px;}
.y9{bottom:1368.720000px;}
.yb4{bottom:1370.880000px;}
.y1ed{bottom:1379.700000px;}
.y8{bottom:1384.020000px;}
.yb3{bottom:1389.060000px;}
.y1ec{bottom:1394.640000px;}
.y7{bottom:1400.040000px;}
.yb2{bottom:1407.240000px;}
.y1eb{bottom:1409.940000px;}
.y3{bottom:1416.780000px;}
.y2{bottom:1427.940000px;}
.y68{bottom:1437.300000px;}
.y1{bottom:1443.600000px;}
.y64{bottom:1445.040000px;}
.h2f{height:13.680000px;}
.h28{height:16.560000px;}
.h2a{height:16.596000px;}
.h2e{height:16.740000px;}
.h26{height:16.920000px;}
.h15{height:18.468984px;}
.h25{height:18.540000px;}
.h13{height:19.599609px;}
.h1e{height:20.700000px;}
.h16{height:22.479609px;}
.hc{height:23.610861px;}
.h3{height:25.066406px;}
.h31{height:27.180000px;}
.hd{height:27.881719px;}
.h5{height:29.077031px;}
.h19{height:32.670352px;}
.h7{height:33.588984px;}
.h2c{height:34.020000px;}
.h32{height:34.437230px;}
.h24{height:36.180000px;}
.h2{height:37.599609px;}
.h11{height:37.664944px;}
.h14{height:38.549138px;}
.h30{height:39.049805px;}
.h17{height:40.472227px;}
.h1c{height:41.610234px;}
.h2d{height:42.661046px;}
.h4{height:44.860781px;}
.h6{height:46.122187px;}
.h1{height:47.286943px;}
.h22{height:47.901094px;}
.hb{height:48.761719px;}
.he{height:50.132812px;}
.h2b{height:51.660000px;}
.h8{height:57.051211px;}
.h1a{height:59.439023px;}
.h1b{height:63.180000px;}
.h1d{height:65.884219px;}
.h27{height:68.400000px;}
.h29{height:68.436000px;}
.h21{height:73.722656px;}
.h1f{height:74.004654px;}
.h9{height:81.432070px;}
.h10{height:83.721797px;}
.h20{height:93.276000px;}
.ha{height:111.096000px;}
.h12{height:115.200000px;}
.h18{height:216.750000px;}
.hf{height:226.290000px;}
.h23{height:246.090000px;}
.h0{height:1512.000000px;}
.w6{width:8.280000px;}
.w1e{width:45.036000px;}
.w10{width:46.260000px;}
.w13{width:46.800000px;}
.wd{width:52.740000px;}
.w1a{width:60.300000px;}
.w11{width:66.456000px;}
.we{width:73.116000px;}
.w15{width:73.836000px;}
.w12{width:76.860000px;}
.w16{width:80.460000px;}
.wf{width:86.580000px;}
.w14{width:99.720000px;}
.w17{width:116.496000px;}
.w1d{width:127.440000px;}
.w1c{width:154.650000px;}
.w9{width:155.010000px;}
.w1b{width:159.150000px;}
.w3{width:187.590000px;}
.wb{width:191.010000px;}
.wa{width:213.870000px;}
.wc{width:214.590000px;}
.w19{width:282.810000px;}
.w18{width:314.535000px;}
.w4{width:352.515000px;}
.w5{width:438.735000px;}
.w1f{width:577.365000px;}
.w2{width:580.965000px;}
.w7{width:661.605000px;}
.w8{width:776.670000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2d{left:4.680000px;}
.xa{left:8.100000px;}
.x29{left:9.540000px;}
.x27{left:13.680000px;}
.x30{left:16.020000px;}
.x40{left:17.280000px;}
.x2a{left:18.900000px;}
.x25{left:22.320000px;}
.x3e{left:24.120000px;}
.x23{left:25.380000px;}
.x33{left:26.640000px;}
.x32{left:30.420000px;}
.xf{left:32.985000px;}
.x3b{left:34.560000px;}
.x10{left:36.765000px;}
.x41{left:39.600000px;}
.x12{left:40.896000px;}
.x3a{left:41.940000px;}
.x42{left:43.200000px;}
.x38{left:44.280000px;}
.x1a{left:45.900000px;}
.x11{left:47.745000px;}
.x36{left:52.020000px;}
.x18{left:53.100000px;}
.x2{left:60.479986px;}
.x3f{left:64.305000px;}
.x9{left:68.580000px;}
.x3c{left:79.740000px;}
.x17{left:81.719986px;}
.x1e{left:87.479986px;}
.x16{left:101.015986px;}
.x43{left:105.516000px;}
.x1d{left:109.116000px;}
.x44{left:114.515986px;}
.xe{left:128.565000px;}
.x31{left:135.396000px;}
.x20{left:154.290000px;}
.x34{left:177.690000px;}
.x21{left:216.570000px;}
.xb{left:219.675000px;}
.xc{left:226.515000px;}
.x1b{left:237.269986px;}
.x26{left:270.030000px;}
.x39{left:337.575000px;}
.x28{left:343.875000px;}
.x19{left:405.615000px;}
.x15{left:414.614986px;}
.x22{left:431.175000px;}
.x14{left:448.814986px;}
.x2b{left:478.155000px;}
.x35{left:492.945000px;}
.x8{left:497.264986px;}
.x4{left:502.304986px;}
.x13{left:511.305000px;}
.x2c{left:545.325000px;}
.x6{left:606.344986px;}
.x3d{left:621.105000px;}
.x24{left:622.905000px;}
.xd{left:649.545000px;}
.x7{left:667.364986px;}
.x2e{left:670.605000px;}
.x5{left:682.709986px;}
.x2f{left:737.790000px;}
.x1f{left:762.450000px;}
.x37{left:776.490000px;}
.x3{left:810.869986px;}
.x1c{left:828.870000px;}
.x1{left:837.149986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.736000pt;}
.ls24{letter-spacing:-0.672000pt;}
.ls14{letter-spacing:-0.586667pt;}
.ls1f{letter-spacing:-0.501867pt;}
.ls16{letter-spacing:-0.430933pt;}
.ls29{letter-spacing:-0.368000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.288000pt;}
.lsb{letter-spacing:-0.265067pt;}
.lsd{letter-spacing:-0.233067pt;}
.lsc{letter-spacing:-0.213867pt;}
.ls2c{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.189333pt;}
.lsf{letter-spacing:-0.176000pt;}
.lse{letter-spacing:-0.108800pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.081067pt;}
.ls23{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.051200pt;}
.ls17{letter-spacing:-0.046720pt;}
.ls22{letter-spacing:-0.028800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.016000pt;}
.ls21{letter-spacing:0.042240pt;}
.ls27{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.051200pt;}
.ls2{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.097280pt;}
.ls6{letter-spacing:0.108800pt;}
.ls20{letter-spacing:0.138133pt;}
.ls1a{letter-spacing:0.138240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.211200pt;}
.ls12{letter-spacing:0.225067pt;}
.ls7{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.371200pt;}
.ls13{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.720000pt;}
.ls19{letter-spacing:3.840000pt;}
.ls5{letter-spacing:4.000000pt;}
.ls3{letter-spacing:5.760000pt;}
.ws25{word-spacing:-48.000000pt;}
.ws1b{word-spacing:-19.918080pt;}
.ws1e{word-spacing:-19.837013pt;}
.ws5{word-spacing:-19.704213pt;}
.ws4{word-spacing:-19.653013pt;}
.ws0{word-spacing:-15.757013pt;}
.ws10{word-spacing:-15.360000pt;}
.wsb{word-spacing:-15.040000pt;}
.wsf{word-spacing:-14.945067pt;}
.ws1f{word-spacing:-14.858133pt;}
.wse{word-spacing:-14.771200pt;}
.ws1c{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.668800pt;}
.wsd{word-spacing:-14.530667pt;}
.ws1d{word-spacing:-14.486933pt;}
.ws17{word-spacing:-14.181120pt;}
.ws11{word-spacing:-14.133333pt;}
.ws13{word-spacing:-14.129920pt;}
.ws18{word-spacing:-14.083200pt;}
.ws12{word-spacing:-13.888000pt;}
.ws20{word-spacing:-13.600000pt;}
.ws21{word-spacing:-13.251200pt;}
.ws1a{word-spacing:-13.225600pt;}
.ws22{word-spacing:-13.200000pt;}
.ws29{word-spacing:-12.720000pt;}
.ws27{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.920000pt;}
.ws26{word-spacing:-11.808000pt;}
.ws3{word-spacing:-11.760000pt;}
.ws24{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.584000pt;}
.ws2a{word-spacing:-11.568000pt;}
.ws28{word-spacing:-11.472000pt;}
.ws14{word-spacing:-11.406080pt;}
.ws15{word-spacing:-10.771200pt;}
.ws8{word-spacing:-10.505600pt;}
.ws23{word-spacing:-10.048000pt;}
.ws1{word-spacing:-9.465600pt;}
.ws9{word-spacing:-5.174400pt;}
.ws6{word-spacing:-5.065600pt;}
.ws7{word-spacing:-4.547200pt;}
.ws19{word-spacing:0.000000pt;}
._1d{margin-left:-12.670293pt;}
._14{margin-left:-9.579520pt;}
._1c{margin-left:-7.425920pt;}
._1b{margin-left:-6.242773pt;}
._a{margin-left:-4.049122pt;}
._9{margin-left:-3.106208pt;}
._5{margin-left:-2.020693pt;}
._1{margin-left:-0.993030pt;}
._0{width:0.940800pt;}
._7{width:2.045867pt;}
._8{width:3.240115pt;}
._4{width:4.252689pt;}
._3{width:5.380480pt;}
._6{width:6.307274pt;}
._d{width:7.278080pt;}
._15{width:8.528918pt;}
._e{width:9.687040pt;}
._f{width:10.828800pt;}
._c{width:12.613899pt;}
._b{width:13.738667pt;}
._18{width:14.843270pt;}
._20{width:15.838720pt;}
._21{width:16.791643pt;}
._22{width:18.030330pt;}
._1e{width:19.724800pt;}
._1f{width:20.648710pt;}
._10{width:21.555200pt;}
._2a{width:23.472000pt;}
._11{width:24.705670pt;}
._28{width:26.352000pt;}
._12{width:27.940480pt;}
._16{width:31.473920pt;}
._17{width:32.387979pt;}
._19{width:35.804800pt;}
._1a{width:36.876976pt;}
._2b{width:46.704000pt;}
._29{width:50.112000pt;}
._27{width:58.818059pt;}
._26{width:59.712000pt;}
._2{width:64.640213pt;}
._25{width:103.499696pt;}
._24{width:104.736000pt;}
._23{width:113.472000pt;}
._13{width:227.690806pt;}
._2c{width:590.186667pt;}
.fse{font-size:18.560000pt;}
.fsc{font-size:21.120000pt;}
.fsa{font-size:28.333725pt;}
.fs2{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fsb{font-size:45.199037pt;}
.fs1{font-size:48.000000pt;}
.fsd{font-size:50.595937pt;}
.fsf{font-size:53.120000pt;}
.fs10{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:62.064349pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y228{bottom:2.874667pt;}
.y56{bottom:2.880000pt;}
.y16e{bottom:3.040000pt;}
.y16f{bottom:3.200000pt;}
.y69{bottom:3.520000pt;}
.y163{bottom:3.680000pt;}
.y6f{bottom:3.840000pt;}
.y1b{bottom:4.320000pt;}
.y27{bottom:6.240000pt;}
.y55{bottom:14.560000pt;}
.yfa{bottom:14.720000pt;}
.y227{bottom:15.034667pt;}
.y26{bottom:15.200000pt;}
.y161{bottom:18.720000pt;}
.y15f{bottom:19.040000pt;}
.y25{bottom:19.200000pt;}
.y6e{bottom:20.160000pt;}
.y1a{bottom:22.120000pt;}
.y54{bottom:26.400000pt;}
.y136{bottom:26.560000pt;}
.y49{bottom:26.720000pt;}
.y24{bottom:31.840000pt;}
.y6d{bottom:36.346667pt;}
.y48{bottom:38.560000pt;}
.y53{bottom:38.720000pt;}
.y6{bottom:39.200000pt;}
.y67{bottom:41.440000pt;}
.y19{bottom:42.280000pt;}
.y23{bottom:44.000000pt;}
.y5{bottom:49.920000pt;}
.y47{bottom:50.600000pt;}
.y52{bottom:52.040000pt;}
.y6c{bottom:52.506667pt;}
.y22{bottom:56.160000pt;}
.y66{bottom:56.320000pt;}
.y4{bottom:61.760000pt;}
.y18{bottom:62.600000pt;}
.y46{bottom:64.520000pt;}
.y51{bottom:65.000000pt;}
.y21{bottom:65.120000pt;}
.y65{bottom:68.160000pt;}
.y6b{bottom:69.146667pt;}
.y45{bottom:76.520000pt;}
.y50{bottom:76.840000pt;}
.y20{bottom:82.720000pt;}
.y15{bottom:82.920000pt;}
.y16{bottom:86.280000pt;}
.y17{bottom:87.560000pt;}
.y44{bottom:88.200000pt;}
.y4f{bottom:88.520000pt;}
.y1f{bottom:92.320000pt;}
.y63{bottom:93.952000pt;}
.yb1{bottom:99.872000pt;}
.y43{bottom:100.040000pt;}
.y4e{bottom:100.360000pt;}
.y123{bottom:104.832000pt;}
.yf8{bottom:106.112000pt;}
.y42{bottom:111.720000pt;}
.y62{bottom:111.872000pt;}
.y15c{bottom:112.032000pt;}
.y4d{bottom:112.360000pt;}
.yb0{bottom:116.032000pt;}
.y229{bottom:120.672000pt;}
.y122{bottom:120.992000pt;}
.yf7{bottom:122.272000pt;}
.y41{bottom:123.720000pt;}
.y4c{bottom:124.200000pt;}
.y1a3{bottom:124.832000pt;}
.y1e{bottom:127.560000pt;}
.y15b{bottom:128.192000pt;}
.y61{bottom:129.312000pt;}
.yaf{bottom:132.192000pt;}
.y226{bottom:132.992000pt;}
.y40{bottom:135.720000pt;}
.y4b{bottom:136.040000pt;}
.y121{bottom:137.146667pt;}
.y1d{bottom:137.160000pt;}
.yf6{bottom:138.426667pt;}
.y1a2{bottom:140.986667pt;}
.y1ea{bottom:142.906667pt;}
.y15a{bottom:144.346667pt;}
.y60{bottom:145.466667pt;}
.y3f{bottom:147.720000pt;}
.y4a{bottom:148.040000pt;}
.yae{bottom:148.346667pt;}
.y120{bottom:153.466667pt;}
.yf5{bottom:154.746667pt;}
.y1e9{bottom:156.026667pt;}
.y1a1{bottom:157.306667pt;}
.y3e{bottom:159.880000pt;}
.y159{bottom:160.506667pt;}
.y5f{bottom:161.786667pt;}
.yad{bottom:164.506667pt;}
.y11f{bottom:169.626667pt;}
.yf4{bottom:170.906667pt;}
.y3d{bottom:171.560000pt;}
.y1a0{bottom:173.466667pt;}
.y158{bottom:176.826667pt;}
.y5e{bottom:176.986667pt;}
.yac{bottom:182.266667pt;}
.y1e8{bottom:183.226667pt;}
.y3c{bottom:183.560000pt;}
.y11e{bottom:185.786667pt;}
.yf3{bottom:187.066667pt;}
.y19f{bottom:189.626667pt;}
.y5d{bottom:192.026667pt;}
.y157{bottom:192.986667pt;}
.y1e7{bottom:196.506667pt;}
.yab{bottom:198.426667pt;}
.y11d{bottom:201.946667pt;}
.yf2{bottom:203.226667pt;}
.y19e{bottom:205.786667pt;}
.y5c{bottom:207.066667pt;}
.y225{bottom:208.826667pt;}
.y156{bottom:209.626667pt;}
.y1e6{bottom:210.106667pt;}
.yaa{bottom:214.586667pt;}
.y11c{bottom:218.266667pt;}
.yf1{bottom:219.546667pt;}
.y19d{bottom:222.106667pt;}
.y5b{bottom:222.266667pt;}
.y1e5{bottom:223.386667pt;}
.y155{bottom:227.386667pt;}
.ya9{bottom:230.746667pt;}
.y11b{bottom:234.906667pt;}
.yf0{bottom:235.706667pt;}
.y1e4{bottom:236.986667pt;}
.y5a{bottom:237.306667pt;}
.y19c{bottom:238.266667pt;}
.y224{bottom:240.826667pt;}
.y154{bottom:243.546667pt;}
.ya8{bottom:246.906667pt;}
.y1e3{bottom:250.266667pt;}
.yef{bottom:251.866667pt;}
.y59{bottom:252.506667pt;}
.y19b{bottom:254.426667pt;}
.y153{bottom:259.706667pt;}
.y1e2{bottom:263.546667pt;}
.ya7{bottom:263.706667pt;}
.yee{bottom:268.026667pt;}
.y11a{bottom:268.666667pt;}
.y58{bottom:269.306667pt;}
.y19a{bottom:270.586667pt;}
.y223{bottom:272.666667pt;}
.y152{bottom:275.866667pt;}
.y1e1{bottom:277.146667pt;}
.ya6{bottom:281.306667pt;}
.yed{bottom:284.826667pt;}
.y119{bottom:284.986667pt;}
.y199{bottom:286.746667pt;}
.y57{bottom:291.386667pt;}
.y1e0{bottom:291.546667pt;}
.y151{bottom:292.186667pt;}
.ya5{bottom:297.466667pt;}
.y118{bottom:301.146667pt;}
.y198{bottom:303.066667pt;}
.yec{bottom:303.546667pt;}
.y222{bottom:304.666667pt;}
.y1df{bottom:305.146667pt;}
.y3b{bottom:307.546667pt;}
.y150{bottom:308.346667pt;}
.ya4{bottom:313.786667pt;}
.y117{bottom:317.306667pt;}
.y1de{bottom:318.426667pt;}
.y197{bottom:319.226667pt;}
.yeb{bottom:323.546667pt;}
.y14f{bottom:324.506667pt;}
.ya3{bottom:329.946667pt;}
.y1dd{bottom:332.026667pt;}
.y116{bottom:333.466667pt;}
.y196{bottom:335.386667pt;}
.y221{bottom:336.666667pt;}
.yea{bottom:339.706667pt;}
.y14e{bottom:340.666667pt;}
.y1dc{bottom:345.626667pt;}
.ya2{bottom:346.106667pt;}
.y115{bottom:349.786667pt;}
.y195{bottom:351.546667pt;}
.ye9{bottom:356.026667pt;}
.y14d{bottom:356.866667pt;}
.y1db{bottom:358.946667pt;}
.ya1{bottom:362.306667pt;}
.y114{bottom:365.986667pt;}
.y194{bottom:367.906667pt;}
.y220{bottom:368.706667pt;}
.ye8{bottom:372.226667pt;}
.y1da{bottom:372.546667pt;}
.y14c{bottom:373.186667pt;}
.ya0{bottom:378.626667pt;}
.y113{bottom:382.146667pt;}
.y193{bottom:384.066667pt;}
.y1d9{bottom:385.826667pt;}
.ye7{bottom:388.386667pt;}
.y14b{bottom:389.346667pt;}
.y9f{bottom:394.786667pt;}
.y112{bottom:398.306667pt;}
.y192{bottom:400.226667pt;}
.y21f{bottom:400.706667pt;}
.ye6{bottom:404.546667pt;}
.y14a{bottom:405.506667pt;}
.y9e{bottom:410.946667pt;}
.y1d8{bottom:413.826667pt;}
.y111{bottom:414.626667pt;}
.y191{bottom:416.386667pt;}
.ye5{bottom:421.346667pt;}
.y149{bottom:421.666667pt;}
.y9d{bottom:427.106667pt;}
.y110{bottom:430.786667pt;}
.y21e{bottom:432.546667pt;}
.y190{bottom:432.706667pt;}
.y148{bottom:437.986667pt;}
.ye4{bottom:438.946667pt;}
.y1d7{bottom:440.706667pt;}
.y9c{bottom:443.426667pt;}
.y10f{bottom:446.946667pt;}
.y18f{bottom:448.866667pt;}
.y1d6{bottom:453.826667pt;}
.y147{bottom:454.146667pt;}
.ye3{bottom:455.106667pt;}
.y9b{bottom:459.586667pt;}
.y10e{bottom:463.106667pt;}
.y21d{bottom:464.546667pt;}
.y18e{bottom:465.026667pt;}
.y1d5{bottom:467.426667pt;}
.y146{bottom:470.306667pt;}
.ye2{bottom:471.426667pt;}
.y9a{bottom:475.746667pt;}
.y10d{bottom:479.426667pt;}
.y1d4{bottom:481.026667pt;}
.y18d{bottom:481.186667pt;}
.y145{bottom:486.466667pt;}
.ye1{bottom:487.586667pt;}
.y99{bottom:491.906667pt;}
.y1d3{bottom:494.626667pt;}
.y10c{bottom:495.586667pt;}
.y21c{bottom:496.546667pt;}
.y18c{bottom:498.626667pt;}
.y144{bottom:502.786667pt;}
.ye0{bottom:503.746667pt;}
.y3a{bottom:504.066667pt;}
.y1d2{bottom:507.906667pt;}
.y98{bottom:508.226667pt;}
.y10b{bottom:511.746667pt;}
.y18b{bottom:518.626667pt;}
.y143{bottom:518.946667pt;}
.ydf{bottom:519.906667pt;}
.y39{bottom:520.386667pt;}
.y1d1{bottom:521.186667pt;}
.y97{bottom:524.386667pt;}
.y10a{bottom:527.906667pt;}
.y21b{bottom:528.546667pt;}
.y18a{bottom:534.786667pt;}
.y142{bottom:535.106667pt;}
.y38{bottom:535.426667pt;}
.yde{bottom:536.066667pt;}
.y96{bottom:540.546667pt;}
.y109{bottom:544.226667pt;}
.y1d0{bottom:548.066667pt;}
.y37{bottom:550.786667pt;}
.y189{bottom:550.946667pt;}
.y141{bottom:551.266667pt;}
.ydd{bottom:552.386667pt;}
.y95{bottom:556.706667pt;}
.y108{bottom:560.386667pt;}
.y1cf{bottom:561.666667pt;}
.y36{bottom:567.106667pt;}
.y188{bottom:567.266667pt;}
.y140{bottom:567.586667pt;}
.ydc{bottom:568.546667pt;}
.y94{bottom:573.026667pt;}
.y1ce{bottom:574.946667pt;}
.y107{bottom:576.546667pt;}
.y21a{bottom:576.706667pt;}
.y35{bottom:583.266667pt;}
.y187{bottom:583.426667pt;}
.y13f{bottom:583.746667pt;}
.ydb{bottom:584.706667pt;}
.y1cd{bottom:588.226667pt;}
.y93{bottom:589.186667pt;}
.y106{bottom:592.706667pt;}
.y34{bottom:599.426667pt;}
.y186{bottom:599.586667pt;}
.y13e{bottom:599.906667pt;}
.yda{bottom:600.866667pt;}
.y1cc{bottom:601.826667pt;}
.y92{bottom:605.346667pt;}
.y219{bottom:605.506667pt;}
.y105{bottom:609.026667pt;}
.y13a{bottom:614.306667pt;}
.y1cb{bottom:615.426667pt;}
.y33{bottom:615.586667pt;}
.y185{bottom:615.746667pt;}
.yd9{bottom:617.186667pt;}
.y218{bottom:619.106667pt;}
.y91{bottom:621.506667pt;}
.y104{bottom:625.186667pt;}
.y1ca{bottom:629.026667pt;}
.y13d{bottom:629.666667pt;}
.y32{bottom:631.906667pt;}
.y184{bottom:632.066667pt;}
.y217{bottom:632.706667pt;}
.yd8{bottom:633.346667pt;}
.y90{bottom:637.826667pt;}
.y103{bottom:641.373333pt;}
.y1c9{bottom:642.333333pt;}
.y13c{bottom:645.053333pt;}
.y216{bottom:646.013333pt;}
.y31{bottom:648.093333pt;}
.y183{bottom:648.253333pt;}
.yd7{bottom:649.533333pt;}
.y8f{bottom:654.013333pt;}
.y1c8{bottom:655.933333pt;}
.y102{bottom:657.533333pt;}
.y215{bottom:659.613333pt;}
.y13b{bottom:660.413333pt;}
.y30{bottom:664.253333pt;}
.y182{bottom:664.413333pt;}
.yd6{bottom:665.693333pt;}
.y1c7{bottom:669.213333pt;}
.y8e{bottom:670.173333pt;}
.y214{bottom:672.893333pt;}
.y101{bottom:673.853333pt;}
.y135{bottom:675.933333pt;}
.y2f{bottom:680.413333pt;}
.y181{bottom:680.573333pt;}
.yd5{bottom:682.013333pt;}
.y1c6{bottom:682.333333pt;}
.y213{bottom:686.173333pt;}
.y8d{bottom:686.333333pt;}
.y100{bottom:690.013333pt;}
.y139{bottom:691.293333pt;}
.y1c5{bottom:695.933333pt;}
.y2e{bottom:696.573333pt;}
.y180{bottom:696.733333pt;}
.yd4{bottom:698.173333pt;}
.y212{bottom:699.773333pt;}
.y8c{bottom:702.493333pt;}
.yff{bottom:706.173333pt;}
.y138{bottom:706.653333pt;}
.y1c4{bottom:709.533333pt;}
.y2d{bottom:712.893333pt;}
.y17f{bottom:713.053333pt;}
.yd3{bottom:714.333333pt;}
.y8b{bottom:719.293333pt;}
.y137{bottom:722.013333pt;}
.yfe{bottom:722.333333pt;}
.y1c3{bottom:723.133333pt;}
.y211{bottom:726.173333pt;}
.y2c{bottom:729.053333pt;}
.y17e{bottom:729.213333pt;}
.yd2{bottom:730.493333pt;}
.y1c2{bottom:736.413333pt;}
.y8a{bottom:736.893333pt;}
.yfd{bottom:738.653333pt;}
.y133{bottom:738.813333pt;}
.y210{bottom:739.773333pt;}
.y2b{bottom:745.213333pt;}
.y17d{bottom:745.373333pt;}
.yd1{bottom:746.813333pt;}
.y1c1{bottom:750.013333pt;}
.y89{bottom:753.053333pt;}
.y134{bottom:754.493333pt;}
.yfc{bottom:755.293333pt;}
.y2a{bottom:761.373333pt;}
.y17c{bottom:761.533333pt;}
.yd0{bottom:762.973333pt;}
.y1c0{bottom:763.293333pt;}
.y20f{bottom:766.333333pt;}
.y88{bottom:769.373333pt;}
.yfb{bottom:772.893333pt;}
.y132{bottom:776.093333pt;}
.y1bf{bottom:776.893333pt;}
.y17b{bottom:777.853333pt;}
.y29{bottom:778.173333pt;}
.ycf{bottom:779.133333pt;}
.y20e{bottom:779.933333pt;}
.yf9{bottom:785.213333pt;}
.y87{bottom:785.533333pt;}
.y1be{bottom:790.173333pt;}
.y131{bottom:790.493333pt;}
.y20d{bottom:793.213333pt;}
.y17a{bottom:794.013333pt;}
.yce{bottom:795.293333pt;}
.y28{bottom:796.893333pt;}
.y86{bottom:801.693333pt;}
.y1bd{bottom:803.773333pt;}
.y130{bottom:806.653333pt;}
.y20c{bottom:806.813333pt;}
.y179{bottom:810.173333pt;}
.ycd{bottom:811.613333pt;}
.y1c{bottom:813.053333pt;}
.y1bc{bottom:817.053333pt;}
.y85{bottom:817.853333pt;}
.y20b{bottom:821.213333pt;}
.y12f{bottom:822.813333pt;}
.y178{bottom:826.333333pt;}
.ycc{bottom:827.773333pt;}
.y1bb{bottom:830.333333pt;}
.y84{bottom:834.173333pt;}
.y20a{bottom:834.813333pt;}
.y12e{bottom:838.973333pt;}
.y177{bottom:842.653333pt;}
.ycb{bottom:843.933333pt;}
.y209{bottom:848.413333pt;}
.y83{bottom:850.333333pt;}
.y12d{bottom:855.293333pt;}
.y1ba{bottom:857.213333pt;}
.y176{bottom:858.813333pt;}
.yca{bottom:860.093333pt;}
.y208{bottom:862.013333pt;}
.y82{bottom:866.493333pt;}
.y1b9{bottom:870.813333pt;}
.y12c{bottom:871.453333pt;}
.y175{bottom:874.973333pt;}
.y207{bottom:875.613333pt;}
.yc9{bottom:876.893333pt;}
.y81{bottom:882.653333pt;}
.y1b8{bottom:884.093333pt;}
.y12b{bottom:887.613333pt;}
.y206{bottom:888.893333pt;}
.y174{bottom:891.133333pt;}
.yc8{bottom:894.493333pt;}
.y1b7{bottom:897.693333pt;}
.y80{bottom:898.973333pt;}
.y205{bottom:902.493333pt;}
.y12a{bottom:903.773333pt;}
.y173{bottom:907.453333pt;}
.yc7{bottom:910.653333pt;}
.y1b6{bottom:911.293333pt;}
.y7f{bottom:915.133333pt;}
.y14{bottom:915.453333pt;}
.y204{bottom:915.773333pt;}
.y129{bottom:920.093333pt;}
.y172{bottom:923.613333pt;}
.y1b5{bottom:924.893333pt;}
.yc6{bottom:927.013333pt;}
.y203{bottom:929.413333pt;}
.y7e{bottom:931.333333pt;}
.y128{bottom:936.293333pt;}
.y1b4{bottom:938.053333pt;}
.y171{bottom:939.813333pt;}
.y202{bottom:942.693333pt;}
.yc5{bottom:943.173333pt;}
.y7d{bottom:947.493333pt;}
.y1b3{bottom:951.653333pt;}
.y127{bottom:952.453333pt;}
.y201{bottom:955.813333pt;}
.y170{bottom:955.973333pt;}
.yc4{bottom:959.333333pt;}
.y7c{bottom:963.813333pt;}
.y1b2{bottom:966.693333pt;}
.y16d{bottom:968.293333pt;}
.y126{bottom:968.613333pt;}
.y200{bottom:969.413333pt;}
.yc3{bottom:975.493333pt;}
.y7b{bottom:979.973333pt;}
.y16c{bottom:982.373333pt;}
.y1ff{bottom:982.693333pt;}
.y125{bottom:985.413333pt;}
.y1b1{bottom:986.853333pt;}
.yc2{bottom:991.653333pt;}
.y1fe{bottom:995.973333pt;}
.y7a{bottom:996.133333pt;}
.y16b{bottom:997.893333pt;}
.y1b0{bottom:1003.013333pt;}
.y124{bottom:1004.133333pt;}
.yc1{bottom:1007.973333pt;}
.y1fd{bottom:1009.573333pt;}
.y79{bottom:1012.293333pt;}
.y16a{bottom:1013.253333pt;}
.y1af{bottom:1019.173333pt;}
.y13{bottom:1021.413333pt;}
.y1fc{bottom:1022.853333pt;}
.yc0{bottom:1024.133333pt;}
.y78{bottom:1028.613333pt;}
.y1ae{bottom:1035.333333pt;}
.y1fb{bottom:1036.453333pt;}
.ybf{bottom:1040.293333pt;}
.y169{bottom:1043.973333pt;}
.y77{bottom:1044.773333pt;}
.y12{bottom:1049.413333pt;}
.y1fa{bottom:1050.053333pt;}
.y1ad{bottom:1051.653333pt;}
.ybe{bottom:1056.453333pt;}
.y168{bottom:1059.333333pt;}
.y76{bottom:1060.933333pt;}
.y1f9{bottom:1063.333333pt;}
.y1ac{bottom:1067.813333pt;}
.y11{bottom:1070.533333pt;}
.ybd{bottom:1072.773333pt;}
.y167{bottom:1074.853333pt;}
.y1f8{bottom:1076.933333pt;}
.y75{bottom:1077.093333pt;}
.y1ab{bottom:1083.973333pt;}
.ybc{bottom:1088.933333pt;}
.y166{bottom:1090.213333pt;}
.y1f7{bottom:1090.533333pt;}
.y10{bottom:1091.653333pt;}
.y74{bottom:1093.413333pt;}
.y1aa{bottom:1100.133333pt;}
.y1f6{bottom:1104.133333pt;}
.ybb{bottom:1105.093333pt;}
.y165{bottom:1105.573333pt;}
.y73{bottom:1109.573333pt;}
.yf{bottom:1112.933333pt;}
.y1a9{bottom:1116.453333pt;}
.y1f5{bottom:1117.733333pt;}
.y164{bottom:1120.933333pt;}
.yba{bottom:1121.253333pt;}
.y72{bottom:1125.733333pt;}
.y1f4{bottom:1131.333333pt;}
.y1a8{bottom:1132.613333pt;}
.ye{bottom:1134.053333pt;}
.y162{bottom:1136.293333pt;}
.yb9{bottom:1137.573333pt;}
.y71{bottom:1143.013333pt;}
.y1f3{bottom:1144.613333pt;}
.y1a7{bottom:1148.773333pt;}
.y15e{bottom:1153.093333pt;}
.yd{bottom:1153.413333pt;}
.yb8{bottom:1153.733333pt;}
.y1f2{bottom:1158.213333pt;}
.yc{bottom:1163.813333pt;}
.y70{bottom:1164.133333pt;}
.y1a6{bottom:1164.933333pt;}
.yb7{bottom:1169.893333pt;}
.y1f1{bottom:1171.493333pt;}
.y6a{bottom:1180.293333pt;}
.y1a5{bottom:1181.253333pt;}
.y160{bottom:1183.973333pt;}
.y1f0{bottom:1185.093333pt;}
.yb6{bottom:1186.053333pt;}
.yb{bottom:1190.693333pt;}
.y1a4{bottom:1198.533333pt;}
.y1ef{bottom:1199.493333pt;}
.yb5{bottom:1202.373333pt;}
.ya{bottom:1203.013333pt;}
.y15d{bottom:1204.293333pt;}
.y1ee{bottom:1212.800000pt;}
.y9{bottom:1216.640000pt;}
.yb4{bottom:1218.560000pt;}
.y1ed{bottom:1226.400000pt;}
.y8{bottom:1230.240000pt;}
.yb3{bottom:1234.720000pt;}
.y1ec{bottom:1239.680000pt;}
.y7{bottom:1244.480000pt;}
.yb2{bottom:1250.880000pt;}
.y1eb{bottom:1253.280000pt;}
.y3{bottom:1259.360000pt;}
.y2{bottom:1269.280000pt;}
.y68{bottom:1277.600000pt;}
.y1{bottom:1283.200000pt;}
.y64{bottom:1284.480000pt;}
.h2f{height:12.160000pt;}
.h28{height:14.720000pt;}
.h2a{height:14.752000pt;}
.h2e{height:14.880000pt;}
.h26{height:15.040000pt;}
.h15{height:16.416875pt;}
.h25{height:16.480000pt;}
.h13{height:17.421875pt;}
.h1e{height:18.400000pt;}
.h16{height:19.981875pt;}
.hc{height:20.987432pt;}
.h3{height:22.281250pt;}
.h31{height:24.160000pt;}
.hd{height:24.783750pt;}
.h5{height:25.846250pt;}
.h19{height:29.040312pt;}
.h7{height:29.856875pt;}
.h2c{height:30.240000pt;}
.h32{height:30.610871pt;}
.h24{height:32.160000pt;}
.h2{height:33.421875pt;}
.h11{height:33.479951pt;}
.h14{height:34.265900pt;}
.h30{height:34.710938pt;}
.h17{height:35.975313pt;}
.h1c{height:36.986875pt;}
.h2d{height:37.920930pt;}
.h4{height:39.876250pt;}
.h6{height:40.997500pt;}
.h1{height:42.032838pt;}
.h22{height:42.578750pt;}
.hb{height:43.343750pt;}
.he{height:44.562500pt;}
.h2b{height:45.920000pt;}
.h8{height:50.712187pt;}
.h1a{height:52.834688pt;}
.h1b{height:56.160000pt;}
.h1d{height:58.563750pt;}
.h27{height:60.800000pt;}
.h29{height:60.832000pt;}
.h21{height:65.531250pt;}
.h1f{height:65.781915pt;}
.h9{height:72.384062pt;}
.h10{height:74.419375pt;}
.h20{height:82.912000pt;}
.ha{height:98.752000pt;}
.h12{height:102.400000pt;}
.h18{height:192.666667pt;}
.hf{height:201.146667pt;}
.h23{height:218.746667pt;}
.h0{height:1344.000000pt;}
.w6{width:7.360000pt;}
.w1e{width:40.032000pt;}
.w10{width:41.120000pt;}
.w13{width:41.600000pt;}
.wd{width:46.880000pt;}
.w1a{width:53.600000pt;}
.w11{width:59.072000pt;}
.we{width:64.992000pt;}
.w15{width:65.632000pt;}
.w12{width:68.320000pt;}
.w16{width:71.520000pt;}
.wf{width:76.960000pt;}
.w14{width:88.640000pt;}
.w17{width:103.552000pt;}
.w1d{width:113.280000pt;}
.w1c{width:137.466667pt;}
.w9{width:137.786667pt;}
.w1b{width:141.466667pt;}
.w3{width:166.746667pt;}
.wb{width:169.786667pt;}
.wa{width:190.106667pt;}
.wc{width:190.746667pt;}
.w19{width:251.386667pt;}
.w18{width:279.586667pt;}
.w4{width:313.346667pt;}
.w5{width:389.986667pt;}
.w1f{width:513.213333pt;}
.w2{width:516.413333pt;}
.w7{width:588.093333pt;}
.w8{width:690.373333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:4.160000pt;}
.xa{left:7.200000pt;}
.x29{left:8.480000pt;}
.x27{left:12.160000pt;}
.x30{left:14.240000pt;}
.x40{left:15.360000pt;}
.x2a{left:16.800000pt;}
.x25{left:19.840000pt;}
.x3e{left:21.440000pt;}
.x23{left:22.560000pt;}
.x33{left:23.680000pt;}
.x32{left:27.040000pt;}
.xf{left:29.320000pt;}
.x3b{left:30.720000pt;}
.x10{left:32.680000pt;}
.x41{left:35.200000pt;}
.x12{left:36.352000pt;}
.x3a{left:37.280000pt;}
.x42{left:38.400000pt;}
.x38{left:39.360000pt;}
.x1a{left:40.800000pt;}
.x11{left:42.440000pt;}
.x36{left:46.240000pt;}
.x18{left:47.200000pt;}
.x2{left:53.759988pt;}
.x3f{left:57.160000pt;}
.x9{left:60.960000pt;}
.x3c{left:70.880000pt;}
.x17{left:72.639988pt;}
.x1e{left:77.759988pt;}
.x16{left:89.791988pt;}
.x43{left:93.792000pt;}
.x1d{left:96.992000pt;}
.x44{left:101.791988pt;}
.xe{left:114.280000pt;}
.x31{left:120.352000pt;}
.x20{left:137.146667pt;}
.x34{left:157.946667pt;}
.x21{left:192.506667pt;}
.xb{left:195.266667pt;}
.xc{left:201.346667pt;}
.x1b{left:210.906655pt;}
.x26{left:240.026667pt;}
.x39{left:300.066667pt;}
.x28{left:305.666667pt;}
.x19{left:360.546667pt;}
.x15{left:368.546655pt;}
.x22{left:383.266667pt;}
.x14{left:398.946655pt;}
.x2b{left:425.026667pt;}
.x35{left:438.173333pt;}
.x8{left:442.013321pt;}
.x4{left:446.493321pt;}
.x13{left:454.493333pt;}
.x2c{left:484.733333pt;}
.x6{left:538.973321pt;}
.x3d{left:552.093333pt;}
.x24{left:553.693333pt;}
.xd{left:577.373333pt;}
.x7{left:593.213321pt;}
.x2e{left:596.093333pt;}
.x5{left:606.853321pt;}
.x2f{left:655.813333pt;}
.x1f{left:677.733333pt;}
.x37{left:690.213333pt;}
.x3{left:720.773321pt;}
.x1c{left:736.773333pt;}
.x1{left:744.133321pt;}
}




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