
    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_468f039aace95c02bc05fcc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_71e71410ef9059d4a4b72fb6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_784af8b0e15cffe282079c39.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_52198604bc4ed47327132a3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9184534a79b5870026efd345.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d4d52df68fc3549f6c709aea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753418;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_fdeefa808173592cdc5f20a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b1c9f7bd5852b87d60472778.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_ef3bcfe036b20ae8c66d886e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.866699;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_4054cb62dc2a783600be44a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cc969f27841282e787863148.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.856934;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_0fe91aff82112b08a441d32f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.068862px;}
.ls0{letter-spacing:0.069038px;}
.ls2{letter-spacing:0.203617px;}
.ls1{letter-spacing:0.209208px;}
.ls4{letter-spacing:40.017044px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-28.943988px;}
.ws0{word-spacing:-18.069031px;}
.wsb{word-spacing:-18.068855px;}
.wsa{word-spacing:-17.999993px;}
.ws9{word-spacing:-16.559993px;}
.ws7{word-spacing:-15.011994px;}
.ws2{word-spacing:-14.939994px;}
.ws6{word-spacing:-13.499995px;}
.ws4{word-spacing:-13.410715px;}
.ws3{word-spacing:-12.059995px;}
.ws1{word-spacing:-9.719996px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-8.590020px;}
._1{margin-left:-4.191630px;}
._4{margin-left:-2.614686px;}
._3{margin-left:-1.479789px;}
._0{width:1.152887px;}
._7{width:3.019254px;}
._6{width:4.212586px;}
._5{width:5.722108px;}
._a{width:7.164917px;}
._9{width:8.528945px;}
._8{width:9.709400px;}
._b{width:11.681119px;}
._11{width:13.623411px;}
._d{width:14.745505px;}
._13{width:15.974033px;}
._17{width:16.998046px;}
._e{width:19.371852px;}
._c{width:20.376160px;}
._12{width:21.603569px;}
._1b{width:22.736074px;}
._10{width:23.762242px;}
._f{width:24.766640px;}
._16{width:26.157323px;}
._18{width:28.467390px;}
._19{width:30.004288px;}
._15{width:31.706842px;}
._14{width:32.761744px;}
._1c{width:34.038576px;}
._1d{width:35.955552px;}
._1a{width:37.034868px;}
._1e{width:57.197084px;}
.fcf{color:rgb(34,34,34);}
.fcd{color:rgb(0,101,204);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcc{color:rgb(51,51,51);}
.fc6{color:rgb(71,71,71);}
.fc8{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc1{color:rgb(0,0,0);}
.fcb{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(79,129,189);}
.fc9{color:rgb(83,129,53);}
.fce{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fca{color:rgb(0,32,96);}
.fs3{font-size:38.879984px;}
.fs2{font-size:48.239981px;}
.fs4{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y4e{bottom:1.979941px;}
.y49{bottom:2.519951px;}
.y1e{bottom:2.699712px;}
.y2a{bottom:2.879920px;}
.ye2{bottom:3.599651px;}
.yef{bottom:3.599697px;}
.y11b{bottom:3.599831px;}
.y132{bottom:3.599900px;}
.y10e{bottom:3.779793px;}
.y123{bottom:3.779862px;}
.yf7{bottom:3.959747px;}
.y8{bottom:4.319987px;}
.y9{bottom:10.619996px;}
.y7{bottom:27.720000px;}
.y5{bottom:32.039987px;}
.y6{bottom:34.199986px;}
.yc7{bottom:112.319955px;}
.ya2{bottom:114.119954px;}
.ycd{bottom:116.639953px;}
.y48{bottom:119.520000px;}
.y7c{bottom:122.759951px;}
.y190{bottom:124.559950px;}
.y154{bottom:132.299947px;}
.ya1{bottom:136.979945px;}
.ycc{bottom:137.339945px;}
.y7b{bottom:143.459943px;}
.y4d{bottom:144.900000px;}
.y18f{bottom:145.259942px;}
.y1b4{bottom:147.059941px;}
.y1a7{bottom:151.559939px;}
.yc6{bottom:152.999939px;}
.ycb{bottom:158.039937px;}
.ya0{bottom:159.659936px;}
.y4c{bottom:162.539935px;}
.y7a{bottom:164.159934px;}
.y18e{bottom:165.959934px;}
.y179{bottom:166.319933px;}
.y1b3{bottom:167.759933px;}
.y1a6{bottom:172.259931px;}
.y153{bottom:173.699931px;}
.yc5{bottom:175.859930px;}
.y4b{bottom:178.019929px;}
.yca{bottom:178.739929px;}
.y79{bottom:184.859926px;}
.y18d{bottom:186.659925px;}
.y178{bottom:187.019925px;}
.y1a5{bottom:192.959923px;}
.y4a{bottom:194.219922px;}
.y152{bottom:194.399922px;}
.y29{bottom:196.020000px;}
.y1ce{bottom:196.559921px;}
.y9f{bottom:198.359921px;}
.yc4{bottom:198.539921px;}
.yc9{bottom:199.439920px;}
.y78{bottom:205.559918px;}
.y1b2{bottom:206.459917px;}
.y18c{bottom:207.359917px;}
.y177{bottom:207.719917px;}
.y1a4{bottom:213.659915px;}
.y151{bottom:215.099914px;}
.y1cd{bottom:217.259913px;}
.y9e{bottom:219.059912px;}
.yc8{bottom:220.139912px;}
.yc3{bottom:221.399911px;}
.y77{bottom:226.259909px;}
.y47{bottom:226.439909px;}
.y176{bottom:228.419909px;}
.y1a3{bottom:234.359906px;}
.y150{bottom:235.799906px;}
.y9d{bottom:239.759904px;}
.y46{bottom:241.919903px;}
.yc2{bottom:244.079902px;}
.y1b1{bottom:245.159902px;}
.y18b{bottom:246.059902px;}
.y131{bottom:246.600000px;}
.y76{bottom:246.959901px;}
.y175{bottom:249.119900px;}
.y1a2{bottom:255.059898px;}
.y1cc{bottom:255.959898px;}
.y14f{bottom:256.499897px;}
.y45{bottom:257.579897px;}
.y12c{bottom:259.739896px;}
.y9c{bottom:260.459896px;}
.y1b0{bottom:265.859894px;}
.y18a{bottom:266.759893px;}
.yc1{bottom:266.939893px;}
.y75{bottom:267.659893px;}
.y130{bottom:269.279892px;}
.y174{bottom:269.819892px;}
.y44{bottom:273.059891px;}
.y1a1{bottom:275.759890px;}
.y1cb{bottom:276.659889px;}
.y14e{bottom:277.199889px;}
.y12b{bottom:278.819888px;}
.y9b{bottom:281.159888px;}
.y1af{bottom:286.559885px;}
.y189{bottom:287.459885px;}
.y128{bottom:287.639885px;}
.y12f{bottom:288.179885px;}
.y74{bottom:288.359885px;}
.y43{bottom:288.539885px;}
.yc0{bottom:289.619884px;}
.y173{bottom:290.519884px;}
.y1a0{bottom:296.459881px;}
.y12a{bottom:297.719881px;}
.y14d{bottom:297.899881px;}
.y9a{bottom:301.859879px;}
.y42{bottom:304.019878px;}
.y12e{bottom:307.259877px;}
.y188{bottom:308.159877px;}
.y127{bottom:308.339877px;}
.y73{bottom:309.059876px;}
.y172{bottom:311.219876px;}
.ybf{bottom:312.479875px;}
.y1ca{bottom:315.359874px;}
.y129{bottom:316.619873px;}
.y19f{bottom:317.159873px;}
.y14c{bottom:318.599873px;}
.y41{bottom:319.679872px;}
.y99{bottom:322.559871px;}
.y1ae{bottom:325.259870px;}
.y12d{bottom:326.159870px;}
.y28{bottom:328.319869px;}
.y187{bottom:328.859868px;}
.y72{bottom:329.759868px;}
.y171{bottom:331.919867px;}
.y40{bottom:335.159866px;}
.y1c9{bottom:336.059866px;}
.y19e{bottom:337.859865px;}
.y14b{bottom:339.299864px;}
.y122{bottom:342.180000px;}
.y98{bottom:343.259863px;}
.y1ad{bottom:345.959862px;}
.y186{bottom:349.559860px;}
.y71{bottom:350.459860px;}
.y3f{bottom:350.639860px;}
.y170{bottom:352.619859px;}
.y11e{bottom:353.159859px;}
.y126{bottom:355.319858px;}
.ybe{bottom:358.019857px;}
.y19d{bottom:358.559857px;}
.y14a{bottom:359.999856px;}
.y121{bottom:364.859854px;}
.y3e{bottom:366.119854px;}
.y70{bottom:371.159852px;}
.y16f{bottom:373.319851px;}
.y11d{bottom:373.859850px;}
.y125{bottom:374.399850px;}
.y1c8{bottom:374.759850px;}
.y19c{bottom:379.259848px;}
.ybd{bottom:380.699848px;}
.y3d{bottom:381.779847px;}
.y97{bottom:381.959847px;}
.y120{bottom:383.759846px;}
.y1ac{bottom:384.659846px;}
.y185{bottom:388.259845px;}
.y6f{bottom:391.859843px;}
.y124{bottom:393.299843px;}
.y16e{bottom:394.019842px;}
.y11c{bottom:394.559842px;}
.y1c7{bottom:395.459842px;}
.y3c{bottom:397.259841px;}
.y19b{bottom:399.959840px;}
.y96{bottom:402.659839px;}
.y11f{bottom:402.839839px;}
.ybc{bottom:403.559839px;}
.y6e{bottom:412.559835px;}
.y3b{bottom:412.739835px;}
.y1c6{bottom:416.159834px;}
.y149{bottom:416.339833px;}
.y11a{bottom:418.860000px;}
.y19a{bottom:420.659832px;}
.y95{bottom:423.359831px;}
.y184{bottom:424.079830px;}
.ybb{bottom:426.239830px;}
.y3a{bottom:428.219829px;}
.y16d{bottom:429.659828px;}
.y118{bottom:431.999827px;}
.y6d{bottom:433.259827px;}
.y1c5{bottom:436.859825px;}
.y148{bottom:437.039825px;}
.y111{bottom:439.199824px;}
.y199{bottom:441.359823px;}
.y114{bottom:441.539823px;}
.y27{bottom:441.899823px;}
.y39{bottom:443.879822px;}
.y94{bottom:444.059822px;}
.y183{bottom:444.779822px;}
.yba{bottom:449.099820px;}
.y16c{bottom:450.359820px;}
.y117{bottom:451.079820px;}
.y6c{bottom:453.959818px;}
.y147{bottom:457.739817px;}
.y38{bottom:459.359816px;}
.y110{bottom:459.899816px;}
.y113{bottom:460.439816px;}
.y198{bottom:462.059815px;}
.y93{bottom:464.759814px;}
.y182{bottom:465.479814px;}
.y116{bottom:469.979812px;}
.y16b{bottom:471.059812px;}
.yb9{bottom:471.779811px;}
.y6b{bottom:474.659810px;}
.y1c4{bottom:475.559810px;}
.y146{bottom:478.439809px;}
.y112{bottom:479.519808px;}
.y10f{bottom:480.599808px;}
.y197{bottom:482.759807px;}
.y92{bottom:485.459806px;}
.y181{bottom:486.179806px;}
.y115{bottom:488.879804px;}
.y16a{bottom:491.759803px;}
.y26{bottom:492.659803px;}
.y37{bottom:492.839803px;}
.yb8{bottom:494.639802px;}
.y6a{bottom:495.359802px;}
.y1c3{bottom:496.259801px;}
.y119{bottom:498.419801px;}
.y145{bottom:499.139800px;}
.y196{bottom:503.459799px;}
.y91{bottom:506.159798px;}
.y25{bottom:506.339797px;}
.y180{bottom:506.879797px;}
.y36{bottom:508.319797px;}
.y169{bottom:512.459795px;}
.y10d{bottom:514.440000px;}
.y69{bottom:516.059794px;}
.yb7{bottom:517.319793px;}
.y144{bottom:519.839792px;}
.y24{bottom:520.019792px;}
.y35{bottom:523.979790px;}
.y1ab{bottom:524.159790px;}
.y90{bottom:526.859789px;}
.y10b{bottom:527.579789px;}
.y23{bottom:532.439787px;}
.y168{bottom:533.159787px;}
.y1c2{bottom:534.959786px;}
.y68{bottom:536.759785px;}
.y106{bottom:537.119785px;}
.y34{bottom:539.459784px;}
.yb6{bottom:540.179784px;}
.y143{bottom:540.539784px;}
.y195{bottom:542.159783px;}
.y102{bottom:544.319782px;}
.y10a{bottom:546.659781px;}
.y8f{bottom:547.559781px;}
.y17f{bottom:548.279781px;}
.y167{bottom:553.859778px;}
.y33{bottom:554.939778px;}
.y1c1{bottom:555.659778px;}
.y105{bottom:556.019778px;}
.y67{bottom:557.459777px;}
.y142{bottom:561.239776px;}
.yb5{bottom:562.859775px;}
.y101{bottom:565.019774px;}
.y109{bottom:565.559774px;}
.y8e{bottom:568.259773px;}
.y17e{bottom:568.979772px;}
.y32{bottom:570.419772px;}
.y166{bottom:574.559770px;}
.y104{bottom:575.099770px;}
.y66{bottom:578.159769px;}
.y141{bottom:581.939767px;}
.y22{bottom:582.299767px;}
.y194{bottom:583.559767px;}
.y108{bottom:584.639766px;}
.yb4{bottom:585.719766px;}
.y31{bottom:586.079766px;}
.y17d{bottom:589.679764px;}
.y103{bottom:593.999762px;}
.y1c0{bottom:594.359762px;}
.y165{bottom:595.259762px;}
.y65{bottom:598.859760px;}
.y140{bottom:602.639759px;}
.y107{bottom:603.539759px;}
.y193{bottom:604.259758px;}
.y8d{bottom:606.959757px;}
.y17c{bottom:610.379756px;}
.y30{bottom:610.559756px;}
.y10c{bottom:613.079755px;}
.y1bf{bottom:615.059754px;}
.y164{bottom:615.959754px;}
.y64{bottom:619.559752px;}
.y1aa{bottom:622.259751px;}
.y13f{bottom:623.339751px;}
.y192{bottom:624.959750px;}
.y2f{bottom:626.039750px;}
.yb3{bottom:626.399749px;}
.yf6{bottom:629.100000px;}
.y17b{bottom:631.079748px;}
.y21{bottom:631.979747px;}
.yf5{bottom:633.059747px;}
.y1be{bottom:635.759746px;}
.y100{bottom:637.919745px;}
.y63{bottom:640.259744px;}
.y2e{bottom:641.519743px;}
.y1a9{bottom:642.959743px;}
.y8c{bottom:645.659742px;}
.y20{bottom:645.839742px;}
.yfb{bottom:647.459741px;}
.yb2{bottom:649.259740px;}
.y163{bottom:651.779739px;}
.yf4{bottom:653.759738px;}
.yff{bottom:656.819737px;}
.y2d{bottom:657.179737px;}
.y13e{bottom:658.979736px;}
.y62{bottom:660.959736px;}
.y1a8{bottom:663.659735px;}
.y8b{bottom:666.359733px;}
.y17a{bottom:666.719733px;}
.yb1{bottom:671.939731px;}
.y2c{bottom:672.659731px;}
.yf3{bottom:674.459730px;}
.yfe{bottom:675.899730px;}
.y13d{bottom:679.679728px;}
.y61{bottom:681.659727px;}
.yfa{bottom:685.259726px;}
.y8a{bottom:687.059725px;}
.y162{bottom:687.419725px;}
.y2b{bottom:688.139725px;}
.y1f{bottom:689.399724px;}
.yb0{bottom:694.799722px;}
.yf2{bottom:695.159722px;}
.y13c{bottom:700.379720px;}
.y60{bottom:702.359719px;}
.yf9{bottom:704.339718px;}
.y89{bottom:707.759717px;}
.y161{bottom:708.119717px;}
.yfd{bottom:713.879714px;}
.yf1{bottom:715.859714px;}
.yaf{bottom:717.479713px;}
.y1d{bottom:717.840000px;}
.y1c{bottom:720.539712px;}
.y13b{bottom:721.079712px;}
.y5f{bottom:723.059711px;}
.yf8{bottom:723.239711px;}
.y88{bottom:728.459709px;}
.y160{bottom:728.819708px;}
.yfc{bottom:732.779707px;}
.yf0{bottom:736.559705px;}
.yae{bottom:740.339704px;}
.y17{bottom:740.879704px;}
.y13a{bottom:741.779703px;}
.y5e{bottom:743.759702px;}
.y87{bottom:749.159700px;}
.y15f{bottom:749.519700px;}
.yee{bottom:754.020000px;}
.y1bd{bottom:754.559698px;}
.y16{bottom:758.159697px;}
.y139{bottom:762.479695px;}
.yad{bottom:763.019695px;}
.y5d{bottom:764.459694px;}
.ye8{bottom:767.159693px;}
.y86{bottom:769.859692px;}
.y15e{bottom:770.219692px;}
.y1bc{bottom:775.259690px;}
.y15{bottom:775.439690px;}
.yed{bottom:776.699689px;}
.y138{bottom:783.179687px;}
.y5c{bottom:785.159686px;}
.yac{bottom:785.879686px;}
.ye7{bottom:786.059686px;}
.y191{bottom:787.859685px;}
.y15d{bottom:790.919684px;}
.y14{bottom:792.719683px;}
.yec{bottom:795.599682px;}
.y1bb{bottom:795.959682px;}
.y137{bottom:803.879678px;}
.ye3{bottom:804.599678px;}
.ye6{bottom:805.139678px;}
.y5b{bottom:805.859678px;}
.y85{bottom:808.559677px;}
.y13{bottom:809.999676px;}
.y15c{bottom:811.619675px;}
.yeb{bottom:814.679674px;}
.ye5{bottom:824.039670px;}
.y136{bottom:824.579670px;}
.y5a{bottom:826.559669px;}
.y12{bottom:827.279669px;}
.y84{bottom:829.259668px;}
.y15b{bottom:832.319667px;}
.yea{bottom:833.579667px;}
.y1ba{bottom:834.659666px;}
.ye4{bottom:843.119663px;}
.y11{bottom:844.379662px;}
.y135{bottom:845.279662px;}
.y59{bottom:847.259661px;}
.yab{bottom:849.419660px;}
.y83{bottom:849.959660px;}
.ye9{bottom:852.479659px;}
.y15a{bottom:853.019659px;}
.y1b9{bottom:855.359658px;}
.y10{bottom:861.659655px;}
.y134{bottom:865.979654px;}
.y58{bottom:867.959653px;}
.ye1{bottom:868.680000px;}
.y82{bottom:870.659652px;}
.yaa{bottom:872.099651px;}
.y159{bottom:873.719651px;}
.ydf{bottom:881.819647px;}
.ye{bottom:887.939645px;}
.yd6{bottom:888.119645px;}
.y57{bottom:888.659645px;}
.yda{bottom:891.179644px;}
.y81{bottom:891.359643px;}
.yf{bottom:893.159643px;}
.y1b8{bottom:894.059642px;}
.y158{bottom:894.419642px;}
.ya9{bottom:894.959642px;}
.yde{bottom:900.719640px;}
.yc{bottom:905.219638px;}
.y133{bottom:906.839637px;}
.yd5{bottom:908.819636px;}
.y56{bottom:909.359636px;}
.yd9{bottom:910.259636px;}
.yd{bottom:910.439636px;}
.y80{bottom:912.059635px;}
.y1b7{bottom:914.759634px;}
.y157{bottom:915.119634px;}
.ya8{bottom:917.639633px;}
.ydd{bottom:919.619632px;}
.yd8{bottom:929.159628px;}
.yd4{bottom:929.519628px;}
.y55{bottom:930.059628px;}
.y7f{bottom:932.759627px;}
.y1b6{bottom:935.459626px;}
.y156{bottom:935.819626px;}
.ydc{bottom:938.699625px;}
.ya7{bottom:940.499624px;}
.yb{bottom:941.219624px;}
.yd7{bottom:948.239621px;}
.yd3{bottom:950.219620px;}
.y54{bottom:950.759620px;}
.y7e{bottom:953.459619px;}
.y155{bottom:956.519617px;}
.ydb{bottom:957.599617px;}
.ya{bottom:961.919615px;}
.ya6{bottom:963.179615px;}
.ye0{bottom:967.139613px;}
.y53{bottom:971.459611px;}
.y7d{bottom:974.159610px;}
.ya5{bottom:986.039606px;}
.yd0{bottom:987.479605px;}
.y52{bottom:992.159603px;}
.y1b5{bottom:994.859602px;}
.yd2{bottom:997.919601px;}
.yce{bottom:1008.179597px;}
.y1a{bottom:1008.539597px;}
.ya4{bottom:1008.719597px;}
.y51{bottom:1012.859595px;}
.yd1{bottom:1018.619593px;}
.y19{bottom:1025.819590px;}
.ycf{bottom:1028.879588px;}
.ya3{bottom:1031.579587px;}
.y50{bottom:1033.559587px;}
.y4f{bottom:1054.259578px;}
.y18{bottom:1070.099572px;}
.y1b{bottom:1078.559569px;}
.y4{bottom:1110.059556px;}
.y3{bottom:1114.019554px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h11{height:13.320000px;}
.hc{height:13.680000px;}
.h13{height:14.040000px;}
.h14{height:14.760000px;}
.h17{height:18.360000px;}
.h19{height:18.540000px;}
.h18{height:20.160000px;}
.h5{height:20.520000px;}
.h8{height:26.350302px;}
.hd{height:32.693893px;}
.hf{height:32.717448px;}
.h4{height:33.518307px;}
.he{height:35.143580px;}
.h15{height:35.991197px;}
.h10{height:37.520493px;}
.h12{height:39.339828px;}
.h6{height:39.830258px;}
.h3{height:40.501390px;}
.ha{height:40.793187px;}
.h1{height:41.522679px;}
.h1a{height:43.506897px;}
.h9{height:43.536076px;}
.h16{height:46.025138px;}
.hb{height:47.988262px;}
.h7{height:48.796855px;}
.h2{height:50.027324px;}
.h0{height:1188.000000px;}
.w4{width:3.060000px;}
.w7{width:4.500000px;}
.w3{width:4.860000px;}
.w5{width:5.940000px;}
.w1{width:6.840000px;}
.wa{width:7.920000px;}
.wc{width:8.280000px;}
.wf{width:9.000000px;}
.w2{width:14.760000px;}
.w12{width:54.000000px;}
.we{width:55.980000px;}
.w8{width:61.560000px;}
.wd{width:64.080000px;}
.w10{width:74.340000px;}
.w11{width:78.840000px;}
.w13{width:81.540000px;}
.w14{width:94.320000px;}
.wb{width:135.180000px;}
.w6{width:167.580000px;}
.w9{width:264.060000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x27{left:45.179982px;}
.x25{left:46.979981px;}
.x22{left:55.619978px;}
.x28{left:60.299976px;}
.x4{left:61.559975px;}
.x24{left:63.899914px;}
.x23{left:65.879974px;}
.x5{left:88.739965px;}
.x26{left:97.199961px;}
.x1{left:107.999957px;}
.x9{left:118.979200px;}
.x3b{left:126.719949px;}
.x4c{left:128.159949px;}
.x4d{left:133.739947px;}
.x52{left:134.999946px;}
.x3a{left:137.159945px;}
.x45{left:138.239945px;}
.x47{left:141.299943px;}
.x48{left:142.739943px;}
.x44{left:144.359942px;}
.x4e{left:146.699941px;}
.x17{left:150.661243px;}
.x49{left:152.819939px;}
.x32{left:154.799938px;}
.x50{left:156.239938px;}
.x39{left:159.659936px;}
.x3c{left:160.739936px;}
.x31{left:161.999948px;}
.x46{left:163.799934px;}
.x29{left:174.419930px;}
.x2a{left:178.920000px;}
.x16{left:181.619927px;}
.x20{left:192.240000px;}
.x18{left:202.681234px;}
.x21{left:215.099914px;}
.xa{left:216.359913px;}
.x2c{left:218.160000px;}
.x13{left:222.839911px;}
.x1c{left:237.959905px;}
.x1b{left:250.739900px;}
.x3d{left:260.099896px;}
.x33{left:263.519895px;}
.x2b{left:269.099892px;}
.x8{left:284.759886px;}
.x14{left:293.039277px;}
.x2{left:302.579879px;}
.x15{left:314.099874px;}
.xb{left:326.879869px;}
.xc{left:336.599865px;}
.x19{left:354.961011px;}
.x3e{left:377.099849px;}
.x11{left:380.700512px;}
.x2d{left:385.920000px;}
.x34{left:389.339844px;}
.x2e{left:390.420000px;}
.x1d{left:412.559835px;}
.x2f{left:451.980000px;}
.x1a{left:459.000992px;}
.xd{left:502.739799px;}
.xe{left:512.459795px;}
.x1e{left:513.899794px;}
.x3f{left:515.339734px;}
.x12{left:527.399789px;}
.x35{left:542.699783px;}
.x36{left:553.319779px;}
.x4b{left:594.180000px;}
.x4f{left:596.880000px;}
.x40{left:650.520000px;}
.x41{left:674.819730px;}
.x37{left:677.879729px;}
.x3{left:681.659727px;}
.xf{left:685.619726px;}
.x1f{left:687.959634px;}
.x10{left:697.859721px;}
.x38{left:700.739720px;}
.x30{left:716.040000px;}
.x43{left:730.800000px;}
.x42{left:738.900000px;}
.x4a{left:749.160000px;}
.x51{left:769.140000px;}
.x6{left:840.959664px;}
.x7{left:867.960000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.061211pt;}
.ls0{letter-spacing:0.061367pt;}
.ls2{letter-spacing:0.180993pt;}
.ls1{letter-spacing:0.185962pt;}
.ls4{letter-spacing:35.570706pt;}
.ws5{word-spacing:-25.727990pt;}
.ws0{word-spacing:-16.061361pt;}
.wsb{word-spacing:-16.061204pt;}
.wsa{word-spacing:-15.999994pt;}
.ws9{word-spacing:-14.719994pt;}
.ws7{word-spacing:-13.343995pt;}
.ws2{word-spacing:-13.279995pt;}
.ws6{word-spacing:-11.999995pt;}
.ws4{word-spacing:-11.920635pt;}
.ws3{word-spacing:-10.719996pt;}
.ws1{word-spacing:-8.639997pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-7.635573pt;}
._1{margin-left:-3.725894pt;}
._4{margin-left:-2.324165pt;}
._3{margin-left:-1.315368pt;}
._0{width:1.024788pt;}
._7{width:2.683781pt;}
._6{width:3.744521pt;}
._5{width:5.086318pt;}
._a{width:6.368815pt;}
._9{width:7.581284pt;}
._8{width:8.630578pt;}
._b{width:10.383217pt;}
._11{width:12.109698pt;}
._d{width:13.107115pt;}
._13{width:14.199141pt;}
._17{width:15.109375pt;}
._e{width:17.219424pt;}
._c{width:18.112142pt;}
._12{width:19.203173pt;}
._1b{width:20.209844pt;}
._10{width:21.121993pt;}
._f{width:22.014791pt;}
._16{width:23.250954pt;}
._18{width:25.304347pt;}
._19{width:26.670478pt;}
._15{width:28.183860pt;}
._14{width:29.121550pt;}
._1c{width:30.256512pt;}
._1d{width:31.960490pt;}
._1a{width:32.919883pt;}
._1e{width:50.841853pt;}
.fs3{font-size:34.559986pt;}
.fs2{font-size:42.879983pt;}
.fs4{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:1.759948pt;}
.y49{bottom:2.239957pt;}
.y1e{bottom:2.399744pt;}
.y2a{bottom:2.559929pt;}
.ye2{bottom:3.199690pt;}
.yef{bottom:3.199731pt;}
.y11b{bottom:3.199850pt;}
.y132{bottom:3.199911pt;}
.y10e{bottom:3.359816pt;}
.y123{bottom:3.359877pt;}
.yf7{bottom:3.519775pt;}
.y8{bottom:3.839989pt;}
.y9{bottom:9.439996pt;}
.y7{bottom:24.640000pt;}
.y5{bottom:28.479989pt;}
.y6{bottom:30.399988pt;}
.yc7{bottom:99.839960pt;}
.ya2{bottom:101.439959pt;}
.ycd{bottom:103.679959pt;}
.y48{bottom:106.240000pt;}
.y7c{bottom:109.119956pt;}
.y190{bottom:110.719956pt;}
.y154{bottom:117.599953pt;}
.ya1{bottom:121.759951pt;}
.ycc{bottom:122.079951pt;}
.y7b{bottom:127.519949pt;}
.y4d{bottom:128.800000pt;}
.y18f{bottom:129.119948pt;}
.y1b4{bottom:130.719948pt;}
.y1a7{bottom:134.719946pt;}
.yc6{bottom:135.999946pt;}
.ycb{bottom:140.479944pt;}
.ya0{bottom:141.919943pt;}
.y4c{bottom:144.479942pt;}
.y7a{bottom:145.919942pt;}
.y18e{bottom:147.519941pt;}
.y179{bottom:147.839941pt;}
.y1b3{bottom:149.119940pt;}
.y1a6{bottom:153.119939pt;}
.y153{bottom:154.399938pt;}
.yc5{bottom:156.319937pt;}
.y4b{bottom:158.239937pt;}
.yca{bottom:158.879936pt;}
.y79{bottom:164.319934pt;}
.y18d{bottom:165.919934pt;}
.y178{bottom:166.239934pt;}
.y1a5{bottom:171.519931pt;}
.y4a{bottom:172.639931pt;}
.y152{bottom:172.799931pt;}
.y29{bottom:174.240000pt;}
.y1ce{bottom:174.719930pt;}
.y9f{bottom:176.319929pt;}
.yc4{bottom:176.479929pt;}
.yc9{bottom:177.279929pt;}
.y78{bottom:182.719927pt;}
.y1b2{bottom:183.519927pt;}
.y18c{bottom:184.319926pt;}
.y177{bottom:184.639926pt;}
.y1a4{bottom:189.919924pt;}
.y151{bottom:191.199924pt;}
.y1cd{bottom:193.119923pt;}
.y9e{bottom:194.719922pt;}
.yc8{bottom:195.679922pt;}
.yc3{bottom:196.799921pt;}
.y77{bottom:201.119920pt;}
.y47{bottom:201.279919pt;}
.y176{bottom:203.039919pt;}
.y1a3{bottom:208.319917pt;}
.y150{bottom:209.599916pt;}
.y9d{bottom:213.119915pt;}
.y46{bottom:215.039914pt;}
.yc2{bottom:216.959913pt;}
.y1b1{bottom:217.919913pt;}
.y18b{bottom:218.719913pt;}
.y131{bottom:219.200000pt;}
.y76{bottom:219.519912pt;}
.y175{bottom:221.439911pt;}
.y1a2{bottom:226.719909pt;}
.y1cc{bottom:227.519909pt;}
.y14f{bottom:227.999909pt;}
.y45{bottom:228.959908pt;}
.y12c{bottom:230.879908pt;}
.y9c{bottom:231.519907pt;}
.y1b0{bottom:236.319905pt;}
.y18a{bottom:237.119905pt;}
.yc1{bottom:237.279905pt;}
.y75{bottom:237.919905pt;}
.y130{bottom:239.359904pt;}
.y174{bottom:239.839904pt;}
.y44{bottom:242.719903pt;}
.y1a1{bottom:245.119902pt;}
.y1cb{bottom:245.919902pt;}
.y14e{bottom:246.399901pt;}
.y12b{bottom:247.839901pt;}
.y9b{bottom:249.919900pt;}
.y1af{bottom:254.719898pt;}
.y189{bottom:255.519898pt;}
.y128{bottom:255.679898pt;}
.y12f{bottom:256.159898pt;}
.y74{bottom:256.319897pt;}
.y43{bottom:256.479897pt;}
.yc0{bottom:257.439897pt;}
.y173{bottom:258.239897pt;}
.y1a0{bottom:263.519895pt;}
.y12a{bottom:264.639894pt;}
.y14d{bottom:264.799894pt;}
.y9a{bottom:268.319893pt;}
.y42{bottom:270.239892pt;}
.y12e{bottom:273.119891pt;}
.y188{bottom:273.919890pt;}
.y127{bottom:274.079890pt;}
.y73{bottom:274.719890pt;}
.y172{bottom:276.639889pt;}
.ybf{bottom:277.759889pt;}
.y1ca{bottom:280.319888pt;}
.y129{bottom:281.439887pt;}
.y19f{bottom:281.919887pt;}
.y14c{bottom:283.199887pt;}
.y41{bottom:284.159886pt;}
.y99{bottom:286.719885pt;}
.y1ae{bottom:289.119884pt;}
.y12d{bottom:289.919884pt;}
.y28{bottom:291.839883pt;}
.y187{bottom:292.319883pt;}
.y72{bottom:293.119883pt;}
.y171{bottom:295.039882pt;}
.y40{bottom:297.919881pt;}
.y1c9{bottom:298.719881pt;}
.y19e{bottom:300.319880pt;}
.y14b{bottom:301.599879pt;}
.y122{bottom:304.160000pt;}
.y98{bottom:305.119878pt;}
.y1ad{bottom:307.519877pt;}
.y186{bottom:310.719876pt;}
.y71{bottom:311.519875pt;}
.y3f{bottom:311.679875pt;}
.y170{bottom:313.439875pt;}
.y11e{bottom:313.919874pt;}
.y126{bottom:315.839874pt;}
.ybe{bottom:318.239873pt;}
.y19d{bottom:318.719873pt;}
.y14a{bottom:319.999872pt;}
.y121{bottom:324.319870pt;}
.y3e{bottom:325.439870pt;}
.y70{bottom:329.919868pt;}
.y16f{bottom:331.839867pt;}
.y11d{bottom:332.319867pt;}
.y125{bottom:332.799867pt;}
.y1c8{bottom:333.119867pt;}
.y19c{bottom:337.119865pt;}
.ybd{bottom:338.399865pt;}
.y3d{bottom:339.359864pt;}
.y97{bottom:339.519864pt;}
.y120{bottom:341.119864pt;}
.y1ac{bottom:341.919863pt;}
.y185{bottom:345.119862pt;}
.y6f{bottom:348.319861pt;}
.y124{bottom:349.599860pt;}
.y16e{bottom:350.239860pt;}
.y11c{bottom:350.719860pt;}
.y1c7{bottom:351.519859pt;}
.y3c{bottom:353.119859pt;}
.y19b{bottom:355.519858pt;}
.y96{bottom:357.919857pt;}
.y11f{bottom:358.079857pt;}
.ybc{bottom:358.719857pt;}
.y6e{bottom:366.719853pt;}
.y3b{bottom:366.879853pt;}
.y1c6{bottom:369.919852pt;}
.y149{bottom:370.079852pt;}
.y11a{bottom:372.320000pt;}
.y19a{bottom:373.919850pt;}
.y95{bottom:376.319849pt;}
.y184{bottom:376.959849pt;}
.ybb{bottom:378.879848pt;}
.y3a{bottom:380.639848pt;}
.y16d{bottom:381.919847pt;}
.y118{bottom:383.999846pt;}
.y6d{bottom:385.119846pt;}
.y1c5{bottom:388.319845pt;}
.y148{bottom:388.479845pt;}
.y111{bottom:390.399844pt;}
.y199{bottom:392.319843pt;}
.y114{bottom:392.479843pt;}
.y27{bottom:392.799843pt;}
.y39{bottom:394.559842pt;}
.y94{bottom:394.719842pt;}
.y183{bottom:395.359842pt;}
.yba{bottom:399.199840pt;}
.y16c{bottom:400.319840pt;}
.y117{bottom:400.959840pt;}
.y6c{bottom:403.519839pt;}
.y147{bottom:406.879837pt;}
.y38{bottom:408.319837pt;}
.y110{bottom:408.799836pt;}
.y113{bottom:409.279836pt;}
.y198{bottom:410.719836pt;}
.y93{bottom:413.119835pt;}
.y182{bottom:413.759834pt;}
.y116{bottom:417.759833pt;}
.y16b{bottom:418.719833pt;}
.yb9{bottom:419.359832pt;}
.y6b{bottom:421.919831pt;}
.y1c4{bottom:422.719831pt;}
.y146{bottom:425.279830pt;}
.y112{bottom:426.239830pt;}
.y10f{bottom:427.199829pt;}
.y197{bottom:429.119828pt;}
.y92{bottom:431.519827pt;}
.y181{bottom:432.159827pt;}
.y115{bottom:434.559826pt;}
.y16a{bottom:437.119825pt;}
.y26{bottom:437.919825pt;}
.y37{bottom:438.079825pt;}
.yb8{bottom:439.679824pt;}
.y6a{bottom:440.319824pt;}
.y1c3{bottom:441.119824pt;}
.y119{bottom:443.039823pt;}
.y145{bottom:443.679823pt;}
.y196{bottom:447.519821pt;}
.y91{bottom:449.919820pt;}
.y25{bottom:450.079820pt;}
.y180{bottom:450.559820pt;}
.y36{bottom:451.839819pt;}
.y169{bottom:455.519818pt;}
.y10d{bottom:457.280000pt;}
.y69{bottom:458.719817pt;}
.yb7{bottom:459.839816pt;}
.y144{bottom:462.079815pt;}
.y24{bottom:462.239815pt;}
.y35{bottom:465.759814pt;}
.y1ab{bottom:465.919814pt;}
.y90{bottom:468.319813pt;}
.y10b{bottom:468.959812pt;}
.y23{bottom:473.279811pt;}
.y168{bottom:473.919810pt;}
.y1c2{bottom:475.519810pt;}
.y68{bottom:477.119809pt;}
.y106{bottom:477.439809pt;}
.y34{bottom:479.519808pt;}
.yb6{bottom:480.159808pt;}
.y143{bottom:480.479808pt;}
.y195{bottom:481.919807pt;}
.y102{bottom:483.839806pt;}
.y10a{bottom:485.919806pt;}
.y8f{bottom:486.719805pt;}
.y17f{bottom:487.359805pt;}
.y167{bottom:492.319803pt;}
.y33{bottom:493.279803pt;}
.y1c1{bottom:493.919802pt;}
.y105{bottom:494.239802pt;}
.y67{bottom:495.519802pt;}
.y142{bottom:498.879800pt;}
.yb5{bottom:500.319800pt;}
.y101{bottom:502.239799pt;}
.y109{bottom:502.719799pt;}
.y8e{bottom:505.119798pt;}
.y17e{bottom:505.759798pt;}
.y32{bottom:507.039797pt;}
.y166{bottom:510.719796pt;}
.y104{bottom:511.199796pt;}
.y66{bottom:513.919794pt;}
.y141{bottom:517.279793pt;}
.y22{bottom:517.599793pt;}
.y194{bottom:518.719793pt;}
.y108{bottom:519.679792pt;}
.yb4{bottom:520.639792pt;}
.y31{bottom:520.959792pt;}
.y17d{bottom:524.159790pt;}
.y103{bottom:527.999789pt;}
.y1c0{bottom:528.319789pt;}
.y165{bottom:529.119788pt;}
.y65{bottom:532.319787pt;}
.y140{bottom:535.679786pt;}
.y107{bottom:536.479785pt;}
.y193{bottom:537.119785pt;}
.y8d{bottom:539.519784pt;}
.y17c{bottom:542.559783pt;}
.y30{bottom:542.719783pt;}
.y10c{bottom:544.959782pt;}
.y1bf{bottom:546.719781pt;}
.y164{bottom:547.519781pt;}
.y64{bottom:550.719780pt;}
.y1aa{bottom:553.119779pt;}
.y13f{bottom:554.079778pt;}
.y192{bottom:555.519778pt;}
.y2f{bottom:556.479777pt;}
.yb3{bottom:556.799777pt;}
.yf6{bottom:559.200000pt;}
.y17b{bottom:560.959776pt;}
.y21{bottom:561.759775pt;}
.yf5{bottom:562.719775pt;}
.y1be{bottom:565.119774pt;}
.y100{bottom:567.039773pt;}
.y63{bottom:569.119772pt;}
.y2e{bottom:570.239772pt;}
.y1a9{bottom:571.519771pt;}
.y8c{bottom:573.919770pt;}
.y20{bottom:574.079770pt;}
.yfb{bottom:575.519770pt;}
.yb2{bottom:577.119769pt;}
.y163{bottom:579.359768pt;}
.yf4{bottom:581.119768pt;}
.yff{bottom:583.839766pt;}
.y2d{bottom:584.159766pt;}
.y13e{bottom:585.759766pt;}
.y62{bottom:587.519765pt;}
.y1a8{bottom:589.919764pt;}
.y8b{bottom:592.319763pt;}
.y17a{bottom:592.639763pt;}
.yb1{bottom:597.279761pt;}
.y2c{bottom:597.919761pt;}
.yf3{bottom:599.519760pt;}
.yfe{bottom:600.799760pt;}
.y13d{bottom:604.159758pt;}
.y61{bottom:605.919758pt;}
.yfa{bottom:609.119756pt;}
.y8a{bottom:610.719756pt;}
.y162{bottom:611.039756pt;}
.y2b{bottom:611.679755pt;}
.y1f{bottom:612.799755pt;}
.yb0{bottom:617.599753pt;}
.yf2{bottom:617.919753pt;}
.y13c{bottom:622.559751pt;}
.y60{bottom:624.319750pt;}
.yf9{bottom:626.079750pt;}
.y89{bottom:629.119748pt;}
.y161{bottom:629.439748pt;}
.yfd{bottom:634.559746pt;}
.yf1{bottom:636.319745pt;}
.yaf{bottom:637.759745pt;}
.y1d{bottom:638.080000pt;}
.y1c{bottom:640.479744pt;}
.y13b{bottom:640.959744pt;}
.y5f{bottom:642.719743pt;}
.yf8{bottom:642.879743pt;}
.y88{bottom:647.519741pt;}
.y160{bottom:647.839741pt;}
.yfc{bottom:651.359739pt;}
.yf0{bottom:654.719738pt;}
.yae{bottom:658.079737pt;}
.y17{bottom:658.559737pt;}
.y13a{bottom:659.359736pt;}
.y5e{bottom:661.119736pt;}
.y87{bottom:665.919734pt;}
.y15f{bottom:666.239734pt;}
.yee{bottom:670.240000pt;}
.y1bd{bottom:670.719732pt;}
.y16{bottom:673.919730pt;}
.y139{bottom:677.759729pt;}
.yad{bottom:678.239729pt;}
.y5d{bottom:679.519728pt;}
.ye8{bottom:681.919727pt;}
.y86{bottom:684.319726pt;}
.y15e{bottom:684.639726pt;}
.y1bc{bottom:689.119724pt;}
.y15{bottom:689.279724pt;}
.yed{bottom:690.399724pt;}
.y138{bottom:696.159722pt;}
.y5c{bottom:697.919721pt;}
.yac{bottom:698.559721pt;}
.ye7{bottom:698.719721pt;}
.y191{bottom:700.319720pt;}
.y15d{bottom:703.039719pt;}
.y14{bottom:704.639718pt;}
.yec{bottom:707.199717pt;}
.y1bb{bottom:707.519717pt;}
.y137{bottom:714.559714pt;}
.ye3{bottom:715.199714pt;}
.ye6{bottom:715.679714pt;}
.y5b{bottom:716.319713pt;}
.y85{bottom:718.719713pt;}
.y13{bottom:719.999712pt;}
.y15c{bottom:721.439711pt;}
.yeb{bottom:724.159710pt;}
.ye5{bottom:732.479707pt;}
.y136{bottom:732.959707pt;}
.y5a{bottom:734.719706pt;}
.y12{bottom:735.359706pt;}
.y84{bottom:737.119705pt;}
.y15b{bottom:739.839704pt;}
.yea{bottom:740.959704pt;}
.y1ba{bottom:741.919703pt;}
.ye4{bottom:749.439700pt;}
.y11{bottom:750.559700pt;}
.y135{bottom:751.359699pt;}
.y59{bottom:753.119699pt;}
.yab{bottom:755.039698pt;}
.y83{bottom:755.519698pt;}
.ye9{bottom:757.759697pt;}
.y15a{bottom:758.239697pt;}
.y1b9{bottom:760.319696pt;}
.y10{bottom:765.919694pt;}
.y134{bottom:769.759692pt;}
.y58{bottom:771.519691pt;}
.ye1{bottom:772.160000pt;}
.y82{bottom:773.919690pt;}
.yaa{bottom:775.199690pt;}
.y159{bottom:776.639689pt;}
.ydf{bottom:783.839686pt;}
.ye{bottom:789.279684pt;}
.yd6{bottom:789.439684pt;}
.y57{bottom:789.919684pt;}
.yda{bottom:792.159683pt;}
.y81{bottom:792.319683pt;}
.yf{bottom:793.919682pt;}
.y1b8{bottom:794.719682pt;}
.y158{bottom:795.039682pt;}
.ya9{bottom:795.519682pt;}
.yde{bottom:800.639680pt;}
.yc{bottom:804.639678pt;}
.y133{bottom:806.079678pt;}
.yd5{bottom:807.839677pt;}
.y56{bottom:808.319677pt;}
.yd9{bottom:809.119676pt;}
.yd{bottom:809.279676pt;}
.y80{bottom:810.719676pt;}
.y1b7{bottom:813.119675pt;}
.y157{bottom:813.439675pt;}
.ya8{bottom:815.679674pt;}
.ydd{bottom:817.439673pt;}
.yd8{bottom:825.919670pt;}
.yd4{bottom:826.239670pt;}
.y55{bottom:826.719669pt;}
.y7f{bottom:829.119668pt;}
.y1b6{bottom:831.519667pt;}
.y156{bottom:831.839667pt;}
.ydc{bottom:834.399666pt;}
.ya7{bottom:835.999666pt;}
.yb{bottom:836.639665pt;}
.yd7{bottom:842.879663pt;}
.yd3{bottom:844.639662pt;}
.y54{bottom:845.119662pt;}
.y7e{bottom:847.519661pt;}
.y155{bottom:850.239660pt;}
.ydb{bottom:851.199660pt;}
.ya{bottom:855.039658pt;}
.ya6{bottom:856.159658pt;}
.ye0{bottom:859.679656pt;}
.y53{bottom:863.519655pt;}
.y7d{bottom:865.919654pt;}
.ya5{bottom:876.479649pt;}
.yd0{bottom:877.759649pt;}
.y52{bottom:881.919647pt;}
.y1b5{bottom:884.319646pt;}
.yd2{bottom:887.039645pt;}
.yce{bottom:896.159642pt;}
.y1a{bottom:896.479641pt;}
.ya4{bottom:896.639641pt;}
.y51{bottom:900.319640pt;}
.yd1{bottom:905.439638pt;}
.y19{bottom:911.839635pt;}
.ycf{bottom:914.559634pt;}
.ya3{bottom:916.959633pt;}
.y50{bottom:918.719633pt;}
.y4f{bottom:937.119625pt;}
.y18{bottom:951.199620pt;}
.y1b{bottom:958.719617pt;}
.y4{bottom:986.719605pt;}
.y3{bottom:990.239604pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h11{height:11.840000pt;}
.hc{height:12.160000pt;}
.h13{height:12.480000pt;}
.h14{height:13.120000pt;}
.h17{height:16.320000pt;}
.h19{height:16.480000pt;}
.h18{height:17.920000pt;}
.h5{height:18.240000pt;}
.h8{height:23.422491pt;}
.hd{height:29.061238pt;}
.hf{height:29.082176pt;}
.h4{height:29.794051pt;}
.he{height:31.238738pt;}
.h15{height:31.992175pt;}
.h10{height:33.351549pt;}
.h12{height:34.968736pt;}
.h6{height:35.404673pt;}
.h3{height:36.001236pt;}
.ha{height:36.260610pt;}
.h1{height:36.909048pt;}
.h1a{height:38.672797pt;}
.h9{height:38.698735pt;}
.h16{height:40.911234pt;}
.hb{height:42.656233pt;}
.h7{height:43.374983pt;}
.h2{height:44.468732pt;}
.h0{height:1056.000000pt;}
.w4{width:2.720000pt;}
.w7{width:4.000000pt;}
.w3{width:4.320000pt;}
.w5{width:5.280000pt;}
.w1{width:6.080000pt;}
.wa{width:7.040000pt;}
.wc{width:7.360000pt;}
.wf{width:8.000000pt;}
.w2{width:13.120000pt;}
.w12{width:48.000000pt;}
.we{width:49.760000pt;}
.w8{width:54.720000pt;}
.wd{width:56.960000pt;}
.w10{width:66.080000pt;}
.w11{width:70.080000pt;}
.w13{width:72.480000pt;}
.w14{width:83.840000pt;}
.wb{width:120.160000pt;}
.w6{width:148.960000pt;}
.w9{width:234.720000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x27{left:40.159984pt;}
.x25{left:41.759983pt;}
.x22{left:49.439980pt;}
.x28{left:53.599979pt;}
.x4{left:54.719978pt;}
.x24{left:56.799923pt;}
.x23{left:58.559977pt;}
.x5{left:78.879968pt;}
.x26{left:86.399965pt;}
.x1{left:95.999962pt;}
.x9{left:105.759289pt;}
.x3b{left:112.639955pt;}
.x4c{left:113.919954pt;}
.x4d{left:118.879952pt;}
.x52{left:119.999952pt;}
.x3a{left:121.919951pt;}
.x45{left:122.879951pt;}
.x47{left:125.599950pt;}
.x48{left:126.879949pt;}
.x44{left:128.319949pt;}
.x4e{left:130.399948pt;}
.x17{left:133.921105pt;}
.x49{left:135.839946pt;}
.x32{left:137.599945pt;}
.x50{left:138.879944pt;}
.x39{left:141.919943pt;}
.x3c{left:142.879943pt;}
.x31{left:143.999954pt;}
.x46{left:145.599942pt;}
.x29{left:155.039938pt;}
.x2a{left:159.040000pt;}
.x16{left:161.439935pt;}
.x20{left:170.880000pt;}
.x18{left:180.161097pt;}
.x21{left:191.199924pt;}
.xa{left:192.319923pt;}
.x2c{left:193.920000pt;}
.x13{left:198.079921pt;}
.x1c{left:211.519915pt;}
.x1b{left:222.879911pt;}
.x3d{left:231.199908pt;}
.x33{left:234.239906pt;}
.x2b{left:239.199904pt;}
.x8{left:253.119899pt;}
.x14{left:260.479357pt;}
.x2{left:268.959892pt;}
.x15{left:279.199888pt;}
.xb{left:290.559884pt;}
.xc{left:299.199880pt;}
.x19{left:315.520898pt;}
.x3e{left:335.199866pt;}
.x11{left:338.400455pt;}
.x2d{left:343.040000pt;}
.x34{left:346.079862pt;}
.x2e{left:347.040000pt;}
.x1d{left:366.719853pt;}
.x2f{left:401.760000pt;}
.x1a{left:408.000882pt;}
.xd{left:446.879821pt;}
.xe{left:455.519818pt;}
.x1e{left:456.799817pt;}
.x3f{left:458.079764pt;}
.x12{left:468.799812pt;}
.x35{left:482.399807pt;}
.x36{left:491.839803pt;}
.x4b{left:528.160000pt;}
.x4f{left:530.560000pt;}
.x40{left:578.240000pt;}
.x41{left:599.839760pt;}
.x37{left:602.559759pt;}
.x3{left:605.919758pt;}
.xf{left:609.439756pt;}
.x1f{left:611.519675pt;}
.x10{left:620.319752pt;}
.x38{left:622.879751pt;}
.x30{left:636.480000pt;}
.x43{left:649.600000pt;}
.x42{left:656.800000pt;}
.x4a{left:665.920000pt;}
.x51{left:683.680000pt;}
.x6{left:747.519701pt;}
.x7{left:771.520000pt;}
}




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