
    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_5acf44adeca6cba99a5b200a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_77e3ce1efff265cdbdc89b03.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_9a459957514f7cbafe043aad.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_f5edf0fd8b49311773249bd2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024902;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_036a49034aae21559b3714b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008789;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_362ee28cc111ddc462da27b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.207031;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_bed20695411d96295b1f7897.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_b4b640352738cdd0cfdd9498.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_421d0f178f4763b218640fd9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2d0b1c7bfba1348047f9d55f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.115234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d166c49de57ee6c0e58a10ed.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.115234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b659cc6da6df89ac563e8132.woff2')format("woff");}.fff{font-family:fff;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;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;}
.m5{transform:matrix(0.000000,-0.250109,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250109,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250109,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{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);}
.m4{transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249891,0.000000,0.000000,0.250000,0,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);}
.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);}
.v3{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.060000px;}
.v1{vertical-align:24.000000px;}
.lsb{letter-spacing:-1.500000px;}
.ls14{letter-spacing:-0.585000px;}
.ls3{letter-spacing:-0.570000px;}
.ls6{letter-spacing:-0.408000px;}
.lsa{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.035813px;}
.lse{letter-spacing:0.080457px;}
.lsf{letter-spacing:0.340511px;}
.ls7{letter-spacing:0.372000px;}
.ls1{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.456000px;}
.ls0{letter-spacing:0.516000px;}
.ls10{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.613410px;}
.ls8{letter-spacing:0.636000px;}
.ls13{letter-spacing:0.930000px;}
.ls12{letter-spacing:32.490000px;}
.ls11{letter-spacing:57.990000px;}
.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;}
}
.ws3{word-spacing:-44.688000px;}
.ws9{word-spacing:-33.120000px;}
.ws2{word-spacing:-31.464000px;}
.wsd{word-spacing:-19.795660px;}
.ws11{word-spacing:-17.724745px;}
.ws7{word-spacing:-17.274000px;}
.ws8{word-spacing:-16.902000px;}
.ws6{word-spacing:-15.963000px;}
.ws1{word-spacing:-15.024000px;}
.ws5{word-spacing:-14.943000px;}
.wsc{word-spacing:-14.700000px;}
.ws12{word-spacing:-14.085000px;}
.wse{word-spacing:-14.064000px;}
.ws0{word-spacing:-13.515000px;}
.wsa{word-spacing:-12.207000px;}
.ws4{word-spacing:-11.268000px;}
.ws10{word-spacing:-8.437464px;}
.wsf{word-spacing:-8.433783px;}
.wsb{word-spacing:0.000000px;}
._10{margin-left:-2.313000px;}
._0{margin-left:-1.260000px;}
._1{width:1.395000px;}
._1f{width:2.448000px;}
._17{width:3.519000px;}
._18{width:4.740000px;}
._19{width:5.898000px;}
._11{width:7.269000px;}
._8{width:8.568000px;}
._7{width:9.759000px;}
._f{width:10.863000px;}
._e{width:12.429000px;}
._14{width:14.382000px;}
._2f{width:15.918000px;}
._2e{width:17.220000px;}
._15{width:18.354000px;}
._16{width:19.446000px;}
._1c{width:20.526000px;}
._1d{width:21.579000px;}
._33{width:22.599000px;}
._c{width:23.721000px;}
._d{width:25.164000px;}
._30{width:26.334000px;}
._1e{width:27.540000px;}
._22{width:28.611000px;}
._23{width:29.733000px;}
._21{width:30.888000px;}
._1a{width:32.589000px;}
._1b{width:33.747000px;}
._9{width:35.505000px;}
._24{width:36.708000px;}
._25{width:38.046000px;}
._3{width:39.168000px;}
._2{width:40.767000px;}
._39{width:42.144000px;}
._12{width:44.046000px;}
._13{width:45.084000px;}
._26{width:46.647000px;}
._27{width:47.703000px;}
._28{width:49.572000px;}
._29{width:51.510000px;}
._3f{width:52.608000px;}
._34{width:54.084000px;}
._20{width:55.476000px;}
._3e{width:57.369000px;}
._35{width:60.420000px;}
._b{width:69.492000px;}
._a{width:70.800000px;}
._3a{width:76.188000px;}
._3c{width:86.256000px;}
._3b{width:87.264000px;}
._38{width:89.700000px;}
._37{width:90.780000px;}
._3d{width:110.643000px;}
._5{width:122.229000px;}
._6{width:123.381000px;}
._4{width:124.515000px;}
._2a{width:136.254000px;}
._2b{width:137.820000px;}
._2d{width:186.888000px;}
._2c{width:188.538000px;}
._32{width:197.100000px;}
._31{width:207.127116px;}
._36{width:313.200000px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1d{font-size:3.000000px;}
.fs7{font-size:6.000000px;}
.fs4{font-size:12.000000px;}
.fsd{font-size:18.000000px;}
.fs1a{font-size:30.337347px;}
.fs18{font-size:30.350591px;}
.fs1b{font-size:34.306592px;}
.fs19{font-size:34.321568px;}
.fsb{font-size:36.000000px;}
.fs16{font-size:38.102490px;}
.fs11{font-size:39.000000px;}
.fs17{font-size:41.789336px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs15{font-size:45.761837px;}
.fs3{font-size:48.000000px;}
.fs14{font-size:50.595937px;}
.fsc{font-size:51.000000px;}
.fsf{font-size:54.000000px;}
.fs1c{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs13{font-size:63.244921px;}
.fs1{font-size:72.000000px;}
.fse{font-size:84.000000px;}
.fs12{font-size:96.000000px;}
.fsa{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs10{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:168.000000px;}
.y13b{bottom:-26.686597px;}
.y13a{bottom:-16.167945px;}
.y138{bottom:-7.091847px;}
.y139{bottom:-6.666222px;}
.y0{bottom:0.000000px;}
.y1b{bottom:0.390000px;}
.y3c{bottom:0.750000px;}
.y3b{bottom:1.125000px;}
.y61{bottom:1.500000px;}
.y60{bottom:1.875000px;}
.y77{bottom:2.250000px;}
.y57{bottom:2.610000px;}
.ya{bottom:2.625000px;}
.y24b{bottom:2.655000px;}
.y137{bottom:2.930814px;}
.y128{bottom:2.932719px;}
.y72{bottom:3.000000px;}
.y1ed{bottom:3.015000px;}
.ybb{bottom:3.360000px;}
.y19{bottom:3.375000px;}
.y99{bottom:3.420000px;}
.y1e6{bottom:3.750000px;}
.y124{bottom:4.865647px;}
.y4{bottom:4.875000px;}
.yec{bottom:5.625000px;}
.y120{bottom:5.789263px;}
.y17{bottom:6.000000px;}
.y6a{bottom:7.125000px;}
.y12b{bottom:8.150673px;}
.y118{bottom:8.160194px;}
.yb{bottom:8.625000px;}
.y11c{bottom:8.674372px;}
.y5{bottom:10.125000px;}
.y10e{bottom:10.752032px;}
.y136{bottom:11.511873px;}
.y5e{bottom:11.625000px;}
.y13d{bottom:11.960350px;}
.y113{bottom:13.378148px;}
.y127{bottom:13.454323px;}
.y123{bottom:14.387461px;}
.y7{bottom:15.037500px;}
.y11f{bottom:15.292033px;}
.y1f4{bottom:15.750000px;}
.y119{bottom:16.739349px;}
.y243{bottom:16.875000px;}
.y256{bottom:16.905000px;}
.y246{bottom:17.250000px;}
.y23f{bottom:17.265000px;}
.y24a{bottom:17.280000px;}
.y23d{bottom:17.295000px;}
.y39{bottom:18.000000px;}
.y116{bottom:18.148577px;}
.y11b{bottom:18.253317px;}
.y135{bottom:20.091979px;}
.y8{bottom:20.625000px;}
.y76{bottom:21.000000px;}
.yd5{bottom:21.030000px;}
.yba{bottom:21.360000px;}
.yc{bottom:21.375000px;}
.y98{bottom:21.420000px;}
.y126{bottom:22.033477px;}
.y3{bottom:22.875000px;}
.y10d{bottom:23.138008px;}
.y112{bottom:23.871187px;}
.y122{bottom:23.890231px;}
.y11e{bottom:23.899753px;}
.y63{bottom:25.125000px;}
.y64{bottom:25.875000px;}
.y5d{bottom:27.000000px;}
.y13e{bottom:28.198852px;}
.y115{bottom:28.670181px;}
.yeb{bottom:29.242500px;}
.y19f{bottom:29.250000px;}
.y134{bottom:29.617602px;}
.ydb{bottom:30.030000px;}
.y242{bottom:31.500000px;}
.y255{bottom:31.530000px;}
.y25a{bottom:31.545000px;}
.y24f{bottom:31.905000px;}
.y23c{bottom:31.920000px;}
.y111{bottom:32.469385px;}
.y56{bottom:33.360000px;}
.y38{bottom:33.405000px;}
.y16{bottom:33.750000px;}
.y10c{bottom:36.517108px;}
.y114{bottom:37.249336px;}
.y1eb{bottom:37.500000px;}
.y133{bottom:38.197708px;}
.y1c8{bottom:39.007500px;}
.y169{bottom:39.360000px;}
.y171{bottom:39.367500px;}
.y71{bottom:39.375000px;}
.yb9{bottom:39.405000px;}
.y97{bottom:39.420000px;}
.y66{bottom:39.750000px;}
.y110{bottom:41.058061px;}
.yda{bottom:41.655000px;}
.y5c{bottom:42.375000px;}
.y1f3{bottom:42.757500px;}
.y12a{bottom:44.409740px;}
.y241{bottom:45.750000px;}
.y254{bottom:46.155000px;}
.y132{bottom:46.778767px;}
.yea{bottom:47.257500px;}
.y55{bottom:48.750000px;}
.y37{bottom:48.780000px;}
.y24{bottom:50.625000px;}
.y10b{bottom:50.817920px;}
.y65{bottom:52.920000px;}
.yd9{bottom:53.655000px;}
.y131{bottom:55.382678px;}
.y1f2{bottom:56.632500px;}
.y70{bottom:57.367500px;}
.yb0{bottom:57.375000px;}
.y1c7{bottom:57.382500px;}
.yb8{bottom:57.405000px;}
.y5b{bottom:57.750000px;}
.y96{bottom:57.795000px;}
.y253{bottom:60.405000px;}
.y9{bottom:61.125000px;}
.y15{bottom:61.500000px;}
.y170{bottom:62.617500px;}
.yd8{bottom:63.405000px;}
.y12e{bottom:63.537159px;}
.y130{bottom:63.962784px;}
.y54{bottom:64.125000px;}
.y36{bottom:64.155000px;}
.y10a{bottom:64.197021px;}
.y19e{bottom:65.242500px;}
.ye9{bottom:65.632500px;}
.y25e{bottom:67.155000px;}
.y1f1{bottom:70.132500px;}
.y6{bottom:71.250000px;}
.y23{bottom:72.375000px;}
.y5a{bottom:73.125000px;}
.y252{bottom:75.030000px;}
.y1c6{bottom:75.367500px;}
.y1ca{bottom:75.375000px;}
.y6f{bottom:75.382500px;}
.yd4{bottom:75.405000px;}
.y168{bottom:75.750000px;}
.y16f{bottom:75.757500px;}
.yb7{bottom:75.780000px;}
.y23a{bottom:77.295000px;}
.y109{bottom:77.504708px;}
.y1ef{bottom:78.007500px;}
.y95{bottom:78.420000px;}
.y53{bottom:79.500000px;}
.y35{bottom:79.530000px;}
.y25d{bottom:80.655000px;}
.y22{bottom:83.250000px;}
.y19d{bottom:83.257500px;}
.y1f0{bottom:83.632500px;}
.ye8{bottom:83.662500px;}
.y108{bottom:88.945167px;}
.y14{bottom:89.280000px;}
.y3e{bottom:90.795000px;}
.yb5{bottom:91.905000px;}
.yae{bottom:93.382500px;}
.yd3{bottom:93.405000px;}
.y6e{bottom:93.742500px;}
.y167{bottom:93.750000px;}
.yb6{bottom:93.780000px;}
.y16e{bottom:93.787500px;}
.y1e1{bottom:93.795000px;}
.y21{bottom:94.125000px;}
.y52{bottom:94.875000px;}
.y34{bottom:94.905000px;}
.y6d{bottom:96.757500px;}
.y107{bottom:100.407526px;}
.ye7{bottom:101.662500px;}
.y94{bottom:102.045000px;}
.y6c{bottom:103.162500px;}
.y239{bottom:104.295000px;}
.y20{bottom:105.000000px;}
.y59{bottom:105.030000px;}
.y9d{bottom:106.162500px;}
.y1ee{bottom:108.412500px;}
.y33{bottom:110.280000px;}
.y166{bottom:111.750000px;}
.yd2{bottom:111.780000px;}
.yad{bottom:111.787500px;}
.y1e0{bottom:111.795000px;}
.y106{bottom:111.852747px;}
.y16c{bottom:114.037500px;}
.y1f{bottom:115.875000px;}
.y13{bottom:117.030000px;}
.y238{bottom:117.795000px;}
.ye6{bottom:119.662500px;}
.y93{bottom:120.045000px;}
.ydc{bottom:124.162500px;}
.y105{bottom:124.307279px;}
.y32{bottom:125.655000px;}
.y1e{bottom:126.795000px;}
.y16d{bottom:127.912500px;}
.yd1{bottom:129.780000px;}
.yac{bottom:129.787500px;}
.y1df{bottom:129.795000px;}
.y165{bottom:130.155000px;}
.y237{bottom:131.295000px;}
.y104{bottom:135.742977px;}
.y19c{bottom:137.662500px;}
.y1d{bottom:137.670000px;}
.ye5{bottom:138.037500px;}
.y92{bottom:138.075000px;}
.y31{bottom:141.030000px;}
.y12{bottom:144.780000px;}
.y236{bottom:145.170000px;}
.y103{bottom:147.188198px;}
.y1c5{bottom:147.787500px;}
.yd0{bottom:147.825000px;}
.y164{bottom:148.155000px;}
.y1de{bottom:148.170000px;}
.y1c{bottom:149.295000px;}
.yab{bottom:150.412500px;}
.ye4{bottom:156.037500px;}
.y91{bottom:156.075000px;}
.y51{bottom:156.405000px;}
.y30{bottom:156.450000px;}
.y102{bottom:158.623896px;}
.y235{bottom:158.670000px;}
.y1f5{bottom:160.530000px;}
.y23e{bottom:161.280000px;}
.y1c4{bottom:165.787500px;}
.y163{bottom:166.155000px;}
.y1dd{bottom:166.170000px;}
.ycf{bottom:166.200000px;}
.y101{bottom:170.088160px;}
.y10{bottom:171.405000px;}
.y50{bottom:171.780000px;}
.y2f{bottom:171.810000px;}
.y234{bottom:172.200000px;}
.y11{bottom:172.530000px;}
.yaa{bottom:174.037500px;}
.y90{bottom:174.450000px;}
.y100{bottom:181.533380px;}
.y162{bottom:184.155000px;}
.y1c3{bottom:184.162500px;}
.y1dc{bottom:184.170000px;}
.yce{bottom:184.200000px;}
.y233{bottom:185.700000px;}
.y45{bottom:186.450000px;}
.y2e{bottom:187.185000px;}
.y4f{bottom:187.530000px;}
.y23b{bottom:190.905000px;}
.ya9{bottom:192.037500px;}
.ye3{bottom:192.412500px;}
.y8f{bottom:192.450000px;}
.yff{bottom:192.969078px;}
.y232{bottom:199.200000px;}
.y44{bottom:200.325000px;}
.y1c2{bottom:202.162500px;}
.ycd{bottom:202.200000px;}
.y161{bottom:202.530000px;}
.y2d{bottom:202.560000px;}
.y1db{bottom:202.575000px;}
.y4e{bottom:202.905000px;}
.y1ec{bottom:203.280000px;}
.yfe{bottom:204.414298px;}
.y19b{bottom:210.037500px;}
.ya8{bottom:210.412500px;}
.y8e{bottom:210.450000px;}
.ye2{bottom:210.457500px;}
.y43{bottom:211.200000px;}
.y6b{bottom:211.950000px;}
.y231{bottom:213.075000px;}
.yfd{bottom:215.878562px;}
.y2c{bottom:217.935000px;}
.y4d{bottom:218.280000px;}
.y1c1{bottom:220.162500px;}
.ycc{bottom:220.200000px;}
.y160{bottom:220.530000px;}
.y1da{bottom:220.575000px;}
.y42{bottom:222.075000px;}
.y69{bottom:226.200000px;}
.y230{bottom:226.575000px;}
.yfc{bottom:227.314261px;}
.ye1{bottom:228.442500px;}
.y8d{bottom:228.450000px;}
.ya7{bottom:228.457500px;}
.y41{bottom:232.575000px;}
.y2b{bottom:233.310000px;}
.y4c{bottom:233.700000px;}
.y15f{bottom:238.530000px;}
.ycb{bottom:238.575000px;}
.y1c0{bottom:238.582500px;}
.yfb{bottom:238.759481px;}
.y22f{bottom:240.090000px;}
.y40{bottom:244.200000px;}
.ya6{bottom:246.442500px;}
.ye0{bottom:246.457500px;}
.y8c{bottom:246.825000px;}
.y2a{bottom:248.685000px;}
.y4b{bottom:249.075000px;}
.yfa{bottom:250.223745px;}
.y22e{bottom:253.590000px;}
.yca{bottom:256.575000px;}
.y1bf{bottom:256.582500px;}
.y15e{bottom:256.950000px;}
.y3f{bottom:258.825000px;}
.y68{bottom:261.450000px;}
.yf9{bottom:261.659443px;}
.y29{bottom:264.435000px;}
.y19a{bottom:264.442500px;}
.y4a{bottom:264.450000px;}
.ya5{bottom:264.457500px;}
.y8b{bottom:264.855000px;}
.ydf{bottom:267.082500px;}
.y22d{bottom:267.090000px;}
.yf8{bottom:273.104663px;}
.y1ea{bottom:273.825000px;}
.y1be{bottom:274.567500px;}
.yc9{bottom:274.605000px;}
.y15d{bottom:274.950000px;}
.y16b{bottom:275.325000px;}
.y67{bottom:276.075000px;}
.y49{bottom:279.825000px;}
.y28{bottom:279.855000px;}
.y22c{bottom:280.965000px;}
.y199{bottom:282.457500px;}
.ya4{bottom:282.832500px;}
.y8a{bottom:282.855000px;}
.yf7{bottom:285.492543px;}
.y62{bottom:288.075000px;}
.y1bd{bottom:292.582500px;}
.y1d9{bottom:292.950000px;}
.yc8{bottom:292.980000px;}
.yde{bottom:293.332500px;}
.y22b{bottom:294.465000px;}
.y48{bottom:295.200000px;}
.y27{bottom:295.230000px;}
.y15c{bottom:295.575000px;}
.yf6{bottom:296.928241px;}
.ydd{bottom:297.082500px;}
.ya3{bottom:300.832500px;}
.y89{bottom:301.230000px;}
.y22a{bottom:307.995000px;}
.yf5{bottom:308.373461px;}
.y1d8{bottom:310.950000px;}
.yc7{bottom:310.980000px;}
.y16a{bottom:312.825000px;}
.y1bc{bottom:313.207500px;}
.ya2{bottom:318.832500px;}
.y15b{bottom:319.200000px;}
.y88{bottom:319.230000px;}
.yf4{bottom:319.837725px;}
.y229{bottom:321.495000px;}
.y1e9{bottom:328.200000px;}
.yc6{bottom:328.980000px;}
.y1d7{bottom:329.370000px;}
.yf3{bottom:331.273424px;}
.y228{bottom:335.370000px;}
.y198{bottom:336.832500px;}
.y13f{bottom:336.870000px;}
.y15a{bottom:337.200000px;}
.ya1{bottom:337.207500px;}
.y87{bottom:337.230000px;}
.yf2{bottom:342.718644px;}
.y1e8{bottom:344.745000px;}
.yc5{bottom:346.980000px;}
.y1d6{bottom:347.355000px;}
.y227{bottom:348.870000px;}
.yd{bottom:350.745000px;}
.yf1{bottom:354.154342px;}
.y159{bottom:355.200000px;}
.y86{bottom:355.230000px;}
.ya0{bottom:355.237500px;}
.y5f{bottom:355.620000px;}
.y47{bottom:360.495000px;}
.y226{bottom:362.370000px;}
.yc4{bottom:365.355000px;}
.yf0{bottom:365.618606px;}
.y197{bottom:373.237500px;}
.y85{bottom:373.605000px;}
.y9f{bottom:375.862500px;}
.y225{bottom:375.870000px;}
.yef{bottom:377.063826px;}
.y9e{bottom:379.237500px;}
.y1e7{bottom:382.245000px;}
.yc3{bottom:383.355000px;}
.y224{bottom:389.370000px;}
.y196{bottom:391.237500px;}
.y158{bottom:391.605000px;}
.y84{bottom:391.650000px;}
.yee{bottom:399.944745px;}
.yc2{bottom:401.385000px;}
.y1d5{bottom:401.730000px;}
.y223{bottom:403.245000px;}
.y1e5{bottom:406.245000px;}
.y1bb{bottom:409.237500px;}
.y157{bottom:409.605000px;}
.y83{bottom:409.650000px;}
.y195{bottom:411.862500px;}
.y222{bottom:416.745000px;}
.y1d4{bottom:419.730000px;}
.yc1{bottom:419.775000px;}
.y260{bottom:422.745000px;}
.y1e4{bottom:426.870000px;}
.y1ba{bottom:427.612500px;}
.y156{bottom:427.980000px;}
.y82{bottom:428.025000px;}
.y221{bottom:430.290000px;}
.y194{bottom:435.487500px;}
.y1d3{bottom:437.730000px;}
.yc0{bottom:437.760000px;}
.ybc{bottom:438.120000px;}
.y25c{bottom:440.745000px;}
.y1e3{bottom:443.370000px;}
.y220{bottom:443.790000px;}
.y155{bottom:445.980000px;}
.y81{bottom:446.025000px;}
.y58{bottom:446.370000px;}
.y1b9{bottom:448.237500px;}
.y193{bottom:453.487500px;}
.ybf{bottom:455.760000px;}
.y1d2{bottom:455.775000px;}
.y21f{bottom:457.290000px;}
.y154{bottom:463.980000px;}
.y80{bottom:464.025000px;}
.y21e{bottom:471.165000px;}
.ybd{bottom:471.885000px;}
.y192{bottom:471.907500px;}
.ybe{bottom:473.760000px;}
.y1d1{bottom:474.150000px;}
.yd7{bottom:475.635000px;}
.y25f{bottom:477.525000px;}
.yd6{bottom:479.010000px;}
.y1e2{bottom:480.900000px;}
.y153{bottom:481.980000px;}
.y7f{bottom:482.025000px;}
.y21d{bottom:484.665000px;}
.y191{bottom:489.907500px;}
.y1cf{bottom:490.275000px;}
.y1d0{bottom:492.150000px;}
.y21c{bottom:498.165000px;}
.y152{bottom:500.385000px;}
.y7e{bottom:500.430000px;}
.yed{bottom:501.585000px;}
.y9c{bottom:502.275000px;}
.y1ce{bottom:504.900000px;}
.y190{bottom:507.907500px;}
.y21b{bottom:511.665000px;}
.y151{bottom:518.385000px;}
.y7d{bottom:518.430000px;}
.y13c{bottom:518.483363px;}
.y9b{bottom:518.775000px;}
.y12f{bottom:519.924966px;}
.y12d{bottom:520.350591px;}
.y21a{bottom:525.540000px;}
.y18f{bottom:526.282500px;}
.y25b{bottom:533.400000px;}
.y150{bottom:536.385000px;}
.y7c{bottom:536.430000px;}
.y219{bottom:539.040000px;}
.y18e{bottom:544.282500px;}
.y218{bottom:552.570000px;}
.y14f{bottom:554.385000px;}
.y3d{bottom:554.400000px;}
.y7b{bottom:554.805000px;}
.y9a{bottom:556.275000px;}
.y259{bottom:562.275000px;}
.y18d{bottom:562.282500px;}
.y217{bottom:566.070000px;}
.y14e{bottom:572.760000px;}
.y7a{bottom:572.805000px;}
.y216{bottom:579.570000px;}
.y78{bottom:580.275000px;}
.y18c{bottom:580.282500px;}
.y14d{bottom:590.760000px;}
.y79{bottom:590.805000px;}
.y215{bottom:593.445000px;}
.y18b{bottom:598.687500px;}
.y1b8{bottom:600.937500px;}
.y258{bottom:605.820000px;}
.y214{bottom:606.945000px;}
.y14c{bottom:608.760000px;}
.y18a{bottom:616.687500px;}
.y213{bottom:620.445000px;}
.y1b7{bottom:624.562500px;}
.y14b{bottom:627.180000px;}
.y25{bottom:629.055000px;}
.y212{bottom:633.945000px;}
.y189{bottom:634.687500px;}
.ye{bottom:638.805000px;}
.y129{bottom:642.488800px;}
.y1b6{bottom:642.937500px;}
.y14a{bottom:645.180000px;}
.y211{bottom:647.445000px;}
.y257{bottom:649.320000px;}
.y121{bottom:652.486705px;}
.y188{bottom:653.062500px;}
.y125{bottom:656.285909px;}
.y1b5{bottom:660.937500px;}
.y210{bottom:661.320000px;}
.y149{bottom:663.180000px;}
.y46{bottom:668.445000px;}
.y187{bottom:671.062500px;}
.y20f{bottom:674.850000px;}
.y1b4{bottom:678.937500px;}
.y26{bottom:683.820000px;}
.y148{bottom:686.430000px;}
.y20e{bottom:688.350000px;}
.y186{bottom:689.062500px;}
.y251{bottom:692.820000px;}
.y1b3{bottom:696.937500px;}
.y147{bottom:699.555000px;}
.y20d{bottom:701.850000px;}
.y185{bottom:707.062500px;}
.y1b2{bottom:715.312500px;}
.y20c{bottom:715.350000px;}
.y146{bottom:717.555000px;}
.y11a{bottom:719.234620px;}
.y11d{bottom:720.253454px;}
.y184{bottom:725.467500px;}
.y20b{bottom:729.225000px;}
.y1b1{bottom:733.342500px;}
.y145{bottom:735.555000px;}
.y20a{bottom:742.725000px;}
.y183{bottom:743.467500px;}
.y1b0{bottom:751.342500px;}
.y144{bottom:753.960000px;}
.y209{bottom:756.225000px;}
.y182{bottom:761.467500px;}
.y1af{bottom:769.717500px;}
.y208{bottom:769.725000px;}
.y143{bottom:771.960000px;}
.y181{bottom:779.467500px;}
.y250{bottom:779.850000px;}
.y207{bottom:783.600000px;}
.y1ae{bottom:787.717500px;}
.y142{bottom:789.960000px;}
.y10f{bottom:794.666428px;}
.y206{bottom:797.145000px;}
.y180{bottom:797.842500px;}
.y117{bottom:799.884382px;}
.y1ad{bottom:805.717500px;}
.y141{bottom:807.960000px;}
.y205{bottom:810.645000px;}
.y17f{bottom:815.842500px;}
.y24e{bottom:822.975000px;}
.y1ac{bottom:823.717500px;}
.y204{bottom:824.145000px;}
.y3a{bottom:825.225000px;}
.y140{bottom:828.585000px;}
.y1a{bottom:830.505000px;}
.y17e{bottom:833.842500px;}
.y203{bottom:837.645000px;}
.y1ab{bottom:842.092500px;}
.y202{bottom:851.520000px;}
.y17d{bottom:852.262500px;}
.y1aa{bottom:860.137500px;}
.y201{bottom:865.020000px;}
.y24d{bottom:866.505000px;}
.y12c{bottom:869.050838px;}
.y17c{bottom:870.262500px;}
.y1a9{bottom:878.137500px;}
.y200{bottom:878.520000px;}
.y17b{bottom:888.262500px;}
.y1ff{bottom:892.020000px;}
.y24c{bottom:895.755000px;}
.y1a8{bottom:896.512500px;}
.y1fe{bottom:905.520000px;}
.y17a{bottom:906.262500px;}
.y1a7{bottom:914.512500px;}
.y1fd{bottom:919.425000px;}
.y179{bottom:924.637500px;}
.yb4{bottom:926.895000px;}
.y1a6{bottom:932.512500px;}
.y1fc{bottom:932.925000px;}
.y178{bottom:942.637500px;}
.y1fb{bottom:946.425000px;}
.y1a5{bottom:950.512500px;}
.y249{bottom:953.520000px;}
.y1fa{bottom:959.925000px;}
.y177{bottom:960.637500px;}
.y1a4{bottom:968.917500px;}
.y1f9{bottom:973.425000px;}
.y176{bottom:979.042500px;}
.y248{bottom:982.425000px;}
.y1a3{bottom:986.917500px;}
.y1f8{bottom:987.300000px;}
.y18{bottom:991.800000px;}
.y175{bottom:997.042500px;}
.y1f7{bottom:1000.800000px;}
.y1a2{bottom:1004.917500px;}
.yf{bottom:1007.925000px;}
.y247{bottom:1011.675000px;}
.y1cd{bottom:1012.050000px;}
.y1f6{bottom:1014.300000px;}
.y174{bottom:1015.042500px;}
.y1a1{bottom:1023.292500px;}
.y1cc{bottom:1028.550000px;}
.y173{bottom:1035.667500px;}
.yb3{bottom:1035.675000px;}
.y1a0{bottom:1041.292500px;}
.yb2{bottom:1052.175000px;}
.y245{bottom:1054.800000px;}
.y172{bottom:1059.292500px;}
.y1cb{bottom:1067.550000px;}
.y244{bottom:1084.080000px;}
.yb1{bottom:1089.705000px;}
.y1c9{bottom:1095.705000px;}
.yaf{bottom:1113.705000px;}
.y240{bottom:1127.580000px;}
.y75{bottom:1189.830000px;}
.y2{bottom:1206.375000px;}
.y74{bottom:1208.625000px;}
.y1{bottom:1226.625000px;}
.y73{bottom:1227.375000px;}
.h76{height:3.001465px;}
.hd{height:3.999023px;}
.h35{height:4.166016px;}
.h25{height:4.875000px;}
.h42{height:4.910156px;}
.h33{height:5.250000px;}
.h1b{height:5.287500px;}
.h9{height:5.625000px;}
.h26{height:6.002930px;}
.h23{height:9.820312px;}
.h53{height:11.014834px;}
.ha{height:12.005859px;}
.h1c{height:12.498047px;}
.h2e{height:14.250000px;}
.h1d{height:14.730469px;}
.h1f{height:15.375000px;}
.h14{height:16.125000px;}
.h39{height:16.500000px;}
.h62{height:16.537500px;}
.h64{height:17.287500px;}
.h61{height:20.625000px;}
.h4a{height:27.208831px;}
.h4e{height:27.448781px;}
.h54{height:27.460764px;}
.h6a{height:28.875000px;}
.h70{height:28.897500px;}
.h47{height:28.948962px;}
.h50{height:29.191977px;}
.h6f{height:29.250000px;}
.h6d{height:29.287500px;}
.h4b{height:30.768750px;}
.h52{height:31.040095px;}
.h6{height:31.912500px;}
.h43{height:31.916016px;}
.h4f{height:32.052330px;}
.h2c{height:32.625000px;}
.h3e{height:32.662500px;}
.h74{height:33.750000px;}
.h46{height:34.768271px;}
.h48{height:35.320967px;}
.h2a{height:36.000000px;}
.h17{height:36.017578px;}
.h75{height:36.787500px;}
.h73{height:36.826172px;}
.hb{height:38.250000px;}
.h34{height:38.625000px;}
.h41{height:39.019043px;}
.h59{height:39.029297px;}
.h5b{height:39.089297px;}
.h10{height:39.281250px;}
.h2b{height:40.500000px;}
.h3c{height:41.405659px;}
.h20{height:41.736328px;}
.h6e{height:43.125000px;}
.h6c{height:43.500000px;}
.h69{height:43.537500px;}
.h7{height:43.875000px;}
.h67{height:45.021973px;}
.h8{height:48.023438px;}
.h5d{height:49.101562px;}
.h15{height:49.189453px;}
.h2{height:49.804688px;}
.h3{height:49.992188px;}
.h4d{height:50.135206px;}
.h1a{height:51.024902px;}
.h29{height:54.026367px;}
.h63{height:54.375000px;}
.h57{height:55.878764px;}
.h65{height:57.027832px;}
.h6b{height:57.750000px;}
.h49{height:58.715313px;}
.h4c{height:59.660829px;}
.h30{height:60.029297px;}
.h31{height:60.079043px;}
.h27{height:62.662500px;}
.h28{height:63.000000px;}
.h3b{height:63.275802px;}
.h32{height:68.742188px;}
.h55{height:69.753951px;}
.h56{height:70.179576px;}
.h5{height:72.035156px;}
.h3d{height:72.375000px;}
.h37{height:78.703125px;}
.h4{height:80.287500px;}
.h5f{height:83.320312px;}
.h13{height:84.667969px;}
.h24{height:85.875000px;}
.h71{height:87.037500px;}
.h12{height:89.648438px;}
.h5e{height:90.375000px;}
.h66{height:94.875000px;}
.h38{height:96.046875px;}
.h2d{height:98.378906px;}
.hc{height:108.000000px;}
.h22{height:108.037500px;}
.h3f{height:108.772500px;}
.h2f{height:108.787500px;}
.h51{height:116.956439px;}
.hf{height:139.453125px;}
.h5a{height:144.787500px;}
.h16{height:161.280000px;}
.h11{height:194.280000px;}
.h1e{height:270.825000px;}
.h21{height:307.950000px;}
.h19{height:307.980000px;}
.h44{height:313.950000px;}
.h3a{height:396.120000px;}
.h45{height:411.970795px;}
.h40{height:488.775000px;}
.h60{height:507.150000px;}
.h36{height:605.805000px;}
.h18{height:641.040000px;}
.h72{height:745.335000px;}
.h58{height:849.225000px;}
.he{height:851.475000px;}
.h68{height:1025.550000px;}
.h5c{height:1074.300000px;}
.h0{height:1261.125000px;}
.h1{height:1261.500000px;}
.w20{width:11.081415px;}
.w25{width:12.002731px;}
.w15{width:18.750000px;}
.w19{width:20.250000px;}
.wb{width:21.375000px;}
.w7{width:24.787500px;}
.w29{width:50.625000px;}
.w5{width:59.250000px;}
.w6{width:62.625000px;}
.w12{width:85.537500px;}
.wf{width:95.662500px;}
.w2{width:97.537500px;}
.w2b{width:98.287500px;}
.w2e{width:104.287500px;}
.w2c{width:112.537500px;}
.we{width:114.787500px;}
.w13{width:116.662500px;}
.w10{width:127.537500px;}
.w2d{width:134.325000px;}
.w21{width:140.699554px;}
.w24{width:140.718589px;}
.w1e{width:141.622770px;}
.w23{width:141.641802px;}
.w22{width:141.717944px;}
.w9{width:143.325000px;}
.wa{width:163.950000px;}
.w11{width:165.450000px;}
.w3{width:182.700000px;}
.w27{width:189.820195px;}
.w28{width:190.248490px;}
.w1f{width:195.959084px;}
.w1b{width:299.370000px;}
.wd{width:307.275000px;}
.w2f{width:316.620000px;}
.w26{width:379.992531px;}
.wc{width:410.025000px;}
.w4{width:461.820000px;}
.w1d{width:465.242201px;}
.w1c{width:481.695000px;}
.w8{width:713.895000px;}
.w2a{width:750.675000px;}
.w30{width:766.050000px;}
.w16{width:776.925000px;}
.w1a{width:781.050000px;}
.w18{width:782.550000px;}
.w14{width:795.675000px;}
.w17{width:801.300000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x30{left:7.158233px;}
.x7{left:8.250000px;}
.x16{left:13.875000px;}
.x35{left:15.523305px;}
.x37{left:16.585483px;}
.xb{left:19.485000px;}
.x32{left:20.717093px;}
.x31{left:27.379453px;}
.x19{left:31.905000px;}
.x8{left:34.125000px;}
.x3f{left:35.250000px;}
.x2e{left:40.048365px;}
.x22{left:42.000000px;}
.xc{left:44.250000px;}
.x2{left:45.787500px;}
.xa{left:51.000000px;}
.x1{left:54.037487px;}
.x39{left:57.463818px;}
.x3e{left:62.250000px;}
.x1c{left:64.537500px;}
.xd{left:66.000000px;}
.x40{left:72.787500px;}
.x3{left:89.287500px;}
.x1e{left:95.287487px;}
.x3d{left:96.412500px;}
.x23{left:100.537500px;}
.xe{left:104.662500px;}
.xf{left:108.412500px;}
.x10{left:133.200000px;}
.x4{left:143.325000px;}
.x14{left:160.575000px;}
.x3c{left:166.207500px;}
.x41{left:171.075000px;}
.x5{left:174.825000px;}
.x11{left:251.745000px;}
.x15{left:256.245000px;}
.x42{left:283.620000px;}
.x24{left:305.737500px;}
.x6{left:326.025000px;}
.x45{left:348.907500px;}
.x25{left:364.282500px;}
.x2b{left:365.400000px;}
.x2d{left:373.275000px;}
.x17{left:383.775000px;}
.x12{left:415.695000px;}
.x43{left:417.945000px;}
.x34{left:426.601456px;}
.x13{left:437.070000px;}
.x46{left:446.812500px;}
.x2f{left:455.710264px;}
.x38{left:457.576674px;}
.x2c{left:473.445000px;}
.x18{left:479.445000px;}
.x29{left:503.849987px;}
.x44{left:522.225000px;}
.x3a{left:540.982500px;}
.x26{left:543.217500px;}
.x1f{left:586.717500px;}
.x1d{left:600.269987px;}
.x33{left:642.529534px;}
.x1a{left:644.895000px;}
.x36{left:646.308055px;}
.x27{left:663.262500px;}
.x20{left:668.512500px;}
.x21{left:678.262500px;}
.x3b{left:697.417500px;}
.x1b{left:730.425000px;}
.x28{left:769.432500px;}
.x9{left:787.845000px;}
.x2a{left:838.844987px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.720000pt;}
.v1{vertical-align:21.333333pt;}
.lsb{letter-spacing:-1.333333pt;}
.ls14{letter-spacing:-0.520000pt;}
.ls3{letter-spacing:-0.506667pt;}
.ls6{letter-spacing:-0.362667pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.031833pt;}
.lse{letter-spacing:0.071517pt;}
.lsf{letter-spacing:0.302676pt;}
.ls7{letter-spacing:0.330667pt;}
.ls1{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.405333pt;}
.ls0{letter-spacing:0.458667pt;}
.ls10{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.545254pt;}
.ls8{letter-spacing:0.565333pt;}
.ls13{letter-spacing:0.826667pt;}
.ls12{letter-spacing:28.880000pt;}
.ls11{letter-spacing:51.546667pt;}
.ws3{word-spacing:-39.722667pt;}
.ws9{word-spacing:-29.440000pt;}
.ws2{word-spacing:-27.968000pt;}
.wsd{word-spacing:-17.596142pt;}
.ws11{word-spacing:-15.755329pt;}
.ws7{word-spacing:-15.354667pt;}
.ws8{word-spacing:-15.024000pt;}
.ws6{word-spacing:-14.189333pt;}
.ws1{word-spacing:-13.354667pt;}
.ws5{word-spacing:-13.282667pt;}
.wsc{word-spacing:-13.066667pt;}
.ws12{word-spacing:-12.520000pt;}
.wse{word-spacing:-12.501333pt;}
.ws0{word-spacing:-12.013333pt;}
.wsa{word-spacing:-10.850667pt;}
.ws4{word-spacing:-10.016000pt;}
.ws10{word-spacing:-7.499968pt;}
.wsf{word-spacing:-7.496696pt;}
.wsb{word-spacing:0.000000pt;}
._10{margin-left:-2.056000pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.240000pt;}
._1f{width:2.176000pt;}
._17{width:3.128000pt;}
._18{width:4.213333pt;}
._19{width:5.242667pt;}
._11{width:6.461333pt;}
._8{width:7.616000pt;}
._7{width:8.674667pt;}
._f{width:9.656000pt;}
._e{width:11.048000pt;}
._14{width:12.784000pt;}
._2f{width:14.149333pt;}
._2e{width:15.306667pt;}
._15{width:16.314667pt;}
._16{width:17.285333pt;}
._1c{width:18.245333pt;}
._1d{width:19.181333pt;}
._33{width:20.088000pt;}
._c{width:21.085333pt;}
._d{width:22.368000pt;}
._30{width:23.408000pt;}
._1e{width:24.480000pt;}
._22{width:25.432000pt;}
._23{width:26.429333pt;}
._21{width:27.456000pt;}
._1a{width:28.968000pt;}
._1b{width:29.997333pt;}
._9{width:31.560000pt;}
._24{width:32.629333pt;}
._25{width:33.818667pt;}
._3{width:34.816000pt;}
._2{width:36.237333pt;}
._39{width:37.461333pt;}
._12{width:39.152000pt;}
._13{width:40.074667pt;}
._26{width:41.464000pt;}
._27{width:42.402667pt;}
._28{width:44.064000pt;}
._29{width:45.786667pt;}
._3f{width:46.762667pt;}
._34{width:48.074667pt;}
._20{width:49.312000pt;}
._3e{width:50.994667pt;}
._35{width:53.706667pt;}
._b{width:61.770667pt;}
._a{width:62.933333pt;}
._3a{width:67.722667pt;}
._3c{width:76.672000pt;}
._3b{width:77.568000pt;}
._38{width:79.733333pt;}
._37{width:80.693333pt;}
._3d{width:98.349333pt;}
._5{width:108.648000pt;}
._6{width:109.672000pt;}
._4{width:110.680000pt;}
._2a{width:121.114667pt;}
._2b{width:122.506667pt;}
._2d{width:166.122667pt;}
._2c{width:167.589333pt;}
._32{width:175.200000pt;}
._31{width:184.112992pt;}
._36{width:278.400000pt;}
.fs1d{font-size:2.666667pt;}
.fs7{font-size:5.333333pt;}
.fs4{font-size:10.666667pt;}
.fsd{font-size:16.000000pt;}
.fs1a{font-size:26.966531pt;}
.fs18{font-size:26.978303pt;}
.fs1b{font-size:30.494748pt;}
.fs19{font-size:30.508061pt;}
.fsb{font-size:32.000000pt;}
.fs16{font-size:33.868880pt;}
.fs11{font-size:34.666667pt;}
.fs17{font-size:37.146077pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs15{font-size:40.677189pt;}
.fs3{font-size:42.666667pt;}
.fs14{font-size:44.974166pt;}
.fsc{font-size:45.333333pt;}
.fsf{font-size:48.000000pt;}
.fs1c{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs13{font-size:56.217707pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:74.666667pt;}
.fs12{font-size:85.333333pt;}
.fsa{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs10{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:149.333333pt;}
.y13b{bottom:-23.721420pt;}
.y13a{bottom:-14.371506pt;}
.y138{bottom:-6.303864pt;}
.y139{bottom:-5.925531pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:0.346667pt;}
.y3c{bottom:0.666667pt;}
.y3b{bottom:1.000000pt;}
.y61{bottom:1.333333pt;}
.y60{bottom:1.666667pt;}
.y77{bottom:2.000000pt;}
.y57{bottom:2.320000pt;}
.ya{bottom:2.333333pt;}
.y24b{bottom:2.360000pt;}
.y137{bottom:2.605168pt;}
.y128{bottom:2.606861pt;}
.y72{bottom:2.666667pt;}
.y1ed{bottom:2.680000pt;}
.ybb{bottom:2.986667pt;}
.y19{bottom:3.000000pt;}
.y99{bottom:3.040000pt;}
.y1e6{bottom:3.333333pt;}
.y124{bottom:4.325019pt;}
.y4{bottom:4.333333pt;}
.yec{bottom:5.000000pt;}
.y120{bottom:5.146011pt;}
.y17{bottom:5.333333pt;}
.y6a{bottom:6.333333pt;}
.y12b{bottom:7.245042pt;}
.y118{bottom:7.253506pt;}
.yb{bottom:7.666667pt;}
.y11c{bottom:7.710553pt;}
.y5{bottom:9.000000pt;}
.y10e{bottom:9.557362pt;}
.y136{bottom:10.232776pt;}
.y5e{bottom:10.333333pt;}
.y13d{bottom:10.631422pt;}
.y113{bottom:11.891687pt;}
.y127{bottom:11.959398pt;}
.y123{bottom:12.788854pt;}
.y7{bottom:13.366667pt;}
.y11f{bottom:13.592918pt;}
.y1f4{bottom:14.000000pt;}
.y119{bottom:14.879421pt;}
.y243{bottom:15.000000pt;}
.y256{bottom:15.026667pt;}
.y246{bottom:15.333333pt;}
.y23f{bottom:15.346667pt;}
.y24a{bottom:15.360000pt;}
.y23d{bottom:15.373333pt;}
.y39{bottom:16.000000pt;}
.y116{bottom:16.132069pt;}
.y11b{bottom:16.225171pt;}
.y135{bottom:17.859537pt;}
.y8{bottom:18.333333pt;}
.y76{bottom:18.666667pt;}
.yd5{bottom:18.693333pt;}
.yba{bottom:18.986667pt;}
.yc{bottom:19.000000pt;}
.y98{bottom:19.040000pt;}
.y126{bottom:19.585313pt;}
.y3{bottom:20.333333pt;}
.y10d{bottom:20.567118pt;}
.y112{bottom:21.218833pt;}
.y122{bottom:21.235761pt;}
.y11e{bottom:21.244225pt;}
.y63{bottom:22.333333pt;}
.y64{bottom:23.000000pt;}
.y5d{bottom:24.000000pt;}
.y13e{bottom:25.065646pt;}
.y115{bottom:25.484606pt;}
.yeb{bottom:25.993333pt;}
.y19f{bottom:26.000000pt;}
.y134{bottom:26.326757pt;}
.ydb{bottom:26.693333pt;}
.y242{bottom:28.000000pt;}
.y255{bottom:28.026667pt;}
.y25a{bottom:28.040000pt;}
.y24f{bottom:28.360000pt;}
.y23c{bottom:28.373333pt;}
.y111{bottom:28.861676pt;}
.y56{bottom:29.653333pt;}
.y38{bottom:29.693333pt;}
.y16{bottom:30.000000pt;}
.y10c{bottom:32.459652pt;}
.y114{bottom:33.110520pt;}
.y1eb{bottom:33.333333pt;}
.y133{bottom:33.953518pt;}
.y1c8{bottom:34.673333pt;}
.y169{bottom:34.986667pt;}
.y171{bottom:34.993333pt;}
.y71{bottom:35.000000pt;}
.yb9{bottom:35.026667pt;}
.y97{bottom:35.040000pt;}
.y66{bottom:35.333333pt;}
.y110{bottom:36.496054pt;}
.yda{bottom:37.026667pt;}
.y5c{bottom:37.666667pt;}
.y1f3{bottom:38.006667pt;}
.y12a{bottom:39.475324pt;}
.y241{bottom:40.666667pt;}
.y254{bottom:41.026667pt;}
.y132{bottom:41.581126pt;}
.yea{bottom:42.006667pt;}
.y55{bottom:43.333333pt;}
.y37{bottom:43.360000pt;}
.y24{bottom:45.000000pt;}
.y10b{bottom:45.171485pt;}
.y65{bottom:47.040000pt;}
.yd9{bottom:47.693333pt;}
.y131{bottom:49.229047pt;}
.y1f2{bottom:50.340000pt;}
.y70{bottom:50.993333pt;}
.yb0{bottom:51.000000pt;}
.y1c7{bottom:51.006667pt;}
.yb8{bottom:51.026667pt;}
.y5b{bottom:51.333333pt;}
.y96{bottom:51.373333pt;}
.y253{bottom:53.693333pt;}
.y9{bottom:54.333333pt;}
.y15{bottom:54.666667pt;}
.y170{bottom:55.660000pt;}
.yd8{bottom:56.360000pt;}
.y12e{bottom:56.477475pt;}
.y130{bottom:56.855808pt;}
.y54{bottom:57.000000pt;}
.y36{bottom:57.026667pt;}
.y10a{bottom:57.064018pt;}
.y19e{bottom:57.993333pt;}
.ye9{bottom:58.340000pt;}
.y25e{bottom:59.693333pt;}
.y1f1{bottom:62.340000pt;}
.y6{bottom:63.333333pt;}
.y23{bottom:64.333333pt;}
.y5a{bottom:65.000000pt;}
.y252{bottom:66.693333pt;}
.y1c6{bottom:66.993333pt;}
.y1ca{bottom:67.000000pt;}
.y6f{bottom:67.006667pt;}
.yd4{bottom:67.026667pt;}
.y168{bottom:67.333333pt;}
.y16f{bottom:67.340000pt;}
.yb7{bottom:67.360000pt;}
.y23a{bottom:68.706667pt;}
.y109{bottom:68.893074pt;}
.y1ef{bottom:69.340000pt;}
.y95{bottom:69.706667pt;}
.y53{bottom:70.666667pt;}
.y35{bottom:70.693333pt;}
.y25d{bottom:71.693333pt;}
.y22{bottom:74.000000pt;}
.y19d{bottom:74.006667pt;}
.y1f0{bottom:74.340000pt;}
.ye8{bottom:74.366667pt;}
.y108{bottom:79.062371pt;}
.y14{bottom:79.360000pt;}
.y3e{bottom:80.706667pt;}
.yb5{bottom:81.693333pt;}
.yae{bottom:83.006667pt;}
.yd3{bottom:83.026667pt;}
.y6e{bottom:83.326667pt;}
.y167{bottom:83.333333pt;}
.yb6{bottom:83.360000pt;}
.y16e{bottom:83.366667pt;}
.y1e1{bottom:83.373333pt;}
.y21{bottom:83.666667pt;}
.y52{bottom:84.333333pt;}
.y34{bottom:84.360000pt;}
.y6d{bottom:86.006667pt;}
.y107{bottom:89.251135pt;}
.ye7{bottom:90.366667pt;}
.y94{bottom:90.706667pt;}
.y6c{bottom:91.700000pt;}
.y239{bottom:92.706667pt;}
.y20{bottom:93.333333pt;}
.y59{bottom:93.360000pt;}
.y9d{bottom:94.366667pt;}
.y1ee{bottom:96.366667pt;}
.y33{bottom:98.026667pt;}
.y166{bottom:99.333333pt;}
.yd2{bottom:99.360000pt;}
.yad{bottom:99.366667pt;}
.y1e0{bottom:99.373333pt;}
.y106{bottom:99.424664pt;}
.y16c{bottom:101.366667pt;}
.y1f{bottom:103.000000pt;}
.y13{bottom:104.026667pt;}
.y238{bottom:104.706667pt;}
.ye6{bottom:106.366667pt;}
.y93{bottom:106.706667pt;}
.ydc{bottom:110.366667pt;}
.y105{bottom:110.495359pt;}
.y32{bottom:111.693333pt;}
.y1e{bottom:112.706667pt;}
.y16d{bottom:113.700000pt;}
.yd1{bottom:115.360000pt;}
.yac{bottom:115.366667pt;}
.y1df{bottom:115.373333pt;}
.y165{bottom:115.693333pt;}
.y237{bottom:116.706667pt;}
.y104{bottom:120.660424pt;}
.y19c{bottom:122.366667pt;}
.y1d{bottom:122.373333pt;}
.ye5{bottom:122.700000pt;}
.y92{bottom:122.733333pt;}
.y31{bottom:125.360000pt;}
.y12{bottom:128.693333pt;}
.y236{bottom:129.040000pt;}
.y103{bottom:130.833953pt;}
.y1c5{bottom:131.366667pt;}
.yd0{bottom:131.400000pt;}
.y164{bottom:131.693333pt;}
.y1de{bottom:131.706667pt;}
.y1c{bottom:132.706667pt;}
.yab{bottom:133.700000pt;}
.ye4{bottom:138.700000pt;}
.y91{bottom:138.733333pt;}
.y51{bottom:139.026667pt;}
.y30{bottom:139.066667pt;}
.y102{bottom:140.999019pt;}
.y235{bottom:141.040000pt;}
.y1f5{bottom:142.693333pt;}
.y23e{bottom:143.360000pt;}
.y1c4{bottom:147.366667pt;}
.y163{bottom:147.693333pt;}
.y1dd{bottom:147.706667pt;}
.ycf{bottom:147.733333pt;}
.y101{bottom:151.189475pt;}
.y10{bottom:152.360000pt;}
.y50{bottom:152.693333pt;}
.y2f{bottom:152.720000pt;}
.y234{bottom:153.066667pt;}
.y11{bottom:153.360000pt;}
.yaa{bottom:154.700000pt;}
.y90{bottom:155.066667pt;}
.y100{bottom:161.363004pt;}
.y162{bottom:163.693333pt;}
.y1c3{bottom:163.700000pt;}
.y1dc{bottom:163.706667pt;}
.yce{bottom:163.733333pt;}
.y233{bottom:165.066667pt;}
.y45{bottom:165.733333pt;}
.y2e{bottom:166.386667pt;}
.y4f{bottom:166.693333pt;}
.y23b{bottom:169.693333pt;}
.ya9{bottom:170.700000pt;}
.ye3{bottom:171.033333pt;}
.y8f{bottom:171.066667pt;}
.yff{bottom:171.528070pt;}
.y232{bottom:177.066667pt;}
.y44{bottom:178.066667pt;}
.y1c2{bottom:179.700000pt;}
.ycd{bottom:179.733333pt;}
.y161{bottom:180.026667pt;}
.y2d{bottom:180.053333pt;}
.y1db{bottom:180.066667pt;}
.y4e{bottom:180.360000pt;}
.y1ec{bottom:180.693333pt;}
.yfe{bottom:181.701599pt;}
.y19b{bottom:186.700000pt;}
.ya8{bottom:187.033333pt;}
.y8e{bottom:187.066667pt;}
.ye2{bottom:187.073333pt;}
.y43{bottom:187.733333pt;}
.y6b{bottom:188.400000pt;}
.y231{bottom:189.400000pt;}
.yfd{bottom:191.892055pt;}
.y2c{bottom:193.720000pt;}
.y4d{bottom:194.026667pt;}
.y1c1{bottom:195.700000pt;}
.ycc{bottom:195.733333pt;}
.y160{bottom:196.026667pt;}
.y1da{bottom:196.066667pt;}
.y42{bottom:197.400000pt;}
.y69{bottom:201.066667pt;}
.y230{bottom:201.400000pt;}
.yfc{bottom:202.057121pt;}
.ye1{bottom:203.060000pt;}
.y8d{bottom:203.066667pt;}
.ya7{bottom:203.073333pt;}
.y41{bottom:206.733333pt;}
.y2b{bottom:207.386667pt;}
.y4c{bottom:207.733333pt;}
.y15f{bottom:212.026667pt;}
.ycb{bottom:212.066667pt;}
.y1c0{bottom:212.073333pt;}
.yfb{bottom:212.230650pt;}
.y22f{bottom:213.413333pt;}
.y40{bottom:217.066667pt;}
.ya6{bottom:219.060000pt;}
.ye0{bottom:219.073333pt;}
.y8c{bottom:219.400000pt;}
.y2a{bottom:221.053333pt;}
.y4b{bottom:221.400000pt;}
.yfa{bottom:222.421106pt;}
.y22e{bottom:225.413333pt;}
.yca{bottom:228.066667pt;}
.y1bf{bottom:228.073333pt;}
.y15e{bottom:228.400000pt;}
.y3f{bottom:230.066667pt;}
.y68{bottom:232.400000pt;}
.yf9{bottom:232.586172pt;}
.y29{bottom:235.053333pt;}
.y19a{bottom:235.060000pt;}
.y4a{bottom:235.066667pt;}
.ya5{bottom:235.073333pt;}
.y8b{bottom:235.426667pt;}
.ydf{bottom:237.406667pt;}
.y22d{bottom:237.413333pt;}
.yf8{bottom:242.759701pt;}
.y1ea{bottom:243.400000pt;}
.y1be{bottom:244.060000pt;}
.yc9{bottom:244.093333pt;}
.y15d{bottom:244.400000pt;}
.y16b{bottom:244.733333pt;}
.y67{bottom:245.400000pt;}
.y49{bottom:248.733333pt;}
.y28{bottom:248.760000pt;}
.y22c{bottom:249.746667pt;}
.y199{bottom:251.073333pt;}
.ya4{bottom:251.406667pt;}
.y8a{bottom:251.426667pt;}
.yf7{bottom:253.771149pt;}
.y62{bottom:256.066667pt;}
.y1bd{bottom:260.073333pt;}
.y1d9{bottom:260.400000pt;}
.yc8{bottom:260.426667pt;}
.yde{bottom:260.740000pt;}
.y22b{bottom:261.746667pt;}
.y48{bottom:262.400000pt;}
.y27{bottom:262.426667pt;}
.y15c{bottom:262.733333pt;}
.yf6{bottom:263.936214pt;}
.ydd{bottom:264.073333pt;}
.ya3{bottom:267.406667pt;}
.y89{bottom:267.760000pt;}
.y22a{bottom:273.773333pt;}
.yf5{bottom:274.109743pt;}
.y1d8{bottom:276.400000pt;}
.yc7{bottom:276.426667pt;}
.y16a{bottom:278.066667pt;}
.y1bc{bottom:278.406667pt;}
.ya2{bottom:283.406667pt;}
.y15b{bottom:283.733333pt;}
.y88{bottom:283.760000pt;}
.yf4{bottom:284.300200pt;}
.y229{bottom:285.773333pt;}
.y1e9{bottom:291.733333pt;}
.yc6{bottom:292.426667pt;}
.y1d7{bottom:292.773333pt;}
.yf3{bottom:294.465265pt;}
.y228{bottom:298.106667pt;}
.y198{bottom:299.406667pt;}
.y13f{bottom:299.440000pt;}
.y15a{bottom:299.733333pt;}
.ya1{bottom:299.740000pt;}
.y87{bottom:299.760000pt;}
.yf2{bottom:304.638794pt;}
.y1e8{bottom:306.440000pt;}
.yc5{bottom:308.426667pt;}
.y1d6{bottom:308.760000pt;}
.y227{bottom:310.106667pt;}
.yd{bottom:311.773333pt;}
.yf1{bottom:314.803860pt;}
.y159{bottom:315.733333pt;}
.y86{bottom:315.760000pt;}
.ya0{bottom:315.766667pt;}
.y5f{bottom:316.106667pt;}
.y47{bottom:320.440000pt;}
.y226{bottom:322.106667pt;}
.yc4{bottom:324.760000pt;}
.yf0{bottom:324.994316pt;}
.y197{bottom:331.766667pt;}
.y85{bottom:332.093333pt;}
.y9f{bottom:334.100000pt;}
.y225{bottom:334.106667pt;}
.yef{bottom:335.167845pt;}
.y9e{bottom:337.100000pt;}
.y1e7{bottom:339.773333pt;}
.yc3{bottom:340.760000pt;}
.y224{bottom:346.106667pt;}
.y196{bottom:347.766667pt;}
.y158{bottom:348.093333pt;}
.y84{bottom:348.133333pt;}
.yee{bottom:355.506440pt;}
.yc2{bottom:356.786667pt;}
.y1d5{bottom:357.093333pt;}
.y223{bottom:358.440000pt;}
.y1e5{bottom:361.106667pt;}
.y1bb{bottom:363.766667pt;}
.y157{bottom:364.093333pt;}
.y83{bottom:364.133333pt;}
.y195{bottom:366.100000pt;}
.y222{bottom:370.440000pt;}
.y1d4{bottom:373.093333pt;}
.yc1{bottom:373.133333pt;}
.y260{bottom:375.773333pt;}
.y1e4{bottom:379.440000pt;}
.y1ba{bottom:380.100000pt;}
.y156{bottom:380.426667pt;}
.y82{bottom:380.466667pt;}
.y221{bottom:382.480000pt;}
.y194{bottom:387.100000pt;}
.y1d3{bottom:389.093333pt;}
.yc0{bottom:389.120000pt;}
.ybc{bottom:389.440000pt;}
.y25c{bottom:391.773333pt;}
.y1e3{bottom:394.106667pt;}
.y220{bottom:394.480000pt;}
.y155{bottom:396.426667pt;}
.y81{bottom:396.466667pt;}
.y58{bottom:396.773333pt;}
.y1b9{bottom:398.433333pt;}
.y193{bottom:403.100000pt;}
.ybf{bottom:405.120000pt;}
.y1d2{bottom:405.133333pt;}
.y21f{bottom:406.480000pt;}
.y154{bottom:412.426667pt;}
.y80{bottom:412.466667pt;}
.y21e{bottom:418.813333pt;}
.ybd{bottom:419.453333pt;}
.y192{bottom:419.473333pt;}
.ybe{bottom:421.120000pt;}
.y1d1{bottom:421.466667pt;}
.yd7{bottom:422.786667pt;}
.y25f{bottom:424.466667pt;}
.yd6{bottom:425.786667pt;}
.y1e2{bottom:427.466667pt;}
.y153{bottom:428.426667pt;}
.y7f{bottom:428.466667pt;}
.y21d{bottom:430.813333pt;}
.y191{bottom:435.473333pt;}
.y1cf{bottom:435.800000pt;}
.y1d0{bottom:437.466667pt;}
.y21c{bottom:442.813333pt;}
.y152{bottom:444.786667pt;}
.y7e{bottom:444.826667pt;}
.yed{bottom:445.853333pt;}
.y9c{bottom:446.466667pt;}
.y1ce{bottom:448.800000pt;}
.y190{bottom:451.473333pt;}
.y21b{bottom:454.813333pt;}
.y151{bottom:460.786667pt;}
.y7d{bottom:460.826667pt;}
.y13c{bottom:460.874100pt;}
.y9b{bottom:461.133333pt;}
.y12f{bottom:462.155525pt;}
.y12d{bottom:462.533858pt;}
.y21a{bottom:467.146667pt;}
.y18f{bottom:467.806667pt;}
.y25b{bottom:474.133333pt;}
.y150{bottom:476.786667pt;}
.y7c{bottom:476.826667pt;}
.y219{bottom:479.146667pt;}
.y18e{bottom:483.806667pt;}
.y218{bottom:491.173333pt;}
.y14f{bottom:492.786667pt;}
.y3d{bottom:492.800000pt;}
.y7b{bottom:493.160000pt;}
.y9a{bottom:494.466667pt;}
.y259{bottom:499.800000pt;}
.y18d{bottom:499.806667pt;}
.y217{bottom:503.173333pt;}
.y14e{bottom:509.120000pt;}
.y7a{bottom:509.160000pt;}
.y216{bottom:515.173333pt;}
.y78{bottom:515.800000pt;}
.y18c{bottom:515.806667pt;}
.y14d{bottom:525.120000pt;}
.y79{bottom:525.160000pt;}
.y215{bottom:527.506667pt;}
.y18b{bottom:532.166667pt;}
.y1b8{bottom:534.166667pt;}
.y258{bottom:538.506667pt;}
.y214{bottom:539.506667pt;}
.y14c{bottom:541.120000pt;}
.y18a{bottom:548.166667pt;}
.y213{bottom:551.506667pt;}
.y1b7{bottom:555.166667pt;}
.y14b{bottom:557.493333pt;}
.y25{bottom:559.160000pt;}
.y212{bottom:563.506667pt;}
.y189{bottom:564.166667pt;}
.ye{bottom:567.826667pt;}
.y129{bottom:571.101156pt;}
.y1b6{bottom:571.500000pt;}
.y14a{bottom:573.493333pt;}
.y211{bottom:575.506667pt;}
.y257{bottom:577.173333pt;}
.y121{bottom:579.988182pt;}
.y188{bottom:580.500000pt;}
.y125{bottom:583.365252pt;}
.y1b5{bottom:587.500000pt;}
.y210{bottom:587.840000pt;}
.y149{bottom:589.493333pt;}
.y46{bottom:594.173333pt;}
.y187{bottom:596.500000pt;}
.y20f{bottom:599.866667pt;}
.y1b4{bottom:603.500000pt;}
.y26{bottom:607.840000pt;}
.y148{bottom:610.160000pt;}
.y20e{bottom:611.866667pt;}
.y186{bottom:612.500000pt;}
.y251{bottom:615.840000pt;}
.y1b3{bottom:619.500000pt;}
.y147{bottom:621.826667pt;}
.y20d{bottom:623.866667pt;}
.y185{bottom:628.500000pt;}
.y1b2{bottom:635.833333pt;}
.y20c{bottom:635.866667pt;}
.y146{bottom:637.826667pt;}
.y11a{bottom:639.319662pt;}
.y11d{bottom:640.225292pt;}
.y184{bottom:644.860000pt;}
.y20b{bottom:648.200000pt;}
.y1b1{bottom:651.860000pt;}
.y145{bottom:653.826667pt;}
.y20a{bottom:660.200000pt;}
.y183{bottom:660.860000pt;}
.y1b0{bottom:667.860000pt;}
.y144{bottom:670.186667pt;}
.y209{bottom:672.200000pt;}
.y182{bottom:676.860000pt;}
.y1af{bottom:684.193333pt;}
.y208{bottom:684.200000pt;}
.y143{bottom:686.186667pt;}
.y181{bottom:692.860000pt;}
.y250{bottom:693.200000pt;}
.y207{bottom:696.533333pt;}
.y1ae{bottom:700.193333pt;}
.y142{bottom:702.186667pt;}
.y10f{bottom:706.370159pt;}
.y206{bottom:708.573333pt;}
.y180{bottom:709.193333pt;}
.y117{bottom:711.008340pt;}
.y1ad{bottom:716.193333pt;}
.y141{bottom:718.186667pt;}
.y205{bottom:720.573333pt;}
.y17f{bottom:725.193333pt;}
.y24e{bottom:731.533333pt;}
.y1ac{bottom:732.193333pt;}
.y204{bottom:732.573333pt;}
.y3a{bottom:733.533333pt;}
.y140{bottom:736.520000pt;}
.y1a{bottom:738.226667pt;}
.y17e{bottom:741.193333pt;}
.y203{bottom:744.573333pt;}
.y1ab{bottom:748.526667pt;}
.y202{bottom:756.906667pt;}
.y17d{bottom:757.566667pt;}
.y1aa{bottom:764.566667pt;}
.y201{bottom:768.906667pt;}
.y24d{bottom:770.226667pt;}
.y12c{bottom:772.489634pt;}
.y17c{bottom:773.566667pt;}
.y1a9{bottom:780.566667pt;}
.y200{bottom:780.906667pt;}
.y17b{bottom:789.566667pt;}
.y1ff{bottom:792.906667pt;}
.y24c{bottom:796.226667pt;}
.y1a8{bottom:796.900000pt;}
.y1fe{bottom:804.906667pt;}
.y17a{bottom:805.566667pt;}
.y1a7{bottom:812.900000pt;}
.y1fd{bottom:817.266667pt;}
.y179{bottom:821.900000pt;}
.yb4{bottom:823.906667pt;}
.y1a6{bottom:828.900000pt;}
.y1fc{bottom:829.266667pt;}
.y178{bottom:837.900000pt;}
.y1fb{bottom:841.266667pt;}
.y1a5{bottom:844.900000pt;}
.y249{bottom:847.573333pt;}
.y1fa{bottom:853.266667pt;}
.y177{bottom:853.900000pt;}
.y1a4{bottom:861.260000pt;}
.y1f9{bottom:865.266667pt;}
.y176{bottom:870.260000pt;}
.y248{bottom:873.266667pt;}
.y1a3{bottom:877.260000pt;}
.y1f8{bottom:877.600000pt;}
.y18{bottom:881.600000pt;}
.y175{bottom:886.260000pt;}
.y1f7{bottom:889.600000pt;}
.y1a2{bottom:893.260000pt;}
.yf{bottom:895.933333pt;}
.y247{bottom:899.266667pt;}
.y1cd{bottom:899.600000pt;}
.y1f6{bottom:901.600000pt;}
.y174{bottom:902.260000pt;}
.y1a1{bottom:909.593333pt;}
.y1cc{bottom:914.266667pt;}
.y173{bottom:920.593333pt;}
.yb3{bottom:920.600000pt;}
.y1a0{bottom:925.593333pt;}
.yb2{bottom:935.266667pt;}
.y245{bottom:937.600000pt;}
.y172{bottom:941.593333pt;}
.y1cb{bottom:948.933333pt;}
.y244{bottom:963.626667pt;}
.yb1{bottom:968.626667pt;}
.y1c9{bottom:973.960000pt;}
.yaf{bottom:989.960000pt;}
.y240{bottom:1002.293333pt;}
.y75{bottom:1057.626667pt;}
.y2{bottom:1072.333333pt;}
.y74{bottom:1074.333333pt;}
.y1{bottom:1090.333333pt;}
.y73{bottom:1091.000000pt;}
.h76{height:2.667969pt;}
.hd{height:3.554688pt;}
.h35{height:3.703125pt;}
.h25{height:4.333333pt;}
.h42{height:4.364583pt;}
.h33{height:4.666667pt;}
.h1b{height:4.700000pt;}
.h9{height:5.000000pt;}
.h26{height:5.335938pt;}
.h23{height:8.729167pt;}
.h53{height:9.790964pt;}
.ha{height:10.671875pt;}
.h1c{height:11.109375pt;}
.h2e{height:12.666667pt;}
.h1d{height:13.093750pt;}
.h1f{height:13.666667pt;}
.h14{height:14.333333pt;}
.h39{height:14.666667pt;}
.h62{height:14.700000pt;}
.h64{height:15.366667pt;}
.h61{height:18.333333pt;}
.h4a{height:24.185627pt;}
.h4e{height:24.398917pt;}
.h54{height:24.409568pt;}
.h6a{height:25.666667pt;}
.h70{height:25.686667pt;}
.h47{height:25.732411pt;}
.h50{height:25.948424pt;}
.h6f{height:26.000000pt;}
.h6d{height:26.033333pt;}
.h4b{height:27.350000pt;}
.h52{height:27.591196pt;}
.h6{height:28.366667pt;}
.h43{height:28.369792pt;}
.h4f{height:28.490960pt;}
.h2c{height:29.000000pt;}
.h3e{height:29.033333pt;}
.h74{height:30.000000pt;}
.h46{height:30.905130pt;}
.h48{height:31.396415pt;}
.h2a{height:32.000000pt;}
.h17{height:32.015625pt;}
.h75{height:32.700000pt;}
.h73{height:32.734375pt;}
.hb{height:34.000000pt;}
.h34{height:34.333333pt;}
.h41{height:34.683594pt;}
.h59{height:34.692708pt;}
.h5b{height:34.746042pt;}
.h10{height:34.916667pt;}
.h2b{height:36.000000pt;}
.h3c{height:36.805030pt;}
.h20{height:37.098958pt;}
.h6e{height:38.333333pt;}
.h6c{height:38.666667pt;}
.h69{height:38.700000pt;}
.h7{height:39.000000pt;}
.h67{height:40.019531pt;}
.h8{height:42.687500pt;}
.h5d{height:43.645833pt;}
.h15{height:43.723958pt;}
.h2{height:44.270833pt;}
.h3{height:44.437500pt;}
.h4d{height:44.564628pt;}
.h1a{height:45.355469pt;}
.h29{height:48.023438pt;}
.h63{height:48.333333pt;}
.h57{height:49.670013pt;}
.h65{height:50.691406pt;}
.h6b{height:51.333333pt;}
.h49{height:52.191389pt;}
.h4c{height:53.031848pt;}
.h30{height:53.359375pt;}
.h31{height:53.403594pt;}
.h27{height:55.700000pt;}
.h28{height:56.000000pt;}
.h3b{height:56.245157pt;}
.h32{height:61.104167pt;}
.h55{height:62.003512pt;}
.h56{height:62.381846pt;}
.h5{height:64.031250pt;}
.h3d{height:64.333333pt;}
.h37{height:69.958333pt;}
.h4{height:71.366667pt;}
.h5f{height:74.062500pt;}
.h13{height:75.260417pt;}
.h24{height:76.333333pt;}
.h71{height:77.366667pt;}
.h12{height:79.687500pt;}
.h5e{height:80.333333pt;}
.h66{height:84.333333pt;}
.h38{height:85.375000pt;}
.h2d{height:87.447917pt;}
.hc{height:96.000000pt;}
.h22{height:96.033333pt;}
.h3f{height:96.686667pt;}
.h2f{height:96.700000pt;}
.h51{height:103.961279pt;}
.hf{height:123.958333pt;}
.h5a{height:128.700000pt;}
.h16{height:143.360000pt;}
.h11{height:172.693333pt;}
.h1e{height:240.733333pt;}
.h21{height:273.733333pt;}
.h19{height:273.760000pt;}
.h44{height:279.066667pt;}
.h3a{height:352.106667pt;}
.h45{height:366.196263pt;}
.h40{height:434.466667pt;}
.h60{height:450.800000pt;}
.h36{height:538.493333pt;}
.h18{height:569.813333pt;}
.h72{height:662.520000pt;}
.h58{height:754.866667pt;}
.he{height:756.866667pt;}
.h68{height:911.600000pt;}
.h5c{height:954.933333pt;}
.h0{height:1121.000000pt;}
.h1{height:1121.333333pt;}
.w20{width:9.850147pt;}
.w25{width:10.669094pt;}
.w15{width:16.666667pt;}
.w19{width:18.000000pt;}
.wb{width:19.000000pt;}
.w7{width:22.033333pt;}
.w29{width:45.000000pt;}
.w5{width:52.666667pt;}
.w6{width:55.666667pt;}
.w12{width:76.033333pt;}
.wf{width:85.033333pt;}
.w2{width:86.700000pt;}
.w2b{width:87.366667pt;}
.w2e{width:92.700000pt;}
.w2c{width:100.033333pt;}
.we{width:102.033333pt;}
.w13{width:103.700000pt;}
.w10{width:113.366667pt;}
.w2d{width:119.400000pt;}
.w21{width:125.066270pt;}
.w24{width:125.083190pt;}
.w1e{width:125.886906pt;}
.w23{width:125.903824pt;}
.w22{width:125.971505pt;}
.w9{width:127.400000pt;}
.wa{width:145.733333pt;}
.w11{width:147.066667pt;}
.w3{width:162.400000pt;}
.w27{width:168.729062pt;}
.w28{width:169.109769pt;}
.w1f{width:174.185853pt;}
.w1b{width:266.106667pt;}
.wd{width:273.133333pt;}
.w2f{width:281.440000pt;}
.w26{width:337.771139pt;}
.wc{width:364.466667pt;}
.w4{width:410.506667pt;}
.w1d{width:413.548623pt;}
.w1c{width:428.173333pt;}
.w8{width:634.573333pt;}
.w2a{width:667.266667pt;}
.w30{width:680.933333pt;}
.w16{width:690.600000pt;}
.w1a{width:694.266667pt;}
.w18{width:695.600000pt;}
.w14{width:707.266667pt;}
.w17{width:712.266667pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x30{left:6.362874pt;}
.x7{left:7.333333pt;}
.x16{left:12.333333pt;}
.x35{left:13.798493pt;}
.x37{left:14.742652pt;}
.xb{left:17.320000pt;}
.x32{left:18.415193pt;}
.x31{left:24.337291pt;}
.x19{left:28.360000pt;}
.x8{left:30.333333pt;}
.x3f{left:31.333333pt;}
.x2e{left:35.598547pt;}
.x22{left:37.333333pt;}
.xc{left:39.333333pt;}
.x2{left:40.700000pt;}
.xa{left:45.333333pt;}
.x1{left:48.033322pt;}
.x39{left:51.078949pt;}
.x3e{left:55.333333pt;}
.x1c{left:57.366667pt;}
.xd{left:58.666667pt;}
.x40{left:64.700000pt;}
.x3{left:79.366667pt;}
.x1e{left:84.699988pt;}
.x3d{left:85.700000pt;}
.x23{left:89.366667pt;}
.xe{left:93.033333pt;}
.xf{left:96.366667pt;}
.x10{left:118.400000pt;}
.x4{left:127.400000pt;}
.x14{left:142.733333pt;}
.x3c{left:147.740000pt;}
.x41{left:152.066667pt;}
.x5{left:155.400000pt;}
.x11{left:223.773333pt;}
.x15{left:227.773333pt;}
.x42{left:252.106667pt;}
.x24{left:271.766667pt;}
.x6{left:289.800000pt;}
.x45{left:310.140000pt;}
.x25{left:323.806667pt;}
.x2b{left:324.800000pt;}
.x2d{left:331.800000pt;}
.x17{left:341.133333pt;}
.x12{left:369.506667pt;}
.x43{left:371.506667pt;}
.x34{left:379.201295pt;}
.x13{left:388.506667pt;}
.x46{left:397.166667pt;}
.x2f{left:405.075790pt;}
.x38{left:406.734822pt;}
.x2c{left:420.840000pt;}
.x18{left:426.173333pt;}
.x29{left:447.866655pt;}
.x44{left:464.200000pt;}
.x3a{left:480.873333pt;}
.x26{left:482.860000pt;}
.x1f{left:521.526667pt;}
.x1d{left:533.573322pt;}
.x33{left:571.137364pt;}
.x1a{left:573.240000pt;}
.x36{left:574.496049pt;}
.x27{left:589.566667pt;}
.x20{left:594.233333pt;}
.x21{left:602.900000pt;}
.x3b{left:619.926667pt;}
.x1b{left:649.266667pt;}
.x28{left:683.940000pt;}
.x9{left:700.306667pt;}
.x2a{left:745.639988pt;}
}




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