
    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_6539a16beedc23ca7be0d64b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5d902f940cfc90290e6b30a9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3f591450b4e3000b703efda1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fdaaf5713a350d1cb9538f36.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_84230fd5c25f2cbe5467cf7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_78e80228348a78903c9afefd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_d79b9259bab6d7bb2f0d0d17.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3cd67b15616840705e83ac49.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_8ed7fbffe4a74c1799877d77.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2f{letter-spacing:-0.910034px;}
.ls1f{letter-spacing:-0.490018px;}
.ls12{letter-spacing:-0.270489px;}
.ls31{letter-spacing:-0.266010px;}
.ls34{letter-spacing:-0.259010px;}
.ls29{letter-spacing:-0.203008px;}
.lsc{letter-spacing:-0.199647px;}
.ls2d{letter-spacing:-0.182007px;}
.ls33{letter-spacing:-0.175007px;}
.ls2a{letter-spacing:-0.168006px;}
.lsb{letter-spacing:-0.154565px;}
.ls9{letter-spacing:-0.154006px;}
.ls36{letter-spacing:-0.126005px;}
.ls2e{letter-spacing:-0.119004px;}
.ls26{letter-spacing:-0.112004px;}
.ls1d{letter-spacing:-0.105004px;}
.ls18{letter-spacing:-0.098004px;}
.ls7{letter-spacing:-0.091003px;}
.ls1b{letter-spacing:-0.084003px;}
.ls1c{letter-spacing:-0.077003px;}
.ls3{letter-spacing:-0.070003px;}
.lsa{letter-spacing:-0.063002px;}
.ls2{letter-spacing:-0.056002px;}
.ls27{letter-spacing:-0.051592px;}
.ls17{letter-spacing:-0.049002px;}
.ls4{letter-spacing:-0.042002px;}
.ls1a{letter-spacing:-0.035001px;}
.ls13{letter-spacing:-0.028001px;}
.ls10{letter-spacing:-0.021001px;}
.ls6{letter-spacing:-0.014001px;}
.ls5{letter-spacing:-0.007000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.007000px;}
.ls15{letter-spacing:0.014001px;}
.lsf{letter-spacing:0.021001px;}
.ls1e{letter-spacing:0.028001px;}
.ls16{letter-spacing:0.035001px;}
.ls22{letter-spacing:0.042002px;}
.ls25{letter-spacing:0.049002px;}
.ls20{letter-spacing:0.063002px;}
.ls19{letter-spacing:0.070003px;}
.ls14{letter-spacing:0.077003px;}
.ls8{letter-spacing:0.084003px;}
.ls24{letter-spacing:0.091003px;}
.ls0{letter-spacing:0.105004px;}
.ls2c{letter-spacing:0.119004px;}
.ls30{letter-spacing:0.161006px;}
.ls28{letter-spacing:0.175007px;}
.ls11{letter-spacing:0.210008px;}
.ls23{letter-spacing:0.224008px;}
.ls2b{letter-spacing:0.309549px;}
.ls37{letter-spacing:0.567021px;}
.ls32{letter-spacing:0.630023px;}
.ls35{letter-spacing:0.700026px;}
.lsd{letter-spacing:1.330049px;}
.ls21{letter-spacing:2.100078px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-17.710658px;}
.ws53{word-spacing:-17.549652px;}
.ws66{word-spacing:-17.542652px;}
.ws2c{word-spacing:-17.514651px;}
.ws2d{word-spacing:-17.500650px;}
.ws0{word-spacing:-17.493650px;}
.ws6a{word-spacing:-17.486649px;}
.ws27{word-spacing:-17.472649px;}
.ws58{word-spacing:-17.465649px;}
.ws1b{word-spacing:-17.451648px;}
.wsd{word-spacing:-17.444648px;}
.ws10{word-spacing:-17.430647px;}
.ws6f{word-spacing:-17.409647px;}
.ws1d{word-spacing:-17.395646px;}
.ws2{word-spacing:-17.346644px;}
.ws28{word-spacing:-17.010632px;}
.ws31{word-spacing:-12.600468px;}
.ws33{word-spacing:-10.500390px;}
.ws3d{word-spacing:-5.600208px;}
.ws42{word-spacing:-4.907182px;}
.ws46{word-spacing:-4.214157px;}
.ws37{word-spacing:-3.514131px;}
.ws45{word-spacing:-3.507130px;}
.ws32{word-spacing:-3.500130px;}
.ws35{word-spacing:-2.114079px;}
.ws36{word-spacing:-2.100078px;}
.ws57{word-spacing:-1.995074px;}
.ws6e{word-spacing:-1.449054px;}
.ws34{word-spacing:-1.421053px;}
.ws38{word-spacing:-1.414053px;}
.ws44{word-spacing:-1.407052px;}
.ws41{word-spacing:-1.400052px;}
.ws43{word-spacing:-1.365051px;}
.ws3a{word-spacing:-0.924034px;}
.ws3f{word-spacing:-0.770029px;}
.ws39{word-spacing:-0.742028px;}
.ws40{word-spacing:-0.714027px;}
.ws1a{word-spacing:-0.700026px;}
.ws3b{word-spacing:-0.686025px;}
.ws6b{word-spacing:-0.665025px;}
.ws15{word-spacing:-0.630023px;}
.ws70{word-spacing:-0.567021px;}
.wsc{word-spacing:-0.495897px;}
.ws61{word-spacing:-0.231009px;}
.ws4d{word-spacing:-0.182007px;}
.ws62{word-spacing:-0.175007px;}
.ws2e{word-spacing:-0.161006px;}
.ws1c{word-spacing:-0.140005px;}
.ws5e{word-spacing:-0.133005px;}
.ws5c{word-spacing:-0.112004px;}
.ws30{word-spacing:-0.105004px;}
.ws3c{word-spacing:-0.098004px;}
.ws2f{word-spacing:-0.091003px;}
.ws9{word-spacing:-0.084003px;}
.ws51{word-spacing:-0.077003px;}
.ws49{word-spacing:-0.070003px;}
.ws3{word-spacing:-0.063002px;}
.ws65{word-spacing:-0.056002px;}
.wsf{word-spacing:-0.049002px;}
.ws11{word-spacing:-0.042002px;}
.ws23{word-spacing:-0.035001px;}
.ws2b{word-spacing:-0.028001px;}
.ws17{word-spacing:-0.021001px;}
.ws29{word-spacing:-0.014001px;}
.ws16{word-spacing:-0.007000px;}
.ws4{word-spacing:0.000000px;}
.ws1f{word-spacing:0.007000px;}
.ws8{word-spacing:0.014001px;}
.ws1{word-spacing:0.021001px;}
.ws26{word-spacing:0.028001px;}
.ws22{word-spacing:0.035001px;}
.ws7{word-spacing:0.042002px;}
.ws1e{word-spacing:0.049002px;}
.wsa{word-spacing:0.056002px;}
.ws2a{word-spacing:0.063002px;}
.ws6{word-spacing:0.070003px;}
.ws25{word-spacing:0.077003px;}
.ws24{word-spacing:0.084003px;}
.ws5{word-spacing:0.091003px;}
.ws21{word-spacing:0.098004px;}
.ws59{word-spacing:0.105004px;}
.ws4a{word-spacing:0.112004px;}
.ws5b{word-spacing:0.119004px;}
.ws19{word-spacing:0.133005px;}
.wsb{word-spacing:0.154565px;}
.ws69{word-spacing:0.182007px;}
.ws63{word-spacing:0.196007px;}
.ws64{word-spacing:0.210008px;}
.ws68{word-spacing:0.224008px;}
.ws6c{word-spacing:0.259010px;}
.ws18{word-spacing:0.270489px;}
.ws20{word-spacing:0.623023px;}
.ws4c{word-spacing:0.658024px;}
.ws4e{word-spacing:0.672025px;}
.ws5a{word-spacing:0.686025px;}
.ws4b{word-spacing:0.693026px;}
.ws6d{word-spacing:0.700026px;}
.ws52{word-spacing:0.707026px;}
.ws48{word-spacing:0.714027px;}
.ws56{word-spacing:0.721027px;}
.ws5f{word-spacing:0.728027px;}
.ws50{word-spacing:0.735027px;}
.ws5d{word-spacing:0.749028px;}
.ws4f{word-spacing:0.756028px;}
.ws55{word-spacing:0.763028px;}
.ws47{word-spacing:0.770029px;}
.ws67{word-spacing:0.805030px;}
.ws60{word-spacing:0.910034px;}
.ws54{word-spacing:0.924034px;}
.ws3e{word-spacing:1.400052px;}
.ws12{word-spacing:2.093078px;}
.ws14{word-spacing:2.100078px;}
.ws13{word-spacing:2.177081px;}
._6{margin-left:-5.187193px;}
._1{margin-left:-3.654136px;}
._2{margin-left:-2.107078px;}
._3{margin-left:-1.050039px;}
._0{width:1.036038px;}
._5{width:2.184081px;}
._7{width:5.810216px;}
._4{width:454.099866px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:46.901400px;}
.fs1{font-size:64.402200px;}
.fs0{font-size:70.002600px;}
.y0{bottom:0.000000px;}
.y6c{bottom:24.500700px;}
.y6a{bottom:46.375755px;}
.y1{bottom:54.084000px;}
.y69{bottom:71.259929px;}
.y6b{bottom:78.584700px;}
.y68{bottom:85.962225px;}
.y67{bottom:100.487764px;}
.y66{bottom:115.013304px;}
.y65{bottom:129.713850px;}
.y3e{bottom:144.764385px;}
.y3d{bottom:166.809954px;}
.y63{bottom:166.984550px;}
.yf6{bottom:167.860500px;}
.y3f{bottom:179.248350px;}
.y3c{bottom:181.510500px;}
.y16e{bottom:182.393364px;}
.y62{bottom:192.010479px;}
.y64{bottom:199.374000px;}
.y11e{bottom:201.632755px;}
.y131{bottom:201.635877px;}
.y114{bottom:201.637957px;}
.y155{bottom:201.638398px;}
.y14b{bottom:201.638617px;}
.y13c{bottom:201.639733px;}
.y121{bottom:201.640823px;}
.yee{bottom:201.643005px;}
.yf7{bottom:201.643500px;}
.y12f{bottom:201.809512px;}
.y130{bottom:201.811262px;}
.yb7{bottom:201.811607px;}
.y12e{bottom:201.812634px;}
.y61{bottom:206.711025px;}
.yec{bottom:208.111500px;}
.y3a{bottom:215.637000px;}
.y60{bottom:221.236564px;}
.y16d{bottom:222.464602px;}
.y5f{bottom:235.762104px;}
.y113{bottom:241.884250px;}
.yca{bottom:241.886000px;}
.yb6{bottom:241.886345px;}
.y12d{bottom:241.887372px;}
.y108{bottom:241.889452px;}
.y154{bottom:241.889893px;}
.y14a{bottom:241.890112px;}
.yf5{bottom:241.890733px;}
.yd9{bottom:241.890872px;}
.y13b{bottom:241.891228px;}
.y120{bottom:241.892318px;}
.yed{bottom:241.894500px;}
.y17a{bottom:248.362650px;}
.y5e{bottom:250.462650px;}
.y3b{bottom:250.819500px;}
.y38{bottom:255.888000px;}
.y16c{bottom:262.716097px;}
.y112{bottom:282.135745px;}
.yc9{bottom:282.137495px;}
.yb5{bottom:282.137840px;}
.yeb{bottom:282.138585px;}
.y12c{bottom:282.138867px;}
.y107{bottom:282.140947px;}
.y153{bottom:282.141388px;}
.y149{bottom:282.141607px;}
.yf4{bottom:282.142228px;}
.yd8{bottom:282.142367px;}
.y13a{bottom:282.142723px;}
.y11f{bottom:282.143813px;}
.y17b{bottom:282.145650px;}
.y178{bottom:288.613650px;}
.y39{bottom:289.671150px;}
.y36{bottom:295.438865px;}
.y16b{bottom:302.790836px;}
.y35{bottom:311.583214px;}
.y5b{bottom:312.808715px;}
.y5d{bottom:320.122344px;}
.y111{bottom:322.388990px;}
.yc8{bottom:322.390740px;}
.yb4{bottom:322.391085px;}
.yea{bottom:322.391831px;}
.y12b{bottom:322.392112px;}
.y106{bottom:322.394192px;}
.y152{bottom:322.394633px;}
.y148{bottom:322.394852px;}
.yf3{bottom:322.395473px;}
.yd7{bottom:322.395612px;}
.y139{bottom:322.395968px;}
.ya0{bottom:322.397058px;}
.y179{bottom:322.398150px;}
.y34{bottom:326.285511px;}
.y5a{bottom:327.509261px;}
.y176{bottom:328.909800px;}
.y37{bottom:329.922150px;}
.y33{bottom:340.809300px;}
.y5c{bottom:341.823150px;}
.y59{bottom:342.034800px;}
.y16a{bottom:343.044081px;}
.y57{bottom:356.560715px;}
.y110{bottom:362.684237px;}
.yc7{bottom:362.685987px;}
.yb3{bottom:362.686332px;}
.ye9{bottom:362.687077px;}
.y12a{bottom:362.687359px;}
.y105{bottom:362.689439px;}
.y151{bottom:362.689880px;}
.y147{bottom:362.690099px;}
.yf2{bottom:362.690720px;}
.yd6{bottom:362.690859px;}
.y138{bottom:362.691215px;}
.y9f{bottom:362.692305px;}
.y177{bottom:362.692800px;}
.y9d{bottom:369.160800px;}
.y56{bottom:371.261260px;}
.y31{bottom:376.165532px;}
.y169{bottom:383.514334px;}
.y55{bottom:385.786800px;}
.y30{bottom:392.789399px;}
.y10f{bottom:402.935732px;}
.yc6{bottom:402.937482px;}
.yb2{bottom:402.937827px;}
.ye8{bottom:402.938572px;}
.y129{bottom:402.938854px;}
.y104{bottom:402.940934px;}
.y150{bottom:402.941375px;}
.y146{bottom:402.941594px;}
.yf1{bottom:402.942215px;}
.yd5{bottom:402.942354px;}
.y137{bottom:402.942710px;}
.y9e{bottom:402.943800px;}
.y2f{bottom:407.314939px;}
.y9b{bottom:409.411950px;}
.y32{bottom:410.469300px;}
.y58{bottom:410.644800px;}
.y2e{bottom:422.015485px;}
.y168{bottom:423.765829px;}
.y2d{bottom:436.541024px;}
.y10e{bottom:443.187227px;}
.yc5{bottom:443.188977px;}
.yb1{bottom:443.189322px;}
.y128{bottom:443.190349px;}
.y13e{bottom:443.190727px;}
.ye7{bottom:443.191817px;}
.y103{bottom:443.192429px;}
.y14f{bottom:443.192870px;}
.y145{bottom:443.193089px;}
.yf0{bottom:443.193710px;}
.yd4{bottom:443.193849px;}
.y136{bottom:443.194205px;}
.y9c{bottom:443.194800px;}
.y99{bottom:449.662950px;}
.y2c{bottom:451.066564px;}
.y54{bottom:455.444768px;}
.y167{bottom:464.017324px;}
.y2b{bottom:465.767110px;}
.y2a{bottom:480.290899px;}
.y10d{bottom:483.440472px;}
.yc4{bottom:483.442222px;}
.yb0{bottom:483.442567px;}
.y127{bottom:483.443594px;}
.y13d{bottom:483.443972px;}
.y7e{bottom:483.444152px;}
.y144{bottom:483.444584px;}
.ye6{bottom:483.445062px;}
.yd3{bottom:483.445344px;}
.y102{bottom:483.445674px;}
.y14e{bottom:483.446115px;}
.yef{bottom:483.446955px;}
.y9a{bottom:483.447450px;}
.y97{bottom:489.915600px;}
.y29{bottom:494.814688px;}
.y166{bottom:504.268819px;}
.y28{bottom:509.516984px;}
.y10c{bottom:523.691967px;}
.yc3{bottom:523.693717px;}
.yaf{bottom:523.694062px;}
.y126{bottom:523.695089px;}
.y135{bottom:523.695467px;}
.y7d{bottom:523.695647px;}
.y143{bottom:523.696079px;}
.ye5{bottom:523.696557px;}
.yd2{bottom:523.696839px;}
.y101{bottom:523.697169px;}
.y14d{bottom:523.697610px;}
.y98{bottom:523.698450px;}
.y27{bottom:524.042524px;}
.y52{bottom:530.166750px;}
.y26{bottom:538.568063px;}
.y165{bottom:544.520314px;}
.y25{bottom:553.298361px;}
.y10b{bottom:563.943462px;}
.yc2{bottom:563.945212px;}
.yae{bottom:563.945557px;}
.y125{bottom:563.946584px;}
.y134{bottom:563.946962px;}
.y7c{bottom:563.947142px;}
.y142{bottom:563.947574px;}
.ye4{bottom:563.948052px;}
.yd1{bottom:563.948334px;}
.y100{bottom:563.948664px;}
.y14c{bottom:563.949105px;}
.y96{bottom:563.949600px;}
.y53{bottom:565.350600px;}
.y24{bottom:567.822150px;}
.y95{bottom:570.447750px;}
.y50{bottom:571.498129px;}
.y23{bottom:582.345939px;}
.y164{bottom:584.771809px;}
.y4f{bottom:594.947250px;}
.y22{bottom:597.048236px;}
.y10a{bottom:604.194957px;}
.yc1{bottom:604.196707px;}
.yad{bottom:604.197052px;}
.y124{bottom:604.198079px;}
.y133{bottom:604.198457px;}
.y7b{bottom:604.198637px;}
.y141{bottom:604.199069px;}
.ye3{bottom:604.199547px;}
.yd0{bottom:604.199829px;}
.yff{bottom:604.200159px;}
.y85{bottom:604.200504px;}
.y51{bottom:604.200600px;}
.y94{bottom:610.698750px;}
.y21{bottom:611.573775px;}
.y83{bottom:611.749029px;}
.y163{bottom:625.053055px;}
.y20{bottom:626.099314px;}
.y82{bottom:635.199900px;}
.y1f{bottom:640.799861px;}
.y109{bottom:644.476203px;}
.yc0{bottom:644.477953px;}
.yac{bottom:644.478298px;}
.y123{bottom:644.479325px;}
.y132{bottom:644.479703px;}
.y7a{bottom:644.479883px;}
.y140{bottom:644.480315px;}
.ye2{bottom:644.480793px;}
.ycf{bottom:644.481075px;}
.yfe{bottom:644.481405px;}
.y84{bottom:644.481750px;}
.y92{bottom:650.949900px;}
.y1e{bottom:655.325400px;}
.y4e{bottom:664.606160px;}
.y162{bottom:665.304550px;}
.ybf{bottom:684.729448px;}
.yab{bottom:684.729793px;}
.y122{bottom:684.730820px;}
.y11d{bottom:684.731198px;}
.y175{bottom:684.731315px;}
.y79{bottom:684.731378px;}
.y13f{bottom:684.731810px;}
.ye1{bottom:684.732288px;}
.yce{bottom:684.732570px;}
.y93{bottom:684.732900px;}
.y1c{bottom:691.200900px;}
.y4d{bottom:704.857655px;}
.y161{bottom:705.556045px;}
.y4b{bottom:711.326550px;}
.yfd{bottom:724.979193px;}
.ybe{bottom:724.982693px;}
.yaa{bottom:724.983038px;}
.ye0{bottom:724.983783px;}
.ycd{bottom:724.984065px;}
.y11c{bottom:724.984443px;}
.y174{bottom:724.984560px;}
.y78{bottom:724.984623px;}
.y81{bottom:724.985055px;}
.y1d{bottom:724.985400px;}
.y1a{bottom:730.405665px;}
.y91{bottom:731.453550px;}
.y80{bottom:732.503929px;}
.y4c{bottom:745.110900px;}
.y19{bottom:745.456224px;}
.y160{bottom:745.807540px;}
.y49{bottom:751.579050px;}
.y7f{bottom:755.953050px;}
.y18{bottom:759.981763px;}
.yfc{bottom:765.230688px;}
.ybd{bottom:765.234188px;}
.ya9{bottom:765.234533px;}
.ydf{bottom:765.235278px;}
.ycc{bottom:765.235560px;}
.y11b{bottom:765.235938px;}
.y173{bottom:765.236055px;}
.y77{bottom:765.236118px;}
.y1b{bottom:765.236550px;}
.y8f{bottom:771.704700px;}
.y17{bottom:774.682309px;}
.y4a{bottom:785.362050px;}
.y15f{bottom:786.060785px;}
.y16{bottom:789.207849px;}
.y47{bottom:791.830050px;}
.y15{bottom:803.777140px;}
.yfb{bottom:805.482183px;}
.ybc{bottom:805.485683px;}
.ya8{bottom:805.486028px;}
.yde{bottom:805.486773px;}
.ycb{bottom:805.487055px;}
.y11a{bottom:805.487433px;}
.y90{bottom:805.487550px;}
.y76{bottom:805.487613px;}
.y8d{bottom:811.999200px;}
.y14{bottom:818.477686px;}
.y48{bottom:825.613200px;}
.y15e{bottom:826.312280px;}
.y13{bottom:833.001475px;}
.y45{bottom:833.174829px;}
.yfa{bottom:845.733678px;}
.ybb{bottom:845.737178px;}
.ya7{bottom:845.737523px;}
.ydd{bottom:845.738268px;}
.y8e{bottom:845.738550px;}
.y172{bottom:845.738613px;}
.y119{bottom:845.738928px;}
.y75{bottom:845.739108px;}
.y12{bottom:847.525264px;}
.y17c{bottom:852.250200px;}
.y44{bottom:856.625700px;}
.y11{bottom:862.227561px;}
.y46{bottom:865.907700px;}
.y15d{bottom:866.607526px;}
.y10{bottom:876.751350px;}
.yf9{bottom:886.028925px;}
.y8c{bottom:886.030675px;}
.yba{bottom:886.032425px;}
.ya6{bottom:886.032770px;}
.ydc{bottom:886.033515px;}
.y171{bottom:886.033860px;}
.y118{bottom:886.034175px;}
.y74{bottom:886.034355px;}
.y17d{bottom:886.034700px;}
.y72{bottom:892.502850px;}
.y15c{bottom:906.684015px;}
.yf8{bottom:926.280420px;}
.y8b{bottom:926.282170px;}
.yb9{bottom:926.283920px;}
.ya5{bottom:926.284265px;}
.ydb{bottom:926.285010px;}
.y170{bottom:926.285355px;}
.y117{bottom:926.285670px;}
.y73{bottom:926.285850px;}
.y16f{bottom:932.754000px;}
.y70{bottom:933.106543px;}
.y43{bottom:946.410510px;}
.y15b{bottom:946.935510px;}
.y6f{bottom:953.757310px;}
.y8a{bottom:966.533665px;}
.yb8{bottom:966.535415px;}
.ya4{bottom:966.535760px;}
.yf{bottom:966.536505px;}
.y71{bottom:966.536850px;}
.y116{bottom:966.537165px;}
.y6e{bottom:968.282849px;}
.yda{bottom:973.005000px;}
.yd{bottom:974.058064px;}
.y6d{bottom:982.808389px;}
.y42{bottom:986.662005px;}
.y15a{bottom:987.187005px;}
.y40{bottom:993.132022px;}
.y158{bottom:993.655500px;}
.yc{bottom:997.508935px;}
.y89{bottom:1006.786910px;}
.ya3{bottom:1006.787255px;}
.ye{bottom:1006.788000px;}
.y115{bottom:1006.788660px;}
.yb{bottom:1012.032724px;}
.ya1{bottom:1013.256150px;}
.ya{bottom:1026.556513px;}
.y41{bottom:1026.913500px;}
.y159{bottom:1027.438500px;}
.y156{bottom:1034.606812px;}
.y9{bottom:1041.286811px;}
.y88{bottom:1047.040155px;}
.ya2{bottom:1047.040500px;}
.y86{bottom:1053.187252px;}
.y8{bottom:1055.812350px;}
.y157{bottom:1067.691150px;}
.y7{bottom:1070.337889px;}
.y6{bottom:1085.038435px;}
.y87{bottom:1087.291650px;}
.y5{bottom:1099.563975px;}
.y4{bottom:1114.089514px;}
.y3{bottom:1128.790060px;}
.y2{bottom:1143.315600px;}
.h2{height:46.657006px;}
.h6{height:63.207237px;}
.h5{height:64.905342px;}
.h7{height:68.669543px;}
.h3{height:68.703724px;}
.h9{height:68.709210px;}
.h8{height:68.722655px;}
.h4{height:70.549495px;}
.h1{height:1155.040500px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.531500px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x9{left:105.038700px;}
.x18{left:109.413750px;}
.x6{left:115.014000px;}
.x1d{left:121.141525px;}
.x1e{left:137.064900px;}
.x1b{left:138.114937px;}
.x1a{left:142.490100px;}
.x19{left:157.537037px;}
.x21{left:162.960300px;}
.x1f{left:164.185647px;}
.x13{left:195.161321px;}
.x15{left:201.460950px;}
.xa{left:220.536450px;}
.x11{left:226.137450px;}
.x1{left:267.787950px;}
.x2{left:269.189752px;}
.x20{left:281.658600px;}
.xc{left:315.959100px;}
.xd{left:323.309100px;}
.x3{left:325.059600px;}
.x7{left:342.560100px;}
.x1c{left:352.010100px;}
.xf{left:353.935238px;}
.x5{left:376.860750px;}
.xb{left:388.236750px;}
.x8{left:391.736250px;}
.x10{left:394.361250px;}
.x17{left:398.562750px;}
.x22{left:401.886750px;}
.x4{left:408.362250px;}
.x14{left:411.336750px;}
.xe{left:436.538305px;}
.x12{left:446.339400px;}
.x16{left:691.070850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-0.808919pt;}
.ls1f{letter-spacing:-0.435572pt;}
.ls12{letter-spacing:-0.240435pt;}
.ls31{letter-spacing:-0.236453pt;}
.ls34{letter-spacing:-0.230231pt;}
.ls29{letter-spacing:-0.180451pt;}
.lsc{letter-spacing:-0.177464pt;}
.ls2d{letter-spacing:-0.161784pt;}
.ls33{letter-spacing:-0.155561pt;}
.ls2a{letter-spacing:-0.149339pt;}
.lsb{letter-spacing:-0.137391pt;}
.ls9{letter-spacing:-0.136894pt;}
.ls36{letter-spacing:-0.112004pt;}
.ls2e{letter-spacing:-0.105782pt;}
.ls26{letter-spacing:-0.099559pt;}
.ls1d{letter-spacing:-0.093337pt;}
.ls18{letter-spacing:-0.087114pt;}
.ls7{letter-spacing:-0.080892pt;}
.ls1b{letter-spacing:-0.074669pt;}
.ls1c{letter-spacing:-0.068447pt;}
.ls3{letter-spacing:-0.062225pt;}
.lsa{letter-spacing:-0.056002pt;}
.ls2{letter-spacing:-0.049780pt;}
.ls27{letter-spacing:-0.045859pt;}
.ls17{letter-spacing:-0.043557pt;}
.ls4{letter-spacing:-0.037335pt;}
.ls1a{letter-spacing:-0.031112pt;}
.ls13{letter-spacing:-0.024890pt;}
.ls10{letter-spacing:-0.018667pt;}
.ls6{letter-spacing:-0.012445pt;}
.ls5{letter-spacing:-0.006222pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.006222pt;}
.ls15{letter-spacing:0.012445pt;}
.lsf{letter-spacing:0.018667pt;}
.ls1e{letter-spacing:0.024890pt;}
.ls16{letter-spacing:0.031112pt;}
.ls22{letter-spacing:0.037335pt;}
.ls25{letter-spacing:0.043557pt;}
.ls20{letter-spacing:0.056002pt;}
.ls19{letter-spacing:0.062225pt;}
.ls14{letter-spacing:0.068447pt;}
.ls8{letter-spacing:0.074669pt;}
.ls24{letter-spacing:0.080892pt;}
.ls0{letter-spacing:0.093337pt;}
.ls2c{letter-spacing:0.105782pt;}
.ls30{letter-spacing:0.143116pt;}
.ls28{letter-spacing:0.155561pt;}
.ls11{letter-spacing:0.186674pt;}
.ls23{letter-spacing:0.199119pt;}
.ls2b{letter-spacing:0.275155pt;}
.ls37{letter-spacing:0.504019pt;}
.ls32{letter-spacing:0.560021pt;}
.ls35{letter-spacing:0.622245pt;}
.lsd{letter-spacing:1.182266pt;}
.ls21{letter-spacing:1.866736pt;}
.wse{word-spacing:-15.742807pt;}
.ws53{word-spacing:-15.599691pt;}
.ws66{word-spacing:-15.593468pt;}
.ws2c{word-spacing:-15.568578pt;}
.ws2d{word-spacing:-15.556133pt;}
.ws0{word-spacing:-15.549911pt;}
.ws6a{word-spacing:-15.543688pt;}
.ws27{word-spacing:-15.531244pt;}
.ws58{word-spacing:-15.525021pt;}
.ws1b{word-spacing:-15.512576pt;}
.wsd{word-spacing:-15.506354pt;}
.ws10{word-spacing:-15.493909pt;}
.ws6f{word-spacing:-15.475241pt;}
.ws1d{word-spacing:-15.462797pt;}
.ws2{word-spacing:-15.419239pt;}
.ws28{word-spacing:-15.120562pt;}
.ws31{word-spacing:-11.200416pt;}
.ws33{word-spacing:-9.333680pt;}
.ws3d{word-spacing:-4.977963pt;}
.ws42{word-spacing:-4.361940pt;}
.ws46{word-spacing:-3.745917pt;}
.ws37{word-spacing:-3.123672pt;}
.ws45{word-spacing:-3.117449pt;}
.ws32{word-spacing:-3.111227pt;}
.ws35{word-spacing:-1.879181pt;}
.ws36{word-spacing:-1.866736pt;}
.ws57{word-spacing:-1.773399pt;}
.ws6e{word-spacing:-1.288048pt;}
.ws34{word-spacing:-1.263158pt;}
.ws38{word-spacing:-1.256936pt;}
.ws44{word-spacing:-1.250713pt;}
.ws41{word-spacing:-1.244491pt;}
.ws43{word-spacing:-1.213378pt;}
.ws3a{word-spacing:-0.821364pt;}
.ws3f{word-spacing:-0.684470pt;}
.ws39{word-spacing:-0.659580pt;}
.ws40{word-spacing:-0.634690pt;}
.ws1a{word-spacing:-0.622245pt;}
.ws3b{word-spacing:-0.609800pt;}
.ws6b{word-spacing:-0.591133pt;}
.ws15{word-spacing:-0.560021pt;}
.ws70{word-spacing:-0.504019pt;}
.wsc{word-spacing:-0.440797pt;}
.ws61{word-spacing:-0.205341pt;}
.ws4d{word-spacing:-0.161784pt;}
.ws62{word-spacing:-0.155561pt;}
.ws2e{word-spacing:-0.143116pt;}
.ws1c{word-spacing:-0.124449pt;}
.ws5e{word-spacing:-0.118227pt;}
.ws5c{word-spacing:-0.099559pt;}
.ws30{word-spacing:-0.093337pt;}
.ws3c{word-spacing:-0.087114pt;}
.ws2f{word-spacing:-0.080892pt;}
.ws9{word-spacing:-0.074669pt;}
.ws51{word-spacing:-0.068447pt;}
.ws49{word-spacing:-0.062225pt;}
.ws3{word-spacing:-0.056002pt;}
.ws65{word-spacing:-0.049780pt;}
.wsf{word-spacing:-0.043557pt;}
.ws11{word-spacing:-0.037335pt;}
.ws23{word-spacing:-0.031112pt;}
.ws2b{word-spacing:-0.024890pt;}
.ws17{word-spacing:-0.018667pt;}
.ws29{word-spacing:-0.012445pt;}
.ws16{word-spacing:-0.006222pt;}
.ws4{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.006222pt;}
.ws8{word-spacing:0.012445pt;}
.ws1{word-spacing:0.018667pt;}
.ws26{word-spacing:0.024890pt;}
.ws22{word-spacing:0.031112pt;}
.ws7{word-spacing:0.037335pt;}
.ws1e{word-spacing:0.043557pt;}
.wsa{word-spacing:0.049780pt;}
.ws2a{word-spacing:0.056002pt;}
.ws6{word-spacing:0.062225pt;}
.ws25{word-spacing:0.068447pt;}
.ws24{word-spacing:0.074669pt;}
.ws5{word-spacing:0.080892pt;}
.ws21{word-spacing:0.087114pt;}
.ws59{word-spacing:0.093337pt;}
.ws4a{word-spacing:0.099559pt;}
.ws5b{word-spacing:0.105782pt;}
.ws19{word-spacing:0.118227pt;}
.wsb{word-spacing:0.137391pt;}
.ws69{word-spacing:0.161784pt;}
.ws63{word-spacing:0.174229pt;}
.ws64{word-spacing:0.186674pt;}
.ws68{word-spacing:0.199119pt;}
.ws6c{word-spacing:0.230231pt;}
.ws18{word-spacing:0.240435pt;}
.ws20{word-spacing:0.553798pt;}
.ws4c{word-spacing:0.584911pt;}
.ws4e{word-spacing:0.597356pt;}
.ws5a{word-spacing:0.609800pt;}
.ws4b{word-spacing:0.616023pt;}
.ws6d{word-spacing:0.622245pt;}
.ws52{word-spacing:0.628468pt;}
.ws48{word-spacing:0.634690pt;}
.ws56{word-spacing:0.640913pt;}
.ws5f{word-spacing:0.647135pt;}
.ws50{word-spacing:0.653358pt;}
.ws5d{word-spacing:0.665803pt;}
.ws4f{word-spacing:0.672025pt;}
.ws55{word-spacing:0.678247pt;}
.ws47{word-spacing:0.684470pt;}
.ws67{word-spacing:0.715582pt;}
.ws60{word-spacing:0.808919pt;}
.ws54{word-spacing:0.821364pt;}
.ws3e{word-spacing:1.244491pt;}
.ws12{word-spacing:1.860514pt;}
.ws14{word-spacing:1.866736pt;}
.ws13{word-spacing:1.935183pt;}
._6{margin-left:-4.610838pt;}
._1{margin-left:-3.248121pt;}
._2{margin-left:-1.872958pt;}
._3{margin-left:-0.933368pt;}
._0{width:0.920923pt;}
._5{width:1.941405pt;}
._7{width:5.164636pt;}
._4{width:403.644325pt;}
.fs2{font-size:41.690133pt;}
.fs1{font-size:57.246400pt;}
.fs0{font-size:62.224533pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:21.778400pt;}
.y6a{bottom:41.222893pt;}
.y1{bottom:48.074667pt;}
.y69{bottom:63.342159pt;}
.y6b{bottom:69.853067pt;}
.y68{bottom:76.410867pt;}
.y67{bottom:89.322457pt;}
.y66{bottom:102.234048pt;}
.y65{bottom:115.301200pt;}
.y3e{bottom:128.679454pt;}
.y3d{bottom:148.275515pt;}
.y63{bottom:148.430711pt;}
.yf6{bottom:149.209333pt;}
.y3f{bottom:159.331867pt;}
.y3c{bottom:161.342667pt;}
.y16e{bottom:162.127434pt;}
.y62{bottom:170.675981pt;}
.y64{bottom:177.221333pt;}
.y11e{bottom:179.229116pt;}
.y131{bottom:179.231891pt;}
.y114{bottom:179.233740pt;}
.y155{bottom:179.234132pt;}
.y14b{bottom:179.234326pt;}
.y13c{bottom:179.235318pt;}
.y121{bottom:179.236287pt;}
.yee{bottom:179.238227pt;}
.yf7{bottom:179.238667pt;}
.y12f{bottom:179.386233pt;}
.y130{bottom:179.387788pt;}
.yb7{bottom:179.388095pt;}
.y12e{bottom:179.389008pt;}
.y61{bottom:183.743133pt;}
.yec{bottom:184.988000pt;}
.y3a{bottom:191.677333pt;}
.y60{bottom:196.654724pt;}
.y16d{bottom:197.746313pt;}
.y5f{bottom:209.566315pt;}
.y113{bottom:215.008223pt;}
.yca{bottom:215.009778pt;}
.yb6{bottom:215.010085pt;}
.y12d{bottom:215.010997pt;}
.y108{bottom:215.012846pt;}
.y154{bottom:215.013238pt;}
.y14a{bottom:215.013433pt;}
.yf5{bottom:215.013985pt;}
.yd9{bottom:215.014109pt;}
.y13b{bottom:215.014425pt;}
.y120{bottom:215.015394pt;}
.yed{bottom:215.017333pt;}
.y17a{bottom:220.766800pt;}
.y5e{bottom:222.633467pt;}
.y3b{bottom:222.950667pt;}
.y38{bottom:227.456000pt;}
.y16c{bottom:233.525420pt;}
.y112{bottom:250.787329pt;}
.yc9{bottom:250.788885pt;}
.yb5{bottom:250.789191pt;}
.yeb{bottom:250.789854pt;}
.y12c{bottom:250.790104pt;}
.y107{bottom:250.791953pt;}
.y153{bottom:250.792345pt;}
.y149{bottom:250.792540pt;}
.yf4{bottom:250.793092pt;}
.yd8{bottom:250.793215pt;}
.y13a{bottom:250.793532pt;}
.y11f{bottom:250.794501pt;}
.y17b{bottom:250.796133pt;}
.y178{bottom:256.545467pt;}
.y39{bottom:257.485467pt;}
.y36{bottom:262.612324pt;}
.y16b{bottom:269.147409pt;}
.y35{bottom:276.962857pt;}
.y5b{bottom:278.052191pt;}
.y5d{bottom:284.553195pt;}
.y111{bottom:286.567991pt;}
.yc8{bottom:286.569547pt;}
.yb4{bottom:286.569854pt;}
.yea{bottom:286.570516pt;}
.y12b{bottom:286.570766pt;}
.y106{bottom:286.572615pt;}
.y152{bottom:286.573007pt;}
.y148{bottom:286.573202pt;}
.yf3{bottom:286.573754pt;}
.yd7{bottom:286.573878pt;}
.y139{bottom:286.574194pt;}
.ya0{bottom:286.575163pt;}
.y179{bottom:286.576133pt;}
.y34{bottom:290.031565pt;}
.y5a{bottom:291.119343pt;}
.y176{bottom:292.364267pt;}
.y37{bottom:293.264133pt;}
.y33{bottom:302.941600pt;}
.y5c{bottom:303.842800pt;}
.y59{bottom:304.030933pt;}
.y16a{bottom:304.928072pt;}
.y57{bottom:316.942857pt;}
.y110{bottom:322.385988pt;}
.yc7{bottom:322.387544pt;}
.yb3{bottom:322.387851pt;}
.ye9{bottom:322.388513pt;}
.y12a{bottom:322.388763pt;}
.y105{bottom:322.390612pt;}
.y151{bottom:322.391004pt;}
.y147{bottom:322.391199pt;}
.yf2{bottom:322.391751pt;}
.yd6{bottom:322.391875pt;}
.y138{bottom:322.392191pt;}
.y9f{bottom:322.393160pt;}
.y177{bottom:322.393600pt;}
.y9d{bottom:328.142933pt;}
.y56{bottom:330.010009pt;}
.y31{bottom:334.369361pt;}
.y169{bottom:340.901630pt;}
.y55{bottom:342.921600pt;}
.y30{bottom:349.146132pt;}
.y10f{bottom:358.165095pt;}
.yc6{bottom:358.166651pt;}
.yb2{bottom:358.166957pt;}
.ye8{bottom:358.167620pt;}
.y129{bottom:358.167870pt;}
.y104{bottom:358.169719pt;}
.y150{bottom:358.170111pt;}
.y146{bottom:358.170306pt;}
.yf1{bottom:358.170858pt;}
.yd5{bottom:358.170981pt;}
.y137{bottom:358.171298pt;}
.y9e{bottom:358.172267pt;}
.y2f{bottom:362.057723pt;}
.y9b{bottom:363.921733pt;}
.y32{bottom:364.861600pt;}
.y58{bottom:365.017600pt;}
.y2e{bottom:375.124875pt;}
.y168{bottom:376.680737pt;}
.y2d{bottom:388.036466pt;}
.y10e{bottom:393.944202pt;}
.yc5{bottom:393.945757pt;}
.yb1{bottom:393.946064pt;}
.y128{bottom:393.946977pt;}
.y13e{bottom:393.947313pt;}
.ye7{bottom:393.948282pt;}
.y103{bottom:393.948826pt;}
.y14f{bottom:393.949218pt;}
.y145{bottom:393.949412pt;}
.yf0{bottom:393.949964pt;}
.yd4{bottom:393.950088pt;}
.y136{bottom:393.950404pt;}
.y9c{bottom:393.950933pt;}
.y99{bottom:399.700400pt;}
.y2c{bottom:400.948056pt;}
.y54{bottom:404.839794pt;}
.y167{bottom:412.459843pt;}
.y2b{bottom:414.015208pt;}
.y2a{bottom:426.925244pt;}
.y10d{bottom:429.724864pt;}
.yc4{bottom:429.726420pt;}
.yb0{bottom:429.726726pt;}
.y127{bottom:429.727639pt;}
.y13d{bottom:429.727975pt;}
.y7e{bottom:429.728135pt;}
.y144{bottom:429.728519pt;}
.ye6{bottom:429.728944pt;}
.yd3{bottom:429.729195pt;}
.y102{bottom:429.729488pt;}
.y14e{bottom:429.729880pt;}
.yef{bottom:429.730627pt;}
.y9a{bottom:429.731067pt;}
.y97{bottom:435.480533pt;}
.y29{bottom:439.835279pt;}
.y166{bottom:448.238950pt;}
.y28{bottom:452.903986pt;}
.y10c{bottom:465.503971pt;}
.yc3{bottom:465.505526pt;}
.yaf{bottom:465.505833pt;}
.y126{bottom:465.506746pt;}
.y135{bottom:465.507082pt;}
.y7d{bottom:465.507242pt;}
.y143{bottom:465.507626pt;}
.ye5{bottom:465.508051pt;}
.yd2{bottom:465.508301pt;}
.y101{bottom:465.508595pt;}
.y14d{bottom:465.508987pt;}
.y98{bottom:465.509733pt;}
.y27{bottom:465.815577pt;}
.y52{bottom:471.259333pt;}
.y26{bottom:478.727168pt;}
.y165{bottom:484.018057pt;}
.y25{bottom:491.820765pt;}
.y10b{bottom:501.283077pt;}
.yc2{bottom:501.284633pt;}
.yae{bottom:501.284940pt;}
.y125{bottom:501.285852pt;}
.y134{bottom:501.286189pt;}
.y7c{bottom:501.286349pt;}
.y142{bottom:501.286732pt;}
.ye4{bottom:501.287158pt;}
.yd1{bottom:501.287408pt;}
.y100{bottom:501.287701pt;}
.y14c{bottom:501.288093pt;}
.y96{bottom:501.288533pt;}
.y53{bottom:502.533867pt;}
.y24{bottom:504.730800pt;}
.y95{bottom:507.064667pt;}
.y50{bottom:507.998337pt;}
.y23{bottom:517.640835pt;}
.y164{bottom:519.797163pt;}
.y4f{bottom:528.842000pt;}
.y22{bottom:530.709543pt;}
.y10a{bottom:537.062184pt;}
.yc1{bottom:537.063740pt;}
.yad{bottom:537.064046pt;}
.y124{bottom:537.064959pt;}
.y133{bottom:537.065295pt;}
.y7b{bottom:537.065455pt;}
.y141{bottom:537.065839pt;}
.ye3{bottom:537.066264pt;}
.yd0{bottom:537.066515pt;}
.yff{bottom:537.066808pt;}
.y85{bottom:537.067115pt;}
.y51{bottom:537.067200pt;}
.y94{bottom:542.843333pt;}
.y21{bottom:543.621133pt;}
.y83{bottom:543.776915pt;}
.y163{bottom:555.602715pt;}
.y20{bottom:556.532724pt;}
.y82{bottom:564.622133pt;}
.y1f{bottom:569.599876pt;}
.y109{bottom:572.867736pt;}
.yc0{bottom:572.869292pt;}
.yac{bottom:572.869598pt;}
.y123{bottom:572.870511pt;}
.y132{bottom:572.870847pt;}
.y7a{bottom:572.871007pt;}
.y140{bottom:572.871391pt;}
.ye2{bottom:572.871816pt;}
.ycf{bottom:572.872067pt;}
.yfe{bottom:572.872360pt;}
.y84{bottom:572.872667pt;}
.y92{bottom:578.622133pt;}
.y1e{bottom:582.511467pt;}
.y4e{bottom:590.761031pt;}
.y162{bottom:591.381822pt;}
.ybf{bottom:608.648398pt;}
.yab{bottom:608.648705pt;}
.y122{bottom:608.649618pt;}
.y11d{bottom:608.649954pt;}
.y175{bottom:608.650058pt;}
.y79{bottom:608.650114pt;}
.y13f{bottom:608.650498pt;}
.ye1{bottom:608.650923pt;}
.yce{bottom:608.651173pt;}
.y93{bottom:608.651467pt;}
.y1c{bottom:614.400800pt;}
.y4d{bottom:626.540138pt;}
.y161{bottom:627.160929pt;}
.y4b{bottom:632.290267pt;}
.yfd{bottom:644.425949pt;}
.ybe{bottom:644.429061pt;}
.yaa{bottom:644.429367pt;}
.ye0{bottom:644.430030pt;}
.ycd{bottom:644.430280pt;}
.y11c{bottom:644.430616pt;}
.y174{bottom:644.430720pt;}
.y78{bottom:644.430776pt;}
.y81{bottom:644.431160pt;}
.y1d{bottom:644.431467pt;}
.y1a{bottom:649.249480pt;}
.y91{bottom:650.180933pt;}
.y80{bottom:651.114604pt;}
.y4c{bottom:662.320800pt;}
.y19{bottom:662.627754pt;}
.y160{bottom:662.940035pt;}
.y49{bottom:668.070267pt;}
.y7f{bottom:671.958267pt;}
.y18{bottom:675.539345pt;}
.yfc{bottom:680.205056pt;}
.ybd{bottom:680.208167pt;}
.ya9{bottom:680.208474pt;}
.ydf{bottom:680.209136pt;}
.ycc{bottom:680.209387pt;}
.y11b{bottom:680.209723pt;}
.y173{bottom:680.209827pt;}
.y77{bottom:680.209883pt;}
.y1b{bottom:680.210267pt;}
.y8f{bottom:685.959733pt;}
.y17{bottom:688.606497pt;}
.y4a{bottom:698.099600pt;}
.y15f{bottom:698.720698pt;}
.y16{bottom:701.518088pt;}
.y47{bottom:703.848933pt;}
.y15{bottom:714.468569pt;}
.yfb{bottom:715.984163pt;}
.ybc{bottom:715.987274pt;}
.ya8{bottom:715.987581pt;}
.yde{bottom:715.988243pt;}
.ycb{bottom:715.988493pt;}
.y11a{bottom:715.988830pt;}
.y90{bottom:715.988933pt;}
.y76{bottom:715.988990pt;}
.y8d{bottom:721.777067pt;}
.y14{bottom:727.535721pt;}
.y48{bottom:733.878400pt;}
.y15e{bottom:734.499804pt;}
.y13{bottom:740.445756pt;}
.y45{bottom:740.599848pt;}
.yfa{bottom:751.763269pt;}
.ybb{bottom:751.766381pt;}
.ya7{bottom:751.766687pt;}
.ydd{bottom:751.767350pt;}
.y8e{bottom:751.767600pt;}
.y172{bottom:751.767656pt;}
.y119{bottom:751.767936pt;}
.y75{bottom:751.768096pt;}
.y12{bottom:753.355791pt;}
.y17c{bottom:757.555733pt;}
.y44{bottom:761.445067pt;}
.y11{bottom:766.424498pt;}
.y46{bottom:769.695733pt;}
.y15d{bottom:770.317801pt;}
.y10{bottom:779.334533pt;}
.yf9{bottom:787.581266pt;}
.y8c{bottom:787.582822pt;}
.yba{bottom:787.584378pt;}
.ya6{bottom:787.584684pt;}
.ydc{bottom:787.585347pt;}
.y171{bottom:787.585653pt;}
.y118{bottom:787.585933pt;}
.y74{bottom:787.586093pt;}
.y17d{bottom:787.586400pt;}
.y72{bottom:793.335867pt;}
.y15c{bottom:805.941347pt;}
.yf8{bottom:823.360373pt;}
.y8b{bottom:823.361929pt;}
.yb9{bottom:823.363484pt;}
.ya5{bottom:823.363791pt;}
.ydb{bottom:823.364453pt;}
.y170{bottom:823.364760pt;}
.y117{bottom:823.365040pt;}
.y73{bottom:823.365200pt;}
.y16f{bottom:829.114667pt;}
.y70{bottom:829.428038pt;}
.y43{bottom:841.253787pt;}
.y15b{bottom:841.720453pt;}
.y6f{bottom:847.784275pt;}
.y8a{bottom:859.141035pt;}
.yb8{bottom:859.142591pt;}
.ya4{bottom:859.142898pt;}
.yf{bottom:859.143560pt;}
.y71{bottom:859.143867pt;}
.y116{bottom:859.144147pt;}
.y6e{bottom:860.695866pt;}
.yda{bottom:864.893333pt;}
.yd{bottom:865.829390pt;}
.y6d{bottom:873.607456pt;}
.y42{bottom:877.032893pt;}
.y15a{bottom:877.499560pt;}
.y40{bottom:882.784020pt;}
.y158{bottom:883.249333pt;}
.yc{bottom:886.674608pt;}
.y89{bottom:894.921698pt;}
.ya3{bottom:894.922004pt;}
.ye{bottom:894.922667pt;}
.y115{bottom:894.923253pt;}
.yb{bottom:899.584644pt;}
.ya1{bottom:900.672133pt;}
.ya{bottom:912.494679pt;}
.y41{bottom:912.812000pt;}
.y159{bottom:913.278667pt;}
.y156{bottom:919.650500pt;}
.y9{bottom:925.588276pt;}
.y88{bottom:930.702360pt;}
.ya2{bottom:930.702667pt;}
.y86{bottom:936.166447pt;}
.y8{bottom:938.499867pt;}
.y157{bottom:949.058800pt;}
.y7{bottom:951.411457pt;}
.y6{bottom:964.478609pt;}
.y87{bottom:966.481467pt;}
.y5{bottom:977.390200pt;}
.y4{bottom:990.301791pt;}
.y3{bottom:1003.368943pt;}
.y2{bottom:1016.280533pt;}
.h2{height:41.472895pt;}
.h6{height:56.184211pt;}
.h5{height:57.693637pt;}
.h7{height:61.039593pt;}
.h3{height:61.069977pt;}
.h9{height:61.074854pt;}
.h8{height:61.086805pt;}
.h4{height:62.710662pt;}
.h1{height:1026.702667pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.361333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x9{left:93.367733pt;}
.x18{left:97.256667pt;}
.x6{left:102.234667pt;}
.x1d{left:107.681356pt;}
.x1e{left:121.835467pt;}
.x1b{left:122.768833pt;}
.x1a{left:126.657867pt;}
.x19{left:140.032922pt;}
.x21{left:144.853600pt;}
.x1f{left:145.942797pt;}
.x13{left:173.476730pt;}
.x15{left:179.076400pt;}
.xa{left:196.032400pt;}
.x11{left:201.011067pt;}
.x1{left:238.033733pt;}
.x2{left:239.279780pt;}
.x20{left:250.363200pt;}
.xc{left:280.852533pt;}
.xd{left:287.385867pt;}
.x3{left:288.941867pt;}
.x7{left:304.497867pt;}
.x1c{left:312.897867pt;}
.xf{left:314.609100pt;}
.x5{left:334.987333pt;}
.xb{left:345.099333pt;}
.x8{left:348.210000pt;}
.x10{left:350.543333pt;}
.x17{left:354.278000pt;}
.x22{left:357.232667pt;}
.x4{left:362.988667pt;}
.x14{left:365.632667pt;}
.xe{left:388.034049pt;}
.x12{left:396.746133pt;}
.x16{left:614.285200pt;}
}




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