
    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_aca56618ee437018a118777b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_146e781e7a3a2b5a1776a31e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.776855;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_8d75ee3520fe6ffba9b75f54.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.077637;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_8fa598f07b4cc86e9959caae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_d1cf35e942a9c18d9ae34ec8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_377d6952c7f2545bdc046e25.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953125;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_036c47e30af044cb066cf7ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_64bc0d534b506ca293a2f6f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_9f149bf369a2bb09f1852501.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_7befa4493a5d49edf1b3b2df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_8991374e5940486d57415898.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6413a533ebf1203b7b93c977.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fa414e46281343d3191e1ff1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257192,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:-91.440000px;}
.v1{vertical-align:-86.400000px;}
.v4{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.ls1e{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078000px;}
.ls1f{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.792000px;}
.ls1a{letter-spacing:11.664000px;}
.ls1b{letter-spacing:15.984000px;}
.ls3{letter-spacing:24.660000px;}
.ls4{letter-spacing:26.640000px;}
.ls16{letter-spacing:28.224000px;}
.ls12{letter-spacing:29.664000px;}
.ls14{letter-spacing:31.104000px;}
.lse{letter-spacing:33.984000px;}
.ls1c{letter-spacing:44.784000px;}
.ls11{letter-spacing:49.824000px;}
.ls21{letter-spacing:61.320000px;}
.ls19{letter-spacing:154.224000px;}
.ls18{letter-spacing:157.824000px;}
.ls10{letter-spacing:159.984000px;}
.lsf{letter-spacing:164.304000px;}
.ls15{letter-spacing:170.784000px;}
.ls13{letter-spacing:172.224000px;}
.ls2{letter-spacing:746.796000px;}
.ls1d{letter-spacing:1227.756000px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(196,89,17),0 0.015em rgb(196,89,17),0.015em 0 rgb(196,89,17),0 -0.015em  rgb(196,89,17);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(196,89,17);text-shadow:none;}
}
.wse{word-spacing:-72.000000px;}
.ws0{word-spacing:-19.728000px;}
.ws9{word-spacing:-18.792000px;}
.wsb{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.272000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.781705px;}
.wsc{word-spacing:-11.700000px;}
.wsf{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._34{margin-left:-13.261318px;}
._4{margin-left:-12.240000px;}
._0{margin-left:-1.728000px;}
._2{width:1.069318px;}
._3{width:2.090762px;}
._1d{width:3.247920px;}
._1c{width:4.608000px;}
._16{width:5.617440px;}
._18{width:6.766560px;}
._17{width:8.352000px;}
._1e{width:9.360000px;}
._a{width:11.016000px;}
._b{width:12.384000px;}
._c{width:13.464000px;}
._12{width:14.808000px;}
._13{width:16.364045px;}
._14{width:19.368000px;}
._6{width:20.376000px;}
._1b{width:22.152000px;}
._5{width:23.184000px;}
._15{width:24.463923px;}
._10{width:25.920000px;}
._f{width:26.928000px;}
._7{width:27.936000px;}
._8{width:29.520000px;}
._20{width:30.528000px;}
._1f{width:31.608000px;}
._19{width:32.616000px;}
._1a{width:33.624000px;}
._11{width:35.074682px;}
._23{width:36.792000px;}
._24{width:37.810682px;}
._25{width:39.910682px;}
._32{width:41.036045px;}
._21{width:42.048000px;}
._22{width:43.704000px;}
._2a{width:46.008000px;}
._33{width:47.232000px;}
._26{width:49.032000px;}
._27{width:50.544000px;}
._e{width:51.624000px;}
._30{width:52.704000px;}
._d{width:53.712000px;}
._35{width:55.164000px;}
._9{width:58.464000px;}
._38{width:60.084000px;}
._36{width:74.592000px;}
._2f{width:80.064000px;}
._2e{width:86.184000px;}
._2b{width:95.112000px;}
._28{width:97.056000px;}
._29{width:98.733363px;}
._2d{width:110.160000px;}
._39{width:126.576000px;}
._2c{width:138.744000px;}
._31{width:233.424000px;}
._37{width:255.960000px;}
._1{width:432.178320px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc5{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs2{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.574479px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.240000px;}
.y9{bottom:3.379349px;}
.y46{bottom:3.600000px;}
.ye4{bottom:4.320000px;}
.y165{bottom:4.350000px;}
.y112{bottom:4.365000px;}
.y53{bottom:4.500000px;}
.y12b{bottom:4.680000px;}
.y40{bottom:4.860000px;}
.ye2{bottom:6.300000px;}
.y4a{bottom:7.920000px;}
.yde{bottom:8.460000px;}
.y195{bottom:8.820000px;}
.yb{bottom:9.000000px;}
.y197{bottom:9.180000px;}
.y19a{bottom:9.360000px;}
.y14b{bottom:12.060000px;}
.y14e{bottom:12.240000px;}
.y52{bottom:12.420000px;}
.y1b7{bottom:14.580000px;}
.y110{bottom:14.760000px;}
.y11{bottom:16.020000px;}
.yd{bottom:19.980000px;}
.y25a{bottom:20.520000px;}
.y25b{bottom:20.700000px;}
.y45{bottom:20.880000px;}
.y147{bottom:21.270000px;}
.yf6{bottom:22.680000px;}
.yf7{bottom:23.040000px;}
.y150{bottom:23.400000px;}
.y1b5{bottom:24.660000px;}
.y1d9{bottom:25.014000px;}
.y10f{bottom:25.020000px;}
.y164{bottom:25.050000px;}
.y12a{bottom:25.380000px;}
.y109{bottom:25.740000px;}
.y175{bottom:25.920000px;}
.y12d{bottom:26.640000px;}
.ye{bottom:26.820000px;}
.yc{bottom:27.000000px;}
.y257{bottom:27.030000px;}
.y10{bottom:27.360000px;}
.y51{bottom:29.520000px;}
.y49{bottom:29.565000px;}
.y7{bottom:34.920000px;}
.y1db{bottom:35.274000px;}
.y1e3{bottom:35.280000px;}
.y10d{bottom:36.225000px;}
.y44{bottom:38.160000px;}
.y146{bottom:41.970000px;}
.y1d8{bottom:45.714000px;}
.y173{bottom:45.720000px;}
.y1df{bottom:45.765000px;}
.y129{bottom:46.080000px;}
.y50{bottom:46.800000px;}
.yf9{bottom:47.160000px;}
.y191{bottom:48.060000px;}
.ye0{bottom:49.320000px;}
.y48{bottom:51.345000px;}
.y43{bottom:55.260000px;}
.y1da{bottom:55.974000px;}
.y255{bottom:60.300000px;}
.y254{bottom:60.660000px;}
.y4f{bottom:64.800000px;}
.y1d7{bottom:66.414000px;}
.y1e2{bottom:66.420000px;}
.y1d3{bottom:66.465000px;}
.y1b3{bottom:66.780000px;}
.yf8{bottom:74.016000px;}
.y170{bottom:77.616000px;}
.y1ff{bottom:78.696000px;}
.y87{bottom:79.416000px;}
.y20c{bottom:82.116000px;}
.y3e{bottom:82.476000px;}
.yc2{bottom:82.836000px;}
.y15a{bottom:84.456000px;}
.y4e{bottom:85.500000px;}
.y22c{bottom:85.896000px;}
.y11d{bottom:86.256000px;}
.y1d6{bottom:87.114000px;}
.y193{bottom:87.165000px;}
.y1b2{bottom:87.516000px;}
.y1dd{bottom:93.636000px;}
.y24a{bottom:94.356000px;}
.y13e{bottom:94.716000px;}
.yfd{bottom:95.436000px;}
.y18f{bottom:95.616000px;}
.y16f{bottom:98.316000px;}
.y1fe{bottom:99.396000px;}
.y86{bottom:100.116000px;}
.ybd{bottom:102.996000px;}
.y3d{bottom:103.176000px;}
.yb1{bottom:103.356000px;}
.y159{bottom:105.516000px;}
.y4d{bottom:105.840000px;}
.y22b{bottom:106.596000px;}
.y11c{bottom:106.956000px;}
.y1b1{bottom:108.216000px;}
.y1dc{bottom:110.736000px;}
.y249{bottom:115.056000px;}
.y13d{bottom:115.416000px;}
.y18e{bottom:116.316000px;}
.yfc{bottom:116.856000px;}
.y16e{bottom:119.016000px;}
.y1fd{bottom:120.096000px;}
.y85{bottom:120.816000px;}
.ybc{bottom:123.696000px;}
.y3c{bottom:123.876000px;}
.yb0{bottom:124.056000px;}
.y158{bottom:126.216000px;}
.y11b{bottom:127.656000px;}
.y1b0{bottom:128.916000px;}
.y4c{bottom:130.320000px;}
.y1d5{bottom:132.336000px;}
.y16d{bottom:135.396000px;}
.y248{bottom:135.756000px;}
.y149{bottom:135.765000px;}
.y13c{bottom:136.116000px;}
.y20b{bottom:136.296000px;}
.y18d{bottom:137.016000px;}
.yfb{bottom:138.456000px;}
.y1fc{bottom:140.796000px;}
.y84{bottom:141.516000px;}
.ycc{bottom:144.396000px;}
.y3b{bottom:144.576000px;}
.yaf{bottom:144.756000px;}
.y157{bottom:146.916000px;}
.y11a{bottom:148.356000px;}
.y1af{bottom:149.616000px;}
.y261{bottom:155.370000px;}
.y13b{bottom:156.810000px;}
.y18c{bottom:158.070000px;}
.yfa{bottom:159.870000px;}
.y22a{bottom:160.770000px;}
.y1fb{bottom:161.850000px;}
.y83{bottom:162.210000px;}
.y201{bottom:165.090000px;}
.y3a{bottom:165.270000px;}
.yae{bottom:165.450000px;}
.y156{bottom:167.610000px;}
.y4b{bottom:168.330000px;}
.y119{bottom:169.050000px;}
.y20a{bottom:169.410000px;}
.y1ae{bottom:170.670000px;}
.y260{bottom:176.070000px;}
.y13a{bottom:177.510000px;}
.y18b{bottom:178.770000px;}
.yf5{bottom:181.290000px;}
.y1fa{bottom:182.550000px;}
.y82{bottom:182.910000px;}
.yd2{bottom:185.790000px;}
.y39{bottom:185.970000px;}
.yad{bottom:186.150000px;}
.y155{bottom:188.310000px;}
.y118{bottom:190.110000px;}
.y1ad{bottom:191.370000px;}
.y25f{bottom:193.350000px;}
.y229{bottom:194.070000px;}
.y139{bottom:198.210000px;}
.y18a{bottom:199.470000px;}
.y209{bottom:202.710000px;}
.y1f9{bottom:203.250000px;}
.y81{bottom:203.610000px;}
.ybb{bottom:206.490000px;}
.y38{bottom:206.670000px;}
.yac{bottom:206.850000px;}
.y154{bottom:209.010000px;}
.y117{bottom:210.810000px;}
.y1ac{bottom:212.070000px;}
.y247{bottom:218.550000px;}
.y138{bottom:218.910000px;}
.y189{bottom:220.170000px;}
.y1f8{bottom:223.950000px;}
.y80{bottom:224.310000px;}
.yf4{bottom:225.390000px;}
.y153{bottom:226.110000px;}
.yd1{bottom:227.190000px;}
.y37{bottom:227.370000px;}
.yab{bottom:227.550000px;}
.y116{bottom:231.510000px;}
.y1ab{bottom:232.770000px;}
.y208{bottom:235.830000px;}
.y1d4{bottom:236.550000px;}
.y246{bottom:239.250000px;}
.y137{bottom:239.610000px;}
.y188{bottom:240.870000px;}
.y1f7{bottom:244.290000px;}
.y7f{bottom:245.010000px;}
.yf3{bottom:246.090000px;}
.ycb{bottom:247.890000px;}
.y36{bottom:248.070000px;}
.yaa{bottom:248.250000px;}
.y115{bottom:252.210000px;}
.y1aa{bottom:253.470000px;}
.y136{bottom:260.310000px;}
.y187{bottom:261.570000px;}
.y152{bottom:262.830000px;}
.y1f6{bottom:264.990000px;}
.y7e{bottom:265.710000px;}
.yf2{bottom:267.150000px;}
.yca{bottom:268.590000px;}
.y35{bottom:268.770000px;}
.ya9{bottom:268.950000px;}
.y114{bottom:272.910000px;}
.y1a9{bottom:274.170000px;}
.y1d2{bottom:278.670000px;}
.y135{bottom:281.010000px;}
.y186{bottom:282.270000px;}
.y1f5{bottom:286.050000px;}
.y7d{bottom:286.410000px;}
.yf1{bottom:287.850000px;}
.yba{bottom:289.290000px;}
.y34{bottom:289.470000px;}
.ya8{bottom:289.650000px;}
.y228{bottom:293.430000px;}
.y113{bottom:293.610000px;}
.y1a8{bottom:294.870000px;}
.y148{bottom:299.730000px;}
.y134{bottom:301.710000px;}
.y25c{bottom:302.790000px;}
.y185{bottom:302.970000px;}
.y1f4{bottom:306.750000px;}
.y7c{bottom:307.110000px;}
.yf0{bottom:308.550000px;}
.y24d{bottom:309.990000px;}
.y33{bottom:310.170000px;}
.ya7{bottom:310.350000px;}
.y10c{bottom:310.710000px;}
.y1a7{bottom:311.250000px;}
.y47{bottom:313.230000px;}
.y245{bottom:322.410000px;}
.y133{bottom:322.770000px;}
.y184{bottom:323.670000px;}
.y227{bottom:326.550000px;}
.y1f3{bottom:327.450000px;}
.y7b{bottom:327.810000px;}
.yef{bottom:329.250000px;}
.y24c{bottom:330.690000px;}
.y32{bottom:330.870000px;}
.ya6{bottom:331.050000px;}
.y111{bottom:332.130000px;}
.y151{bottom:337.215000px;}
.y244{bottom:343.155000px;}
.y132{bottom:343.515000px;}
.y183{bottom:344.415000px;}
.yee{bottom:345.675000px;}
.y1f2{bottom:348.195000px;}
.y7a{bottom:348.555000px;}
.ya5{bottom:351.435000px;}
.y31{bottom:351.615000px;}
.yc1{bottom:351.795000px;}
.y10e{bottom:353.595000px;}
.y207{bottom:355.935000px;}
.y25e{bottom:357.555000px;}
.y226{bottom:359.355000px;}
.y243{bottom:363.495000px;}
.y131{bottom:364.215000px;}
.y182{bottom:365.115000px;}
.y1d1{bottom:366.195000px;}
.y1f1{bottom:368.895000px;}
.y79{bottom:369.255000px;}
.yb9{bottom:372.135000px;}
.y30{bottom:372.315000px;}
.ya4{bottom:372.495000px;}
.y14f{bottom:374.835000px;}
.y42{bottom:379.155000px;}
.y225{bottom:380.055000px;}
.y242{bottom:384.195000px;}
.y130{bottom:384.915000px;}
.y181{bottom:385.815000px;}
.y1d0{bottom:386.895000px;}
.y206{bottom:388.695000px;}
.y1f0{bottom:389.595000px;}
.y78{bottom:389.955000px;}
.yc9{bottom:392.835000px;}
.y2f{bottom:393.015000px;}
.ya3{bottom:393.195000px;}
.y108{bottom:395.895000px;}
.y224{bottom:400.755000px;}
.y12c{bottom:402.015000px;}
.y180{bottom:402.195000px;}
.y241{bottom:404.895000px;}
.y1cf{bottom:407.595000px;}
.y205{bottom:409.755000px;}
.y1ef{bottom:409.935000px;}
.y77{bottom:410.655000px;}
.y25d{bottom:412.275000px;}
.yd8{bottom:413.535000px;}
.y2e{bottom:413.715000px;}
.ya2{bottom:413.895000px;}
.y10b{bottom:417.315000px;}
.y223{bottom:421.815000px;}
.y12f{bottom:424.155000px;}
.y240{bottom:425.955000px;}
.y1ce{bottom:428.655000px;}
.y204{bottom:430.455000px;}
.y1ee{bottom:430.635000px;}
.y76{bottom:431.355000px;}
.yb8{bottom:434.235000px;}
.y2d{bottom:434.415000px;}
.ya1{bottom:434.595000px;}
.y16c{bottom:438.015000px;}
.y10a{bottom:438.735000px;}
.y12e{bottom:446.475000px;}
.y41{bottom:448.815000px;}
.y1cd{bottom:449.355000px;}
.y1ed{bottom:451.155000px;}
.y75{bottom:452.055000px;}
.y222{bottom:454.935000px;}
.ya0{bottom:455.295000px;}
.y16b{bottom:459.075000px;}
.y107{bottom:460.155000px;}
.y203{bottom:463.575000px;}
.y258{bottom:466.995000px;}
.y128{bottom:467.895000px;}
.y1cc{bottom:470.055000px;}
.y14d{bottom:472.035000px;}
.y3f{bottom:472.215000px;}
.y74{bottom:472.755000px;}
.y24b{bottom:475.635000px;}
.y9f{bottom:475.995000px;}
.y16a{bottom:479.775000px;}
.y106{bottom:485.535000px;}
.y221{bottom:488.055000px;}
.y1cb{bottom:490.755000px;}
.y23f{bottom:492.195000px;}
.y1ec{bottom:492.915000px;}
.y73{bottom:493.455000px;}
.yb7{bottom:496.335000px;}
.y9e{bottom:496.695000px;}
.y2c{bottom:499.575000px;}
.y169{bottom:500.475000px;}
.y105{bottom:506.235000px;}
.y14c{bottom:509.475000px;}
.y1ca{bottom:511.455000px;}
.y1eb{bottom:513.615000px;}
.y72{bottom:514.155000px;}
.yb6{bottom:517.035000px;}
.y9d{bottom:517.395000px;}
.y2b{bottom:520.275000px;}
.y168{bottom:521.175000px;}
.y220{bottom:521.355000px;}
.y259{bottom:521.895000px;}
.y23e{bottom:525.315000px;}
.y104{bottom:527.295000px;}
.y1c9{bottom:532.155000px;}
.y1ea{bottom:534.315000px;}
.y71{bottom:534.855000px;}
.y127{bottom:535.395000px;}
.yc8{bottom:537.735000px;}
.y9c{bottom:538.095000px;}
.y166{bottom:538.275000px;}
.y2a{bottom:540.795000px;}
.y14a{bottom:547.095000px;}
.y103{bottom:547.995000px;}
.y1c8{bottom:552.855000px;}
.y21f{bottom:554.475000px;}
.y1e9{bottom:555.015000px;}
.y70{bottom:555.555000px;}
.y126{bottom:556.095000px;}
.yd7{bottom:558.435000px;}
.y9b{bottom:558.795000px;}
.y29{bottom:559.695000px;}
.y102{bottom:568.695000px;}
.y1c7{bottom:573.555000px;}
.y1e8{bottom:575.715000px;}
.y6f{bottom:576.255000px;}
.y125{bottom:576.435000px;}
.y256{bottom:576.615000px;}
.y202{bottom:579.135000px;}
.y9a{bottom:579.495000px;}
.y28{bottom:580.755000px;}
.y167{bottom:581.115000px;}
.y145{bottom:583.815000px;}
.y21e{bottom:587.595000px;}
.y101{bottom:589.395000px;}
.y23d{bottom:591.195000px;}
.y1c6{bottom:594.255000px;}
.y1e7{bottom:596.415000px;}
.y6e{bottom:596.955000px;}
.y124{bottom:597.495000px;}
.yc0{bottom:599.835000px;}
.y99{bottom:600.195000px;}
.y27{bottom:601.095000px;}
.y163{bottom:602.535000px;}
.y100{bottom:610.125000px;}
.y1c5{bottom:611.385000px;}
.y23c{bottom:612.285000px;}
.y1a6{bottom:616.785000px;}
.y1e6{bottom:617.145000px;}
.y6d{bottom:617.685000px;}
.y123{bottom:618.225000px;}
.y26{bottom:620.025000px;}
.y21d{bottom:620.385000px;}
.ybf{bottom:620.565000px;}
.y98{bottom:620.925000px;}
.yff{bottom:630.825000px;}
.y1a5{bottom:637.485000px;}
.y1e5{bottom:637.845000px;}
.y6c{bottom:638.385000px;}
.y122{bottom:638.925000px;}
.y25{bottom:641.085000px;}
.y200{bottom:641.265000px;}
.y97{bottom:641.625000px;}
.y253{bottom:644.145000px;}
.y23b{bottom:645.405000px;}
.y144{bottom:646.845000px;}
.yfe{bottom:647.205000px;}
.y162{bottom:648.645000px;}
.y1c4{bottom:653.505000px;}
.y1a4{bottom:658.545000px;}
.y6b{bottom:659.085000px;}
.y121{bottom:659.625000px;}
.y24{bottom:661.605000px;}
.yc7{bottom:661.965000px;}
.y21c{bottom:662.145000px;}
.y96{bottom:662.325000px;}
.y143{bottom:667.545000px;}
.yed{bottom:669.165000px;}
.y161{bottom:669.345000px;}
.y23a{bottom:678.705000px;}
.y1a3{bottom:679.245000px;}
.y6a{bottom:679.785000px;}
.y120{bottom:680.325000px;}
.y23{bottom:680.505000px;}
.yb5{bottom:682.665000px;}
.y95{bottom:683.025000px;}
.y142{bottom:688.605000px;}
.y160{bottom:690.045000px;}
.yec{bottom:690.225000px;}
.y21b{bottom:695.265000px;}
.y1c3{bottom:695.625000px;}
.y1e4{bottom:696.525000px;}
.y1a2{bottom:699.945000px;}
.y69{bottom:700.485000px;}
.y11f{bottom:701.025000px;}
.y22{bottom:701.565000px;}
.yb4{bottom:703.365000px;}
.y94{bottom:703.725000px;}
.y141{bottom:709.305000px;}
.yeb{bottom:710.925000px;}
.y15f{bottom:711.105000px;}
.y239{bottom:711.825000px;}
.y11e{bottom:717.405000px;}
.y1e1{bottom:717.945000px;}
.y1a1{bottom:720.645000px;}
.y68{bottom:721.185000px;}
.y21{bottom:721.905000px;}
.ydc{bottom:724.065000px;}
.y93{bottom:724.425000px;}
.y21a{bottom:728.385000px;}
.y140{bottom:730.005000px;}
.yea{bottom:731.625000px;}
.y15e{bottom:731.805000px;}
.y20{bottom:740.805000px;}
.y1a0{bottom:741.345000px;}
.y67{bottom:741.885000px;}
.y24e{bottom:744.765000px;}
.y238{bottom:744.945000px;}
.y92{bottom:745.125000px;}
.y13f{bottom:746.385000px;}
.ye9{bottom:752.325000px;}
.y15d{bottom:752.505000px;}
.y219{bottom:761.505000px;}
.y17f{bottom:761.685000px;}
.y1f{bottom:761.865000px;}
.y19f{bottom:762.045000px;}
.y66{bottom:762.585000px;}
.yc6{bottom:765.465000px;}
.y91{bottom:765.825000px;}
.ye8{bottom:773.025000px;}
.y15c{bottom:773.205000px;}
.y237{bottom:777.705000px;}
.y1e{bottom:782.205000px;}
.y17e{bottom:782.385000px;}
.y19e{bottom:782.745000px;}
.y65{bottom:783.285000px;}
.yc5{bottom:786.165000px;}
.y90{bottom:786.525000px;}
.y15b{bottom:789.585000px;}
.ye7{bottom:793.725000px;}
.y218{bottom:794.265000px;}
.y236{bottom:798.765000px;}
.y19d{bottom:799.845000px;}
.y1d{bottom:801.105000px;}
.y1e0{bottom:801.465000px;}
.y252{bottom:803.085000px;}
.y17d{bottom:803.445000px;}
.y64{bottom:803.985000px;}
.y1c2{bottom:804.165000px;}
.yd0{bottom:806.865000px;}
.y8f{bottom:807.225000px;}
.ydf{bottom:810.825000px;}
.y217{bottom:815.325000px;}
.y1c{bottom:822.165000px;}
.y251{bottom:823.785000px;}
.y17c{bottom:824.145000px;}
.y63{bottom:824.685000px;}
.y1c1{bottom:824.865000px;}
.ycf{bottom:827.565000px;}
.y8e{bottom:827.925000px;}
.y19c{bottom:830.445000px;}
.y235{bottom:831.885000px;}
.ye6{bottom:832.245000px;}
.y1b{bottom:842.685000px;}
.y1de{bottom:843.585000px;}
.y17b{bottom:844.845000px;}
.y62{bottom:845.385000px;}
.y1c0{bottom:845.565000px;}
.yd6{bottom:848.265000px;}
.y8d{bottom:848.625000px;}
.ye5{bottom:853.845000px;}
.y192{bottom:861.225000px;}
.y1a{bottom:861.585000px;}
.y234{bottom:864.645000px;}
.y17a{bottom:865.545000px;}
.y61{bottom:866.085000px;}
.y1bf{bottom:866.265000px;}
.y250{bottom:867.345000px;}
.yb3{bottom:868.965000px;}
.y8c{bottom:869.325000px;}
.ye3{bottom:875.310000px;}
.y216{bottom:881.430000px;}
.y19{bottom:882.690000px;}
.y233{bottom:885.390000px;}
.y179{bottom:886.290000px;}
.y60{bottom:886.830000px;}
.y1be{bottom:887.010000px;}
.y24f{bottom:889.350000px;}
.yb2{bottom:889.710000px;}
.y8b{bottom:890.070000px;}
.y19b{bottom:892.590000px;}
.ye1{bottom:896.730000px;}
.y215{bottom:902.130000px;}
.y18{bottom:903.030000px;}
.y232{bottom:906.450000px;}
.y178{bottom:906.990000px;}
.y5f{bottom:907.530000px;}
.y1bd{bottom:907.710000px;}
.ydb{bottom:910.410000px;}
.y8a{bottom:910.770000px;}
.y17{bottom:921.930000px;}
.ydd{bottom:922.290000px;}
.y214{bottom:922.830000px;}
.y199{bottom:923.730000px;}
.y174{bottom:924.090000px;}
.y5e{bottom:927.870000px;}
.y1bc{bottom:928.410000px;}
.yce{bottom:931.110000px;}
.y89{bottom:931.470000px;}
.y231{bottom:939.570000px;}
.y16{bottom:942.630000px;}
.y213{bottom:943.530000px;}
.y177{bottom:945.690000px;}
.y1bb{bottom:949.110000px;}
.y5d{bottom:949.290000px;}
.ycd{bottom:951.810000px;}
.y88{bottom:952.170000px;}
.y198{bottom:955.050000px;}
.y15{bottom:963.330000px;}
.y212{bottom:964.230000px;}
.y176{bottom:967.110000px;}
.y1ba{bottom:969.810000px;}
.yd5{bottom:972.510000px;}
.y230{bottom:972.690000px;}
.y5c{bottom:972.870000px;}
.y211{bottom:984.750000px;}
.y14{bottom:985.290000px;}
.y196{bottom:986.370000px;}
.y172{bottom:988.530000px;}
.y1b9{bottom:990.510000px;}
.yd4{bottom:993.210000px;}
.y5b{bottom:993.570000px;}
.y210{bottom:1005.990000px;}
.y1b8{bottom:1007.790000px;}
.y13{bottom:1013.010000px;}
.yda{bottom:1013.910000px;}
.y5a{bottom:1014.270000px;}
.y194{bottom:1017.690000px;}
.yd9{bottom:1034.610000px;}
.y59{bottom:1034.970000px;}
.y20f{bottom:1039.110000px;}
.y12{bottom:1040.550000px;}
.y190{bottom:1048.290000px;}
.y1b6{bottom:1049.910000px;}
.y171{bottom:1055.310000px;}
.y58{bottom:1055.670000px;}
.y6{bottom:1066.470000px;}
.y22f{bottom:1071.870000px;}
.y20e{bottom:1072.230000px;}
.yc4{bottom:1076.010000px;}
.y57{bottom:1076.370000px;}
.y5{bottom:1084.110000px;}
.y1b4{bottom:1092.030000px;}
.y22e{bottom:1092.930000px;}
.yc3{bottom:1096.710000px;}
.y56{bottom:1097.070000px;}
.y4{bottom:1103.370000px;}
.y20d{bottom:1105.350000px;}
.y8{bottom:1110.098622px;}
.yd3{bottom:1117.410000px;}
.y55{bottom:1117.770000px;}
.y22d{bottom:1126.050000px;}
.y3{bottom:1133.430000px;}
.ybe{bottom:1138.140000px;}
.y54{bottom:1138.500000px;}
.y2{bottom:1150.920000px;}
.y1{bottom:1179.540000px;}
.ya{bottom:1219.140000px;}
.h7{height:15.747476px;}
.h19{height:20.160000px;}
.h1e{height:20.700000px;}
.h1f{height:20.736000px;}
.h28{height:21.420000px;}
.h27{height:21.600000px;}
.h13{height:21.960000px;}
.h1c{height:24.840000px;}
.h36{height:29.880000px;}
.h3a{height:30.060000px;}
.h37{height:30.420000px;}
.h39{height:30.456000px;}
.h38{height:30.600000px;}
.h5{height:31.952109px;}
.h9{height:32.400000px;}
.hd{height:33.120000px;}
.h2b{height:36.000000px;}
.h30{height:36.180000px;}
.h2d{height:36.720000px;}
.h2f{height:36.756000px;}
.h2c{height:36.900000px;}
.h20{height:39.420000px;}
.hc{height:39.667852px;}
.hb{height:40.140000px;}
.h24{height:41.400000px;}
.h31{height:41.436000px;}
.h4{height:41.738906px;}
.h6{height:47.223633px;}
.h1a{height:51.329531px;}
.h8{height:51.704632px;}
.h4a{height:54.000000px;}
.h4d{height:54.036000px;}
.h3{height:54.070312px;}
.he{height:55.792969px;}
.h29{height:58.356000px;}
.h15{height:58.651172px;}
.h2e{height:59.040000px;}
.h17{height:60.226875px;}
.h32{height:62.100000px;}
.h3d{height:62.136000px;}
.h25{height:62.460000px;}
.ha{height:62.964844px;}
.h22{height:63.540000px;}
.h33{height:63.720000px;}
.h34{height:64.440000px;}
.h1b{height:64.546875px;}
.h11{height:65.010937px;}
.h26{height:65.160000px;}
.h16{height:65.196000px;}
.h47{height:66.816000px;}
.h14{height:68.940000px;}
.h12{height:70.664062px;}
.h10{height:72.562500px;}
.h4c{height:72.562506px;}
.h45{height:72.562511px;}
.h48{height:72.562514px;}
.h46{height:72.562517px;}
.h44{height:72.562528px;}
.h43{height:72.562534px;}
.h3e{height:74.704922px;}
.h41{height:74.953125px;}
.h40{height:75.093750px;}
.h2{height:81.105469px;}
.h3f{height:82.800000px;}
.h3b{height:82.836000px;}
.h23{height:84.276000px;}
.hf{height:96.508125px;}
.h3c{height:103.500000px;}
.h21{height:106.560000px;}
.h4e{height:108.720000px;}
.h49{height:108.900000px;}
.h1d{height:110.736000px;}
.h42{height:133.560000px;}
.h18{height:144.180000px;}
.h4b{height:163.470000px;}
.h35{height:186.330000px;}
.h2a{height:283.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:54.360000px;}
.w1d{width:57.600000px;}
.w13{width:58.320000px;}
.wa{width:61.740000px;}
.w7{width:67.500000px;}
.w3e{width:68.796000px;}
.w40{width:70.416000px;}
.w42{width:70.560000px;}
.w43{width:70.596000px;}
.w41{width:70.740000px;}
.w22{width:73.800000px;}
.w2f{width:75.600000px;}
.w11{width:96.696000px;}
.w3{width:103.654343px;}
.we{width:106.560000px;}
.w38{width:109.260000px;}
.w32{width:109.296000px;}
.w23{width:111.636000px;}
.w19{width:126.576000px;}
.w35{width:147.240000px;}
.w29{width:147.276000px;}
.w34{width:153.030000px;}
.w25{width:154.650000px;}
.wc{width:167.070000px;}
.w1b{width:170.850000px;}
.w2e{width:174.780000px;}
.w15{width:181.650000px;}
.w3a{width:182.730000px;}
.w1f{width:186.150000px;}
.w2d{width:190.515000px;}
.w12{width:191.010000px;}
.wf{width:191.730000px;}
.w4{width:193.320000px;}
.w16{width:194.430000px;}
.w14{width:194.970000px;}
.w26{width:204.870000px;}
.wd{width:211.530000px;}
.w20{width:213.870000px;}
.w2b{width:227.370000px;}
.w39{width:229.350000px;}
.w1e{width:233.490000px;}
.w2a{width:240.510000px;}
.w3c{width:241.590000px;}
.w33{width:242.850000px;}
.w1c{width:250.635000px;}
.w30{width:253.650000px;}
.w10{width:254.010000px;}
.w27{width:261.030000px;}
.w9{width:263.595000px;}
.w36{width:264.450000px;}
.w3f{width:273.630000px;}
.w28{width:282.450000px;}
.w17{width:290.730000px;}
.w1a{width:291.810000px;}
.wb{width:299.010000px;}
.w31{width:300.990000px;}
.w24{width:316.110000px;}
.w21{width:320.475000px;}
.w2c{width:329.970000px;}
.w37{width:330.870000px;}
.w8{width:418.755000px;}
.w5{width:442.980000px;}
.w6{width:443.055000px;}
.w3b{width:670.965000px;}
.w3d{width:683.205000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:4.500000px;}
.x15{left:8.100000px;}
.x9{left:9.540000px;}
.x7{left:11.241708px;}
.xa{left:15.120000px;}
.xb{left:22.860000px;}
.x46{left:30.960000px;}
.x44{left:41.400000px;}
.x13{left:49.500000px;}
.x47{left:52.200000px;}
.x41{left:60.840000px;}
.x14{left:77.616000px;}
.x1c{left:121.176000px;}
.x42{left:130.536000px;}
.x2{left:135.035987px;}
.x3e{left:136.475987px;}
.x39{left:142.955987px;}
.x1{left:148.535987px;}
.x3a{left:162.029987px;}
.xe{left:166.889987px;}
.x40{left:171.029987px;}
.x3{left:172.109987px;}
.xd{left:176.429987px;}
.x12{left:177.870000px;}
.x1f{left:180.210000px;}
.x3f{left:183.089987px;}
.x3c{left:189.029987px;}
.x23{left:190.110000px;}
.x26{left:193.350000px;}
.x2a{left:209.550000px;}
.x33{left:211.350000px;}
.x3b{left:216.029987px;}
.x1a{left:242.310000px;}
.xf{left:283.214987px;}
.x36{left:288.795000px;}
.x21{left:317.415000px;}
.x38{left:318.675000px;}
.x28{left:321.915000px;}
.x10{left:327.674987px;}
.x11{left:340.815000px;}
.x3d{left:352.514987px;}
.x1d{left:375.915000px;}
.x43{left:405.075000px;}
.x2f{left:418.215000px;}
.x24{left:427.575000px;}
.x18{left:434.775000px;}
.x35{left:436.755000px;}
.x5{left:446.474987px;}
.x2c{left:451.875000px;}
.x31{left:465.915000px;}
.x1e{left:473.325000px;}
.x45{left:476.205000px;}
.x34{left:511.484987px;}
.x22{left:512.565000px;}
.x6{left:524.082719px;}
.x29{left:536.505000px;}
.x2e{left:546.764987px;}
.x20{left:562.604987px;}
.x2b{left:565.484987px;}
.x37{left:576.645000px;}
.x30{left:578.264987px;}
.x1b{left:591.764987px;}
.x25{left:599.145000px;}
.x19{left:602.565000px;}
.x2d{left:607.245000px;}
.x27{left:619.484987px;}
.x4{left:629.924987px;}
.x8{left:652.212719px;}
.x32{left:657.150000px;}
.xc{left:682.890000px;}
.x48{left:690.270000px;}
.x16{left:695.850000px;}
.x49{left:761.550000px;}
@media print{
.v2{vertical-align:-81.280000pt;}
.v1{vertical-align:-76.800000pt;}
.v4{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:10.368000pt;}
.ls1b{letter-spacing:14.208000pt;}
.ls3{letter-spacing:21.920000pt;}
.ls4{letter-spacing:23.680000pt;}
.ls16{letter-spacing:25.088000pt;}
.ls12{letter-spacing:26.368000pt;}
.ls14{letter-spacing:27.648000pt;}
.lse{letter-spacing:30.208000pt;}
.ls1c{letter-spacing:39.808000pt;}
.ls11{letter-spacing:44.288000pt;}
.ls21{letter-spacing:54.506667pt;}
.ls19{letter-spacing:137.088000pt;}
.ls18{letter-spacing:140.288000pt;}
.ls10{letter-spacing:142.208000pt;}
.lsf{letter-spacing:146.048000pt;}
.ls15{letter-spacing:151.808000pt;}
.ls13{letter-spacing:153.088000pt;}
.ls2{letter-spacing:663.818667pt;}
.ls1d{letter-spacing:1091.338667pt;}
.wse{word-spacing:-64.000000pt;}
.ws0{word-spacing:-17.536000pt;}
.ws9{word-spacing:-16.704000pt;}
.wsb{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.250404pt;}
.wsc{word-spacing:-10.400000pt;}
.wsf{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._34{margin-left:-11.787838pt;}
._4{margin-left:-10.880000pt;}
._0{margin-left:-1.536000pt;}
._2{width:0.950505pt;}
._3{width:1.858455pt;}
._1d{width:2.887040pt;}
._1c{width:4.096000pt;}
._16{width:4.993280pt;}
._18{width:6.014720pt;}
._17{width:7.424000pt;}
._1e{width:8.320000pt;}
._a{width:9.792000pt;}
._b{width:11.008000pt;}
._c{width:11.968000pt;}
._12{width:13.162667pt;}
._13{width:14.545818pt;}
._14{width:17.216000pt;}
._6{width:18.112000pt;}
._1b{width:19.690667pt;}
._5{width:20.608000pt;}
._15{width:21.745710pt;}
._10{width:23.040000pt;}
._f{width:23.936000pt;}
._7{width:24.832000pt;}
._8{width:26.240000pt;}
._20{width:27.136000pt;}
._1f{width:28.096000pt;}
._19{width:28.992000pt;}
._1a{width:29.888000pt;}
._11{width:31.177495pt;}
._23{width:32.704000pt;}
._24{width:33.609495pt;}
._25{width:35.476162pt;}
._32{width:36.476485pt;}
._21{width:37.376000pt;}
._22{width:38.848000pt;}
._2a{width:40.896000pt;}
._33{width:41.984000pt;}
._26{width:43.584000pt;}
._27{width:44.928000pt;}
._e{width:45.888000pt;}
._30{width:46.848000pt;}
._d{width:47.744000pt;}
._35{width:49.034667pt;}
._9{width:51.968000pt;}
._38{width:53.408000pt;}
._36{width:66.304000pt;}
._2f{width:71.168000pt;}
._2e{width:76.608000pt;}
._2b{width:84.544000pt;}
._28{width:86.272000pt;}
._29{width:87.762990pt;}
._2d{width:97.920000pt;}
._39{width:112.512000pt;}
._2c{width:123.328000pt;}
._31{width:207.488000pt;}
._37{width:227.520000pt;}
._1{width:384.158507pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:44.066203pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.880000pt;}
.y9{bottom:3.003866pt;}
.y46{bottom:3.200000pt;}
.ye4{bottom:3.840000pt;}
.y165{bottom:3.866667pt;}
.y112{bottom:3.880000pt;}
.y53{bottom:4.000000pt;}
.y12b{bottom:4.160000pt;}
.y40{bottom:4.320000pt;}
.ye2{bottom:5.600000pt;}
.y4a{bottom:7.040000pt;}
.yde{bottom:7.520000pt;}
.y195{bottom:7.840000pt;}
.yb{bottom:8.000000pt;}
.y197{bottom:8.160000pt;}
.y19a{bottom:8.320000pt;}
.y14b{bottom:10.720000pt;}
.y14e{bottom:10.880000pt;}
.y52{bottom:11.040000pt;}
.y1b7{bottom:12.960000pt;}
.y110{bottom:13.120000pt;}
.y11{bottom:14.240000pt;}
.yd{bottom:17.760000pt;}
.y25a{bottom:18.240000pt;}
.y25b{bottom:18.400000pt;}
.y45{bottom:18.560000pt;}
.y147{bottom:18.906667pt;}
.yf6{bottom:20.160000pt;}
.yf7{bottom:20.480000pt;}
.y150{bottom:20.800000pt;}
.y1b5{bottom:21.920000pt;}
.y1d9{bottom:22.234667pt;}
.y10f{bottom:22.240000pt;}
.y164{bottom:22.266667pt;}
.y12a{bottom:22.560000pt;}
.y109{bottom:22.880000pt;}
.y175{bottom:23.040000pt;}
.y12d{bottom:23.680000pt;}
.ye{bottom:23.840000pt;}
.yc{bottom:24.000000pt;}
.y257{bottom:24.026667pt;}
.y10{bottom:24.320000pt;}
.y51{bottom:26.240000pt;}
.y49{bottom:26.280000pt;}
.y7{bottom:31.040000pt;}
.y1db{bottom:31.354667pt;}
.y1e3{bottom:31.360000pt;}
.y10d{bottom:32.200000pt;}
.y44{bottom:33.920000pt;}
.y146{bottom:37.306667pt;}
.y1d8{bottom:40.634667pt;}
.y173{bottom:40.640000pt;}
.y1df{bottom:40.680000pt;}
.y129{bottom:40.960000pt;}
.y50{bottom:41.600000pt;}
.yf9{bottom:41.920000pt;}
.y191{bottom:42.720000pt;}
.ye0{bottom:43.840000pt;}
.y48{bottom:45.640000pt;}
.y43{bottom:49.120000pt;}
.y1da{bottom:49.754667pt;}
.y255{bottom:53.600000pt;}
.y254{bottom:53.920000pt;}
.y4f{bottom:57.600000pt;}
.y1d7{bottom:59.034667pt;}
.y1e2{bottom:59.040000pt;}
.y1d3{bottom:59.080000pt;}
.y1b3{bottom:59.360000pt;}
.yf8{bottom:65.792000pt;}
.y170{bottom:68.992000pt;}
.y1ff{bottom:69.952000pt;}
.y87{bottom:70.592000pt;}
.y20c{bottom:72.992000pt;}
.y3e{bottom:73.312000pt;}
.yc2{bottom:73.632000pt;}
.y15a{bottom:75.072000pt;}
.y4e{bottom:76.000000pt;}
.y22c{bottom:76.352000pt;}
.y11d{bottom:76.672000pt;}
.y1d6{bottom:77.434667pt;}
.y193{bottom:77.480000pt;}
.y1b2{bottom:77.792000pt;}
.y1dd{bottom:83.232000pt;}
.y24a{bottom:83.872000pt;}
.y13e{bottom:84.192000pt;}
.yfd{bottom:84.832000pt;}
.y18f{bottom:84.992000pt;}
.y16f{bottom:87.392000pt;}
.y1fe{bottom:88.352000pt;}
.y86{bottom:88.992000pt;}
.ybd{bottom:91.552000pt;}
.y3d{bottom:91.712000pt;}
.yb1{bottom:91.872000pt;}
.y159{bottom:93.792000pt;}
.y4d{bottom:94.080000pt;}
.y22b{bottom:94.752000pt;}
.y11c{bottom:95.072000pt;}
.y1b1{bottom:96.192000pt;}
.y1dc{bottom:98.432000pt;}
.y249{bottom:102.272000pt;}
.y13d{bottom:102.592000pt;}
.y18e{bottom:103.392000pt;}
.yfc{bottom:103.872000pt;}
.y16e{bottom:105.792000pt;}
.y1fd{bottom:106.752000pt;}
.y85{bottom:107.392000pt;}
.ybc{bottom:109.952000pt;}
.y3c{bottom:110.112000pt;}
.yb0{bottom:110.272000pt;}
.y158{bottom:112.192000pt;}
.y11b{bottom:113.472000pt;}
.y1b0{bottom:114.592000pt;}
.y4c{bottom:115.840000pt;}
.y1d5{bottom:117.632000pt;}
.y16d{bottom:120.352000pt;}
.y248{bottom:120.672000pt;}
.y149{bottom:120.680000pt;}
.y13c{bottom:120.992000pt;}
.y20b{bottom:121.152000pt;}
.y18d{bottom:121.792000pt;}
.yfb{bottom:123.072000pt;}
.y1fc{bottom:125.152000pt;}
.y84{bottom:125.792000pt;}
.ycc{bottom:128.352000pt;}
.y3b{bottom:128.512000pt;}
.yaf{bottom:128.672000pt;}
.y157{bottom:130.592000pt;}
.y11a{bottom:131.872000pt;}
.y1af{bottom:132.992000pt;}
.y261{bottom:138.106667pt;}
.y13b{bottom:139.386667pt;}
.y18c{bottom:140.506667pt;}
.yfa{bottom:142.106667pt;}
.y22a{bottom:142.906667pt;}
.y1fb{bottom:143.866667pt;}
.y83{bottom:144.186667pt;}
.y201{bottom:146.746667pt;}
.y3a{bottom:146.906667pt;}
.yae{bottom:147.066667pt;}
.y156{bottom:148.986667pt;}
.y4b{bottom:149.626667pt;}
.y119{bottom:150.266667pt;}
.y20a{bottom:150.586667pt;}
.y1ae{bottom:151.706667pt;}
.y260{bottom:156.506667pt;}
.y13a{bottom:157.786667pt;}
.y18b{bottom:158.906667pt;}
.yf5{bottom:161.146667pt;}
.y1fa{bottom:162.266667pt;}
.y82{bottom:162.586667pt;}
.yd2{bottom:165.146667pt;}
.y39{bottom:165.306667pt;}
.yad{bottom:165.466667pt;}
.y155{bottom:167.386667pt;}
.y118{bottom:168.986667pt;}
.y1ad{bottom:170.106667pt;}
.y25f{bottom:171.866667pt;}
.y229{bottom:172.506667pt;}
.y139{bottom:176.186667pt;}
.y18a{bottom:177.306667pt;}
.y209{bottom:180.186667pt;}
.y1f9{bottom:180.666667pt;}
.y81{bottom:180.986667pt;}
.ybb{bottom:183.546667pt;}
.y38{bottom:183.706667pt;}
.yac{bottom:183.866667pt;}
.y154{bottom:185.786667pt;}
.y117{bottom:187.386667pt;}
.y1ac{bottom:188.506667pt;}
.y247{bottom:194.266667pt;}
.y138{bottom:194.586667pt;}
.y189{bottom:195.706667pt;}
.y1f8{bottom:199.066667pt;}
.y80{bottom:199.386667pt;}
.yf4{bottom:200.346667pt;}
.y153{bottom:200.986667pt;}
.yd1{bottom:201.946667pt;}
.y37{bottom:202.106667pt;}
.yab{bottom:202.266667pt;}
.y116{bottom:205.786667pt;}
.y1ab{bottom:206.906667pt;}
.y208{bottom:209.626667pt;}
.y1d4{bottom:210.266667pt;}
.y246{bottom:212.666667pt;}
.y137{bottom:212.986667pt;}
.y188{bottom:214.106667pt;}
.y1f7{bottom:217.146667pt;}
.y7f{bottom:217.786667pt;}
.yf3{bottom:218.746667pt;}
.ycb{bottom:220.346667pt;}
.y36{bottom:220.506667pt;}
.yaa{bottom:220.666667pt;}
.y115{bottom:224.186667pt;}
.y1aa{bottom:225.306667pt;}
.y136{bottom:231.386667pt;}
.y187{bottom:232.506667pt;}
.y152{bottom:233.626667pt;}
.y1f6{bottom:235.546667pt;}
.y7e{bottom:236.186667pt;}
.yf2{bottom:237.466667pt;}
.yca{bottom:238.746667pt;}
.y35{bottom:238.906667pt;}
.ya9{bottom:239.066667pt;}
.y114{bottom:242.586667pt;}
.y1a9{bottom:243.706667pt;}
.y1d2{bottom:247.706667pt;}
.y135{bottom:249.786667pt;}
.y186{bottom:250.906667pt;}
.y1f5{bottom:254.266667pt;}
.y7d{bottom:254.586667pt;}
.yf1{bottom:255.866667pt;}
.yba{bottom:257.146667pt;}
.y34{bottom:257.306667pt;}
.ya8{bottom:257.466667pt;}
.y228{bottom:260.826667pt;}
.y113{bottom:260.986667pt;}
.y1a8{bottom:262.106667pt;}
.y148{bottom:266.426667pt;}
.y134{bottom:268.186667pt;}
.y25c{bottom:269.146667pt;}
.y185{bottom:269.306667pt;}
.y1f4{bottom:272.666667pt;}
.y7c{bottom:272.986667pt;}
.yf0{bottom:274.266667pt;}
.y24d{bottom:275.546667pt;}
.y33{bottom:275.706667pt;}
.ya7{bottom:275.866667pt;}
.y10c{bottom:276.186667pt;}
.y1a7{bottom:276.666667pt;}
.y47{bottom:278.426667pt;}
.y245{bottom:286.586667pt;}
.y133{bottom:286.906667pt;}
.y184{bottom:287.706667pt;}
.y227{bottom:290.266667pt;}
.y1f3{bottom:291.066667pt;}
.y7b{bottom:291.386667pt;}
.yef{bottom:292.666667pt;}
.y24c{bottom:293.946667pt;}
.y32{bottom:294.106667pt;}
.ya6{bottom:294.266667pt;}
.y111{bottom:295.226667pt;}
.y151{bottom:299.746667pt;}
.y244{bottom:305.026667pt;}
.y132{bottom:305.346667pt;}
.y183{bottom:306.146667pt;}
.yee{bottom:307.266667pt;}
.y1f2{bottom:309.506667pt;}
.y7a{bottom:309.826667pt;}
.ya5{bottom:312.386667pt;}
.y31{bottom:312.546667pt;}
.yc1{bottom:312.706667pt;}
.y10e{bottom:314.306667pt;}
.y207{bottom:316.386667pt;}
.y25e{bottom:317.826667pt;}
.y226{bottom:319.426667pt;}
.y243{bottom:323.106667pt;}
.y131{bottom:323.746667pt;}
.y182{bottom:324.546667pt;}
.y1d1{bottom:325.506667pt;}
.y1f1{bottom:327.906667pt;}
.y79{bottom:328.226667pt;}
.yb9{bottom:330.786667pt;}
.y30{bottom:330.946667pt;}
.ya4{bottom:331.106667pt;}
.y14f{bottom:333.186667pt;}
.y42{bottom:337.026667pt;}
.y225{bottom:337.826667pt;}
.y242{bottom:341.506667pt;}
.y130{bottom:342.146667pt;}
.y181{bottom:342.946667pt;}
.y1d0{bottom:343.906667pt;}
.y206{bottom:345.506667pt;}
.y1f0{bottom:346.306667pt;}
.y78{bottom:346.626667pt;}
.yc9{bottom:349.186667pt;}
.y2f{bottom:349.346667pt;}
.ya3{bottom:349.506667pt;}
.y108{bottom:351.906667pt;}
.y224{bottom:356.226667pt;}
.y12c{bottom:357.346667pt;}
.y180{bottom:357.506667pt;}
.y241{bottom:359.906667pt;}
.y1cf{bottom:362.306667pt;}
.y205{bottom:364.226667pt;}
.y1ef{bottom:364.386667pt;}
.y77{bottom:365.026667pt;}
.y25d{bottom:366.466667pt;}
.yd8{bottom:367.586667pt;}
.y2e{bottom:367.746667pt;}
.ya2{bottom:367.906667pt;}
.y10b{bottom:370.946667pt;}
.y223{bottom:374.946667pt;}
.y12f{bottom:377.026667pt;}
.y240{bottom:378.626667pt;}
.y1ce{bottom:381.026667pt;}
.y204{bottom:382.626667pt;}
.y1ee{bottom:382.786667pt;}
.y76{bottom:383.426667pt;}
.yb8{bottom:385.986667pt;}
.y2d{bottom:386.146667pt;}
.ya1{bottom:386.306667pt;}
.y16c{bottom:389.346667pt;}
.y10a{bottom:389.986667pt;}
.y12e{bottom:396.866667pt;}
.y41{bottom:398.946667pt;}
.y1cd{bottom:399.426667pt;}
.y1ed{bottom:401.026667pt;}
.y75{bottom:401.826667pt;}
.y222{bottom:404.386667pt;}
.ya0{bottom:404.706667pt;}
.y16b{bottom:408.066667pt;}
.y107{bottom:409.026667pt;}
.y203{bottom:412.066667pt;}
.y258{bottom:415.106667pt;}
.y128{bottom:415.906667pt;}
.y1cc{bottom:417.826667pt;}
.y14d{bottom:419.586667pt;}
.y3f{bottom:419.746667pt;}
.y74{bottom:420.226667pt;}
.y24b{bottom:422.786667pt;}
.y9f{bottom:423.106667pt;}
.y16a{bottom:426.466667pt;}
.y106{bottom:431.586667pt;}
.y221{bottom:433.826667pt;}
.y1cb{bottom:436.226667pt;}
.y23f{bottom:437.506667pt;}
.y1ec{bottom:438.146667pt;}
.y73{bottom:438.626667pt;}
.yb7{bottom:441.186667pt;}
.y9e{bottom:441.506667pt;}
.y2c{bottom:444.066667pt;}
.y169{bottom:444.866667pt;}
.y105{bottom:449.986667pt;}
.y14c{bottom:452.866667pt;}
.y1ca{bottom:454.626667pt;}
.y1eb{bottom:456.546667pt;}
.y72{bottom:457.026667pt;}
.yb6{bottom:459.586667pt;}
.y9d{bottom:459.906667pt;}
.y2b{bottom:462.466667pt;}
.y168{bottom:463.266667pt;}
.y220{bottom:463.426667pt;}
.y259{bottom:463.906667pt;}
.y23e{bottom:466.946667pt;}
.y104{bottom:468.706667pt;}
.y1c9{bottom:473.026667pt;}
.y1ea{bottom:474.946667pt;}
.y71{bottom:475.426667pt;}
.y127{bottom:475.906667pt;}
.yc8{bottom:477.986667pt;}
.y9c{bottom:478.306667pt;}
.y166{bottom:478.466667pt;}
.y2a{bottom:480.706667pt;}
.y14a{bottom:486.306667pt;}
.y103{bottom:487.106667pt;}
.y1c8{bottom:491.426667pt;}
.y21f{bottom:492.866667pt;}
.y1e9{bottom:493.346667pt;}
.y70{bottom:493.826667pt;}
.y126{bottom:494.306667pt;}
.yd7{bottom:496.386667pt;}
.y9b{bottom:496.706667pt;}
.y29{bottom:497.506667pt;}
.y102{bottom:505.506667pt;}
.y1c7{bottom:509.826667pt;}
.y1e8{bottom:511.746667pt;}
.y6f{bottom:512.226667pt;}
.y125{bottom:512.386667pt;}
.y256{bottom:512.546667pt;}
.y202{bottom:514.786667pt;}
.y9a{bottom:515.106667pt;}
.y28{bottom:516.226667pt;}
.y167{bottom:516.546667pt;}
.y145{bottom:518.946667pt;}
.y21e{bottom:522.306667pt;}
.y101{bottom:523.906667pt;}
.y23d{bottom:525.506667pt;}
.y1c6{bottom:528.226667pt;}
.y1e7{bottom:530.146667pt;}
.y6e{bottom:530.626667pt;}
.y124{bottom:531.106667pt;}
.yc0{bottom:533.186667pt;}
.y99{bottom:533.506667pt;}
.y27{bottom:534.306667pt;}
.y163{bottom:535.586667pt;}
.y100{bottom:542.333333pt;}
.y1c5{bottom:543.453333pt;}
.y23c{bottom:544.253333pt;}
.y1a6{bottom:548.253333pt;}
.y1e6{bottom:548.573333pt;}
.y6d{bottom:549.053333pt;}
.y123{bottom:549.533333pt;}
.y26{bottom:551.133333pt;}
.y21d{bottom:551.453333pt;}
.ybf{bottom:551.613333pt;}
.y98{bottom:551.933333pt;}
.yff{bottom:560.733333pt;}
.y1a5{bottom:566.653333pt;}
.y1e5{bottom:566.973333pt;}
.y6c{bottom:567.453333pt;}
.y122{bottom:567.933333pt;}
.y25{bottom:569.853333pt;}
.y200{bottom:570.013333pt;}
.y97{bottom:570.333333pt;}
.y253{bottom:572.573333pt;}
.y23b{bottom:573.693333pt;}
.y144{bottom:574.973333pt;}
.yfe{bottom:575.293333pt;}
.y162{bottom:576.573333pt;}
.y1c4{bottom:580.893333pt;}
.y1a4{bottom:585.373333pt;}
.y6b{bottom:585.853333pt;}
.y121{bottom:586.333333pt;}
.y24{bottom:588.093333pt;}
.yc7{bottom:588.413333pt;}
.y21c{bottom:588.573333pt;}
.y96{bottom:588.733333pt;}
.y143{bottom:593.373333pt;}
.yed{bottom:594.813333pt;}
.y161{bottom:594.973333pt;}
.y23a{bottom:603.293333pt;}
.y1a3{bottom:603.773333pt;}
.y6a{bottom:604.253333pt;}
.y120{bottom:604.733333pt;}
.y23{bottom:604.893333pt;}
.yb5{bottom:606.813333pt;}
.y95{bottom:607.133333pt;}
.y142{bottom:612.093333pt;}
.y160{bottom:613.373333pt;}
.yec{bottom:613.533333pt;}
.y21b{bottom:618.013333pt;}
.y1c3{bottom:618.333333pt;}
.y1e4{bottom:619.133333pt;}
.y1a2{bottom:622.173333pt;}
.y69{bottom:622.653333pt;}
.y11f{bottom:623.133333pt;}
.y22{bottom:623.613333pt;}
.yb4{bottom:625.213333pt;}
.y94{bottom:625.533333pt;}
.y141{bottom:630.493333pt;}
.yeb{bottom:631.933333pt;}
.y15f{bottom:632.093333pt;}
.y239{bottom:632.733333pt;}
.y11e{bottom:637.693333pt;}
.y1e1{bottom:638.173333pt;}
.y1a1{bottom:640.573333pt;}
.y68{bottom:641.053333pt;}
.y21{bottom:641.693333pt;}
.ydc{bottom:643.613333pt;}
.y93{bottom:643.933333pt;}
.y21a{bottom:647.453333pt;}
.y140{bottom:648.893333pt;}
.yea{bottom:650.333333pt;}
.y15e{bottom:650.493333pt;}
.y20{bottom:658.493333pt;}
.y1a0{bottom:658.973333pt;}
.y67{bottom:659.453333pt;}
.y24e{bottom:662.013333pt;}
.y238{bottom:662.173333pt;}
.y92{bottom:662.333333pt;}
.y13f{bottom:663.453333pt;}
.ye9{bottom:668.733333pt;}
.y15d{bottom:668.893333pt;}
.y219{bottom:676.893333pt;}
.y17f{bottom:677.053333pt;}
.y1f{bottom:677.213333pt;}
.y19f{bottom:677.373333pt;}
.y66{bottom:677.853333pt;}
.yc6{bottom:680.413333pt;}
.y91{bottom:680.733333pt;}
.ye8{bottom:687.133333pt;}
.y15c{bottom:687.293333pt;}
.y237{bottom:691.293333pt;}
.y1e{bottom:695.293333pt;}
.y17e{bottom:695.453333pt;}
.y19e{bottom:695.773333pt;}
.y65{bottom:696.253333pt;}
.yc5{bottom:698.813333pt;}
.y90{bottom:699.133333pt;}
.y15b{bottom:701.853333pt;}
.ye7{bottom:705.533333pt;}
.y218{bottom:706.013333pt;}
.y236{bottom:710.013333pt;}
.y19d{bottom:710.973333pt;}
.y1d{bottom:712.093333pt;}
.y1e0{bottom:712.413333pt;}
.y252{bottom:713.853333pt;}
.y17d{bottom:714.173333pt;}
.y64{bottom:714.653333pt;}
.y1c2{bottom:714.813333pt;}
.yd0{bottom:717.213333pt;}
.y8f{bottom:717.533333pt;}
.ydf{bottom:720.733333pt;}
.y217{bottom:724.733333pt;}
.y1c{bottom:730.813333pt;}
.y251{bottom:732.253333pt;}
.y17c{bottom:732.573333pt;}
.y63{bottom:733.053333pt;}
.y1c1{bottom:733.213333pt;}
.ycf{bottom:735.613333pt;}
.y8e{bottom:735.933333pt;}
.y19c{bottom:738.173333pt;}
.y235{bottom:739.453333pt;}
.ye6{bottom:739.773333pt;}
.y1b{bottom:749.053333pt;}
.y1de{bottom:749.853333pt;}
.y17b{bottom:750.973333pt;}
.y62{bottom:751.453333pt;}
.y1c0{bottom:751.613333pt;}
.yd6{bottom:754.013333pt;}
.y8d{bottom:754.333333pt;}
.ye5{bottom:758.973333pt;}
.y192{bottom:765.533333pt;}
.y1a{bottom:765.853333pt;}
.y234{bottom:768.573333pt;}
.y17a{bottom:769.373333pt;}
.y61{bottom:769.853333pt;}
.y1bf{bottom:770.013333pt;}
.y250{bottom:770.973333pt;}
.yb3{bottom:772.413333pt;}
.y8c{bottom:772.733333pt;}
.ye3{bottom:778.053333pt;}
.y216{bottom:783.493333pt;}
.y19{bottom:784.613333pt;}
.y233{bottom:787.013333pt;}
.y179{bottom:787.813333pt;}
.y60{bottom:788.293333pt;}
.y1be{bottom:788.453333pt;}
.y24f{bottom:790.533333pt;}
.yb2{bottom:790.853333pt;}
.y8b{bottom:791.173333pt;}
.y19b{bottom:793.413333pt;}
.ye1{bottom:797.093333pt;}
.y215{bottom:801.893333pt;}
.y18{bottom:802.693333pt;}
.y232{bottom:805.733333pt;}
.y178{bottom:806.213333pt;}
.y5f{bottom:806.693333pt;}
.y1bd{bottom:806.853333pt;}
.ydb{bottom:809.253333pt;}
.y8a{bottom:809.573333pt;}
.y17{bottom:819.493333pt;}
.ydd{bottom:819.813333pt;}
.y214{bottom:820.293333pt;}
.y199{bottom:821.093333pt;}
.y174{bottom:821.413333pt;}
.y5e{bottom:824.773333pt;}
.y1bc{bottom:825.253333pt;}
.yce{bottom:827.653333pt;}
.y89{bottom:827.973333pt;}
.y231{bottom:835.173333pt;}
.y16{bottom:837.893333pt;}
.y213{bottom:838.693333pt;}
.y177{bottom:840.613333pt;}
.y1bb{bottom:843.653333pt;}
.y5d{bottom:843.813333pt;}
.ycd{bottom:846.053333pt;}
.y88{bottom:846.373333pt;}
.y198{bottom:848.933333pt;}
.y15{bottom:856.293333pt;}
.y212{bottom:857.093333pt;}
.y176{bottom:859.653333pt;}
.y1ba{bottom:862.053333pt;}
.yd5{bottom:864.453333pt;}
.y230{bottom:864.613333pt;}
.y5c{bottom:864.773333pt;}
.y211{bottom:875.333333pt;}
.y14{bottom:875.813333pt;}
.y196{bottom:876.773333pt;}
.y172{bottom:878.693333pt;}
.y1b9{bottom:880.453333pt;}
.yd4{bottom:882.853333pt;}
.y5b{bottom:883.173333pt;}
.y210{bottom:894.213333pt;}
.y1b8{bottom:895.813333pt;}
.y13{bottom:900.453333pt;}
.yda{bottom:901.253333pt;}
.y5a{bottom:901.573333pt;}
.y194{bottom:904.613333pt;}
.yd9{bottom:919.653333pt;}
.y59{bottom:919.973333pt;}
.y20f{bottom:923.653333pt;}
.y12{bottom:924.933333pt;}
.y190{bottom:931.813333pt;}
.y1b6{bottom:933.253333pt;}
.y171{bottom:938.053333pt;}
.y58{bottom:938.373333pt;}
.y6{bottom:947.973333pt;}
.y22f{bottom:952.773333pt;}
.y20e{bottom:953.093333pt;}
.yc4{bottom:956.453333pt;}
.y57{bottom:956.773333pt;}
.y5{bottom:963.653333pt;}
.y1b4{bottom:970.693333pt;}
.y22e{bottom:971.493333pt;}
.yc3{bottom:974.853333pt;}
.y56{bottom:975.173333pt;}
.y4{bottom:980.773333pt;}
.y20d{bottom:982.533333pt;}
.y8{bottom:986.754331pt;}
.yd3{bottom:993.253333pt;}
.y55{bottom:993.573333pt;}
.y22d{bottom:1000.933333pt;}
.y3{bottom:1007.493333pt;}
.ybe{bottom:1011.680000pt;}
.y54{bottom:1012.000000pt;}
.y2{bottom:1023.040000pt;}
.y1{bottom:1048.480000pt;}
.ya{bottom:1083.680000pt;}
.h7{height:13.997756pt;}
.h19{height:17.920000pt;}
.h1e{height:18.400000pt;}
.h1f{height:18.432000pt;}
.h28{height:19.040000pt;}
.h27{height:19.200000pt;}
.h13{height:19.520000pt;}
.h1c{height:22.080000pt;}
.h36{height:26.560000pt;}
.h3a{height:26.720000pt;}
.h37{height:27.040000pt;}
.h39{height:27.072000pt;}
.h38{height:27.200000pt;}
.h5{height:28.401875pt;}
.h9{height:28.800000pt;}
.hd{height:29.440000pt;}
.h2b{height:32.000000pt;}
.h30{height:32.160000pt;}
.h2d{height:32.640000pt;}
.h2f{height:32.672000pt;}
.h2c{height:32.800000pt;}
.h20{height:35.040000pt;}
.hc{height:35.260312pt;}
.hb{height:35.680000pt;}
.h24{height:36.800000pt;}
.h31{height:36.832000pt;}
.h4{height:37.101250pt;}
.h6{height:41.976562pt;}
.h1a{height:45.626250pt;}
.h8{height:45.959673pt;}
.h4a{height:48.000000pt;}
.h4d{height:48.032000pt;}
.h3{height:48.062500pt;}
.he{height:49.593750pt;}
.h29{height:51.872000pt;}
.h15{height:52.134375pt;}
.h2e{height:52.480000pt;}
.h17{height:53.535000pt;}
.h32{height:55.200000pt;}
.h3d{height:55.232000pt;}
.h25{height:55.520000pt;}
.ha{height:55.968750pt;}
.h22{height:56.480000pt;}
.h33{height:56.640000pt;}
.h34{height:57.280000pt;}
.h1b{height:57.375000pt;}
.h11{height:57.787500pt;}
.h26{height:57.920000pt;}
.h16{height:57.952000pt;}
.h47{height:59.392000pt;}
.h14{height:61.280000pt;}
.h12{height:62.812500pt;}
.h10{height:64.500000pt;}
.h4c{height:64.500006pt;}
.h45{height:64.500010pt;}
.h48{height:64.500012pt;}
.h46{height:64.500015pt;}
.h44{height:64.500025pt;}
.h43{height:64.500030pt;}
.h3e{height:66.404375pt;}
.h41{height:66.625000pt;}
.h40{height:66.750000pt;}
.h2{height:72.093750pt;}
.h3f{height:73.600000pt;}
.h3b{height:73.632000pt;}
.h23{height:74.912000pt;}
.hf{height:85.785000pt;}
.h3c{height:92.000000pt;}
.h21{height:94.720000pt;}
.h4e{height:96.640000pt;}
.h49{height:96.800000pt;}
.h1d{height:98.432000pt;}
.h42{height:118.720000pt;}
.h18{height:128.160000pt;}
.h4b{height:145.306667pt;}
.h35{height:165.626667pt;}
.h2a{height:251.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:48.320000pt;}
.w1d{width:51.200000pt;}
.w13{width:51.840000pt;}
.wa{width:54.880000pt;}
.w7{width:60.000000pt;}
.w3e{width:61.152000pt;}
.w40{width:62.592000pt;}
.w42{width:62.720000pt;}
.w43{width:62.752000pt;}
.w41{width:62.880000pt;}
.w22{width:65.600000pt;}
.w2f{width:67.200000pt;}
.w11{width:85.952000pt;}
.w3{width:92.137194pt;}
.we{width:94.720000pt;}
.w38{width:97.120000pt;}
.w32{width:97.152000pt;}
.w23{width:99.232000pt;}
.w19{width:112.512000pt;}
.w35{width:130.880000pt;}
.w29{width:130.912000pt;}
.w34{width:136.026667pt;}
.w25{width:137.466667pt;}
.wc{width:148.506667pt;}
.w1b{width:151.866667pt;}
.w2e{width:155.360000pt;}
.w15{width:161.466667pt;}
.w3a{width:162.426667pt;}
.w1f{width:165.466667pt;}
.w2d{width:169.346667pt;}
.w12{width:169.786667pt;}
.wf{width:170.426667pt;}
.w4{width:171.840000pt;}
.w16{width:172.826667pt;}
.w14{width:173.306667pt;}
.w26{width:182.106667pt;}
.wd{width:188.026667pt;}
.w20{width:190.106667pt;}
.w2b{width:202.106667pt;}
.w39{width:203.866667pt;}
.w1e{width:207.546667pt;}
.w2a{width:213.786667pt;}
.w3c{width:214.746667pt;}
.w33{width:215.866667pt;}
.w1c{width:222.786667pt;}
.w30{width:225.466667pt;}
.w10{width:225.786667pt;}
.w27{width:232.026667pt;}
.w9{width:234.306667pt;}
.w36{width:235.066667pt;}
.w3f{width:243.226667pt;}
.w28{width:251.066667pt;}
.w17{width:258.426667pt;}
.w1a{width:259.386667pt;}
.wb{width:265.786667pt;}
.w31{width:267.546667pt;}
.w24{width:280.986667pt;}
.w21{width:284.866667pt;}
.w2c{width:293.306667pt;}
.w37{width:294.106667pt;}
.w8{width:372.226667pt;}
.w5{width:393.760000pt;}
.w6{width:393.826667pt;}
.w3b{width:596.413333pt;}
.w3d{width:607.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:4.000000pt;}
.x15{left:7.200000pt;}
.x9{left:8.480000pt;}
.x7{left:9.992629pt;}
.xa{left:13.440000pt;}
.xb{left:20.320000pt;}
.x46{left:27.520000pt;}
.x44{left:36.800000pt;}
.x13{left:44.000000pt;}
.x47{left:46.400000pt;}
.x41{left:54.080000pt;}
.x14{left:68.992000pt;}
.x1c{left:107.712000pt;}
.x42{left:116.032000pt;}
.x2{left:120.031988pt;}
.x3e{left:121.311988pt;}
.x39{left:127.071988pt;}
.x1{left:132.031988pt;}
.x3a{left:144.026655pt;}
.xe{left:148.346655pt;}
.x40{left:152.026655pt;}
.x3{left:152.986655pt;}
.xd{left:156.826655pt;}
.x12{left:158.106667pt;}
.x1f{left:160.186667pt;}
.x3f{left:162.746655pt;}
.x3c{left:168.026655pt;}
.x23{left:168.986667pt;}
.x26{left:171.866667pt;}
.x2a{left:186.266667pt;}
.x33{left:187.866667pt;}
.x3b{left:192.026655pt;}
.x1a{left:215.386667pt;}
.xf{left:251.746655pt;}
.x36{left:256.706667pt;}
.x21{left:282.146667pt;}
.x38{left:283.266667pt;}
.x28{left:286.146667pt;}
.x10{left:291.266655pt;}
.x11{left:302.946667pt;}
.x3d{left:313.346655pt;}
.x1d{left:334.146667pt;}
.x43{left:360.066667pt;}
.x2f{left:371.746667pt;}
.x24{left:380.066667pt;}
.x18{left:386.466667pt;}
.x35{left:388.226667pt;}
.x5{left:396.866655pt;}
.x2c{left:401.666667pt;}
.x31{left:414.146667pt;}
.x1e{left:420.733333pt;}
.x45{left:423.293333pt;}
.x34{left:454.653322pt;}
.x22{left:455.613333pt;}
.x6{left:465.851306pt;}
.x29{left:476.893333pt;}
.x2e{left:486.013322pt;}
.x20{left:500.093322pt;}
.x2b{left:502.653322pt;}
.x37{left:512.573333pt;}
.x30{left:514.013322pt;}
.x1b{left:526.013322pt;}
.x25{left:532.573333pt;}
.x19{left:535.613333pt;}
.x2d{left:539.773333pt;}
.x27{left:550.653322pt;}
.x4{left:559.933322pt;}
.x8{left:579.744639pt;}
.x32{left:584.133333pt;}
.xc{left:607.013333pt;}
.x48{left:613.573333pt;}
.x16{left:618.533333pt;}
.x49{left:676.933333pt;}
}




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