
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_9fa42709d41adc59ab7f31e1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4621df5967c7071be3c87c5c.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_c7ea91b780fe20d4b5cc60ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8b1efdff6c86798003989a5d.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_71f3d561c9808e418ac42d61.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_3b63f5ba09f69bbc6c8e887d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4107f433785ac42fd56d7025.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_359d01edf130577d36b3965b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_102ab94e144a994c430b3248.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_30baff3eaac194e9ee6d49e6.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-77.760000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.630000px;}
.ls4{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.486600px;}
.ls7{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.089400px;}
.ls8{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.313920px;}
.ls13{letter-spacing:0.466800px;}
.lsb{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls14{letter-spacing:2.160000px;}
.ls12{letter-spacing:16.306560px;}
.ls2{letter-spacing:18.149760px;}
.ls10{letter-spacing:46.546560px;}
.lsc{letter-spacing:63.826560px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.wsa{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.184000px;}
.ws4{word-spacing:-13.680000px;}
.ws6{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:-8.928000px;}
.ws7{word-spacing:0.000000px;}
._18{margin-left:-3.758400px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._9{width:4.583040px;}
._d{width:6.200640px;}
._7{width:7.562880px;}
._8{width:8.591040px;}
._6{width:10.203840px;}
._a{width:11.557440px;}
._15{width:12.787200px;}
._14{width:13.789440px;}
._10{width:16.470720px;}
._e{width:17.510400px;}
._f{width:18.648000px;}
._16{width:20.295360px;}
._17{width:21.597120px;}
._12{width:22.644000px;}
._11{width:24.433920px;}
._19{width:26.023680px;}
._13{width:27.578880px;}
._1b{width:28.969920px;}
._1c{width:30.179520px;}
._c{width:36.033120px;}
._b{width:37.036800px;}
._1a{width:43.237440px;}
._20{width:60.419520px;}
._22{width:61.428480px;}
._21{width:62.514240px;}
._24{width:64.573920px;}
._23{width:65.756640px;}
._1e{width:77.760000px;}
._1d{width:79.133760px;}
._1f{width:81.256800px;}
._5{width:1886.737440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:0.715500px;}
.y5{bottom:3.960000px;}
.y5a{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y58{bottom:10.795500px;}
.y4{bottom:21.240000px;}
.y57{bottom:26.275500px;}
.y4b{bottom:30.235500px;}
.y43{bottom:38.520000px;}
.y4a{bottom:42.475500px;}
.y56{bottom:43.555500px;}
.y3{bottom:44.280000px;}
.y49{bottom:55.471500px;}
.y42{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y55{bottom:59.434500px;}
.y48{bottom:68.434500px;}
.y41{bottom:73.080000px;}
.y54{bottom:74.914500px;}
.y53{bottom:87.874500px;}
.y47{bottom:90.034500px;}
.y40{bottom:90.360000px;}
.yf4{bottom:91.476000px;}
.y92{bottom:92.556000px;}
.y123{bottom:93.996000px;}
.y52{bottom:94.354500px;}
.y44{bottom:94.360500px;}
.yb9{bottom:98.316000px;}
.ye7{bottom:101.556000px;}
.y3f{bottom:107.640000px;}
.y91{bottom:109.836000px;}
.y51{bottom:110.194500px;}
.y122{bottom:111.276000px;}
.yb8{bottom:115.596000px;}
.yf3{bottom:117.756000px;}
.ye6{bottom:118.836000px;}
.y3e{bottom:124.605000px;}
.y50{bottom:125.674500px;}
.ydc{bottom:126.756000px;}
.y90{bottom:127.116000px;}
.y121{bottom:128.556000px;}
.yb7{bottom:132.876000px;}
.ye5{bottom:136.116000px;}
.y4f{bottom:141.154500px;}
.y8f{bottom:144.432000px;}
.y120{bottom:145.872000px;}
.yb6{bottom:150.195000px;}
.y3d{bottom:151.245000px;}
.y46{bottom:152.314500px;}
.ydb{bottom:153.435000px;}
.y4e{bottom:156.634500px;}
.y8e{bottom:161.355000px;}
.yf2{bottom:161.715000px;}
.y45{bottom:163.114500px;}
.y11f{bottom:163.155000px;}
.yb5{bottom:167.475000px;}
.y3c{bottom:168.165000px;}
.yda{bottom:170.715000px;}
.y4d{bottom:171.754500px;}
.yfa{bottom:178.635000px;}
.yf1{bottom:178.995000px;}
.y11e{bottom:180.435000px;}
.yb4{bottom:184.755000px;}
.y3b{bottom:185.445000px;}
.y8d{bottom:187.995000px;}
.yf9{bottom:195.915000px;}
.yf0{bottom:196.275000px;}
.y11d{bottom:197.715000px;}
.yb3{bottom:202.035000px;}
.y3a{bottom:202.725000px;}
.y8c{bottom:205.275000px;}
.yef{bottom:213.195000px;}
.y11c{bottom:214.995000px;}
.yb2{bottom:218.955000px;}
.y39{bottom:220.005000px;}
.y8b{bottom:222.195000px;}
.yee{bottom:230.115000px;}
.y11b{bottom:232.275000px;}
.yb1{bottom:235.875000px;}
.y38{bottom:237.285000px;}
.y8a{bottom:239.475000px;}
.y13f{bottom:240.915000px;}
.y11a{bottom:249.195000px;}
.yb0{bottom:253.155000px;}
.y37{bottom:254.595000px;}
.y89{bottom:256.755000px;}
.y119{bottom:266.475000px;}
.y13e{bottom:266.835000px;}
.y36{bottom:271.875000px;}
.yd9{bottom:273.705000px;}
.y88{bottom:274.065000px;}
.yaf{bottom:279.825000px;}
.y118{bottom:283.785000px;}
.y13d{bottom:284.505000px;}
.yd{bottom:287.025000px;}
.y35{bottom:288.795000px;}
.ye4{bottom:290.985000px;}
.y87{bottom:291.345000px;}
.yae{bottom:297.105000px;}
.yd8{bottom:300.345000px;}
.y117{bottom:301.065000px;}
.y13c{bottom:301.785000px;}
.y34{bottom:306.075000px;}
.y86{bottom:308.265000px;}
.yed{bottom:308.625000px;}
.yad{bottom:314.385000px;}
.yd7{bottom:317.625000px;}
.y116{bottom:318.345000px;}
.y13b{bottom:319.065000px;}
.y33{bottom:323.355000px;}
.yec{bottom:325.905000px;}
.yac{bottom:331.665000px;}
.y85{bottom:334.905000px;}
.y115{bottom:335.625000px;}
.y13a{bottom:336.345000px;}
.y1c{bottom:339.915000px;}
.yeb{bottom:342.825000px;}
.yab{bottom:348.945000px;}
.y32{bottom:349.275000px;}
.y84{bottom:352.185000px;}
.y114{bottom:352.905000px;}
.y139{bottom:353.625000px;}
.y1b{bottom:364.035000px;}
.y31{bottom:364.755000px;}
.yaa{bottom:366.225000px;}
.y83{bottom:369.465000px;}
.y113{bottom:369.825000px;}
.y138{bottom:370.905000px;}
.y30{bottom:380.235000px;}
.ya9{bottom:383.505000px;}
.y82{bottom:386.745000px;}
.y1a{bottom:388.185000px;}
.y2f{bottom:395.745000px;}
.y112{bottom:396.105000px;}
.ya8{bottom:400.785000px;}
.yd6{bottom:403.665000px;}
.y81{bottom:404.025000px;}
.y137{bottom:405.510000px;}
.y2e{bottom:411.225000px;}
.y19{bottom:412.305000px;}
.y111{bottom:413.790000px;}
.ya7{bottom:418.110000px;}
.ye3{bottom:420.990000px;}
.y80{bottom:421.350000px;}
.y136{bottom:422.790000px;}
.y2d{bottom:426.705000px;}
.yd5{bottom:430.350000px;}
.y110{bottom:431.070000px;}
.ya6{bottom:435.030000px;}
.y18{bottom:436.785000px;}
.y7f{bottom:438.270000px;}
.y135{bottom:440.070000px;}
.y2c{bottom:442.545000px;}
.yd4{bottom:447.270000px;}
.y10f{bottom:448.350000px;}
.ya5{bottom:452.310000px;}
.y7e{bottom:455.190000px;}
.y134{bottom:457.350000px;}
.y2b{bottom:458.025000px;}
.y17{bottom:460.905000px;}
.yd3{bottom:464.550000px;}
.y10e{bottom:465.270000px;}
.ya4{bottom:469.590000px;}
.y7d{bottom:472.470000px;}
.y2a{bottom:473.505000px;}
.y133{bottom:474.270000px;}
.yd2{bottom:481.830000px;}
.y10d{bottom:482.550000px;}
.y16{bottom:485.025000px;}
.ya3{bottom:486.870000px;}
.y29{bottom:488.985000px;}
.yea{bottom:489.750000px;}
.y132{bottom:491.550000px;}
.y7c{bottom:499.110000px;}
.y10c{bottom:499.830000px;}
.ya2{bottom:504.150000px;}
.y28{bottom:504.465000px;}
.y131{bottom:508.830000px;}
.y15{bottom:509.145000px;}
.yd1{bottom:516.030000px;}
.y7b{bottom:516.390000px;}
.y10b{bottom:517.110000px;}
.y27{bottom:519.990000px;}
.ya1{bottom:521.430000px;}
.y130{bottom:526.110000px;}
.y14{bottom:533.310000px;}
.y7a{bottom:533.670000px;}
.y10a{bottom:534.390000px;}
.y26{bottom:535.470000px;}
.ya0{bottom:538.380000px;}
.y12f{bottom:543.420000px;}
.ye2{bottom:550.620000px;}
.y25{bottom:550.950000px;}
.y79{bottom:550.980000px;}
.y109{bottom:551.700000px;}
.y13{bottom:557.430000px;}
.yd0{bottom:559.980000px;}
.y12e{bottom:560.700000px;}
.y9f{bottom:565.020000px;}
.y24{bottom:566.430000px;}
.yf8{bottom:567.900000px;}
.y78{bottom:568.260000px;}
.y108{bottom:568.980000px;}
.ycf{bottom:577.260000px;}
.y12d{bottom:577.980000px;}
.y12{bottom:581.550000px;}
.y23{bottom:582.270000px;}
.y9e{bottom:582.300000px;}
.y77{bottom:585.540000px;}
.y107{bottom:586.260000px;}
.yce{bottom:594.540000px;}
.y12c{bottom:595.260000px;}
.y22{bottom:597.750000px;}
.y9d{bottom:600.660000px;}
.y76{bottom:602.460000px;}
.yf7{bottom:602.820000px;}
.y106{bottom:603.540000px;}
.y11{bottom:605.670000px;}
.ycd{bottom:611.820000px;}
.y12b{bottom:612.540000px;}
.y21{bottom:613.230000px;}
.y9c{bottom:617.940000px;}
.yf6{bottom:620.100000px;}
.y105{bottom:620.820000px;}
.y20{bottom:628.710000px;}
.y75{bottom:629.100000px;}
.y10{bottom:629.790000px;}
.y12a{bottom:629.820000px;}
.y9b{bottom:635.940000px;}
.yf5{bottom:636.660000px;}
.y104{bottom:638.100000px;}
.y1f{bottom:644.190000px;}
.y74{bottom:646.020000px;}
.y129{bottom:647.100000px;}
.y9a{bottom:653.220000px;}
.yf{bottom:653.940000px;}
.y103{bottom:655.020000px;}
.y1e{bottom:659.700000px;}
.y73{bottom:663.300000px;}
.y128{bottom:664.020000px;}
.y99{bottom:671.250000px;}
.y102{bottom:672.330000px;}
.y1d{bottom:674.820000px;}
.ye{bottom:678.060000px;}
.ycc{bottom:680.250000px;}
.y72{bottom:680.610000px;}
.y127{bottom:681.330000px;}
.y101{bottom:689.610000px;}
.ye1{bottom:697.530000px;}
.y71{bottom:697.890000px;}
.y126{bottom:698.610000px;}
.ycb{bottom:706.890000px;}
.y70{bottom:715.170000px;}
.y125{bottom:715.890000px;}
.ye9{bottom:723.810000px;}
.yca{bottom:724.170000px;}
.y6f{bottom:732.450000px;}
.y124{bottom:733.170000px;}
.yc9{bottom:741.450000px;}
.y6e{bottom:749.370000px;}
.y100{bottom:750.450000px;}
.yc8{bottom:758.730000px;}
.y98{bottom:766.650000px;}
.yff{bottom:767.730000px;}
.y6d{bottom:776.010000px;}
.yfe{bottom:785.010000px;}
.y97{bottom:792.930000px;}
.y6c{bottom:793.290000px;}
.yfd{bottom:802.335000px;}
.y6b{bottom:810.615000px;}
.yfc{bottom:819.615000px;}
.yc7{bottom:827.535000px;}
.y6a{bottom:827.895000px;}
.yfb{bottom:836.895000px;}
.yc6{bottom:844.815000px;}
.y69{bottom:845.175000px;}
.ye0{bottom:854.175000px;}
.y68{bottom:862.095000px;}
.yc5{bottom:871.095000px;}
.ye8{bottom:879.015000px;}
.y67{bottom:879.375000px;}
.yc4{bottom:888.375000px;}
.y66{bottom:896.655000px;}
.yc3{bottom:905.655000px;}
.y65{bottom:913.575000px;}
.y96{bottom:913.935000px;}
.yc2{bottom:922.935000px;}
.y95{bottom:930.855000px;}
.y64{bottom:940.245000px;}
.yc1{bottom:957.165000px;}
.y63{bottom:957.525000px;}
.ydf{bottom:974.445000px;}
.y62{bottom:974.805000px;}
.yc{bottom:980.565000px;}
.yc0{bottom:983.805000px;}
.yde{bottom:991.725000px;}
.y61{bottom:992.085000px;}
.yb{bottom:997.845000px;}
.ybf{bottom:1001.085000px;}
.ydd{bottom:1009.005000px;}
.y60{bottom:1009.365000px;}
.ybe{bottom:1018.365000px;}
.y5f{bottom:1026.645000px;}
.ya{bottom:1034.205000px;}
.ybd{bottom:1035.645000px;}
.y5e{bottom:1043.565000px;}
.y94{bottom:1043.925000px;}
.ybc{bottom:1052.925000px;}
.y9{bottom:1058.685000px;}
.y93{bottom:1060.485000px;}
.y5d{bottom:1069.530000px;}
.ybb{bottom:1069.890000px;}
.y8{bottom:1086.450000px;}
.y5c{bottom:1087.170000px;}
.y59{bottom:1089.720000px;}
.yba{bottom:1104.090000px;}
.y5b{bottom:1104.450000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.h13{height:5.650313px;}
.h14{height:27.720000px;}
.h11{height:29.678906px;}
.h6{height:30.077578px;}
.h10{height:35.332031px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.h18{height:43.410938px;}
.hd{height:53.677969px;}
.h12{height:55.147500px;}
.h7{height:58.050000px;}
.h5{height:59.357813px;}
.he{height:60.155156px;}
.h9{height:60.952500px;}
.h16{height:61.927031px;}
.h17{height:62.163910px;}
.h15{height:63.455625px;}
.h8{height:63.577969px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.hf{height:191.925000px;}
.ha{height:687.405000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:6.876000px;}
.x14{left:8.266500px;}
.x4{left:13.305000px;}
.x11{left:14.386500px;}
.x17{left:18.346500px;}
.x5{left:19.425000px;}
.x13{left:20.866500px;}
.x12{left:26.266500px;}
.x19{left:29.146500px;}
.xd{left:43.906500px;}
.x18{left:47.542500px;}
.x6{left:50.055000px;}
.xc{left:55.102500px;}
.x10{left:57.982500px;}
.x1a{left:66.265500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.xf{left:90.025500px;}
.x1e{left:91.836000px;}
.x2{left:95.425500px;}
.xa{left:103.716000px;}
.x16{left:106.945500px;}
.x1c{left:113.436000px;}
.x1f{left:118.836000px;}
.xe{left:124.585500px;}
.x1d{left:140.472000px;}
.x3{left:182.250000px;}
.x15{left:218.970000px;}
.xb{left:589.935000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.560000pt;}
.ls4{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.432533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.279040pt;}
.ls13{letter-spacing:0.414933pt;}
.lsb{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls12{letter-spacing:14.494720pt;}
.ls2{letter-spacing:16.133120pt;}
.ls10{letter-spacing:41.374720pt;}
.lsc{letter-spacing:56.734720pt;}
.ws8{word-spacing:-53.760000pt;}
.wsa{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.440000pt;}
.ws9{word-spacing:-12.608000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:-7.936000pt;}
.ws7{word-spacing:0.000000pt;}
._18{margin-left:-3.340800pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._9{width:4.073813pt;}
._d{width:5.511680pt;}
._7{width:6.722560pt;}
._8{width:7.636480pt;}
._6{width:9.070080pt;}
._a{width:10.273280pt;}
._15{width:11.366400pt;}
._14{width:12.257280pt;}
._10{width:14.640640pt;}
._e{width:15.564800pt;}
._f{width:16.576000pt;}
._16{width:18.040320pt;}
._17{width:19.197440pt;}
._12{width:20.128000pt;}
._11{width:21.719040pt;}
._19{width:23.132160pt;}
._13{width:24.514560pt;}
._1b{width:25.751040pt;}
._1c{width:26.826240pt;}
._c{width:32.029440pt;}
._b{width:32.921600pt;}
._1a{width:38.433280pt;}
._20{width:53.706240pt;}
._22{width:54.603093pt;}
._21{width:55.568213pt;}
._24{width:57.399040pt;}
._23{width:58.450347pt;}
._1e{width:69.120000pt;}
._1d{width:70.341120pt;}
._1f{width:72.228267pt;}
._5{width:1677.099947pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:0.636000pt;}
.y5{bottom:3.520000pt;}
.y5a{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y58{bottom:9.596000pt;}
.y4{bottom:18.880000pt;}
.y57{bottom:23.356000pt;}
.y4b{bottom:26.876000pt;}
.y43{bottom:34.240000pt;}
.y4a{bottom:37.756000pt;}
.y56{bottom:38.716000pt;}
.y3{bottom:39.360000pt;}
.y49{bottom:49.308000pt;}
.y42{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y55{bottom:52.830667pt;}
.y48{bottom:60.830667pt;}
.y41{bottom:64.960000pt;}
.y54{bottom:66.590667pt;}
.y53{bottom:78.110667pt;}
.y47{bottom:80.030667pt;}
.y40{bottom:80.320000pt;}
.yf4{bottom:81.312000pt;}
.y92{bottom:82.272000pt;}
.y123{bottom:83.552000pt;}
.y52{bottom:83.870667pt;}
.y44{bottom:83.876000pt;}
.yb9{bottom:87.392000pt;}
.ye7{bottom:90.272000pt;}
.y3f{bottom:95.680000pt;}
.y91{bottom:97.632000pt;}
.y51{bottom:97.950667pt;}
.y122{bottom:98.912000pt;}
.yb8{bottom:102.752000pt;}
.yf3{bottom:104.672000pt;}
.ye6{bottom:105.632000pt;}
.y3e{bottom:110.760000pt;}
.y50{bottom:111.710667pt;}
.ydc{bottom:112.672000pt;}
.y90{bottom:112.992000pt;}
.y121{bottom:114.272000pt;}
.yb7{bottom:118.112000pt;}
.ye5{bottom:120.992000pt;}
.y4f{bottom:125.470667pt;}
.y8f{bottom:128.384000pt;}
.y120{bottom:129.664000pt;}
.yb6{bottom:133.506667pt;}
.y3d{bottom:134.440000pt;}
.y46{bottom:135.390667pt;}
.ydb{bottom:136.386667pt;}
.y4e{bottom:139.230667pt;}
.y8e{bottom:143.426667pt;}
.yf2{bottom:143.746667pt;}
.y45{bottom:144.990667pt;}
.y11f{bottom:145.026667pt;}
.yb5{bottom:148.866667pt;}
.y3c{bottom:149.480000pt;}
.yda{bottom:151.746667pt;}
.y4d{bottom:152.670667pt;}
.yfa{bottom:158.786667pt;}
.yf1{bottom:159.106667pt;}
.y11e{bottom:160.386667pt;}
.yb4{bottom:164.226667pt;}
.y3b{bottom:164.840000pt;}
.y8d{bottom:167.106667pt;}
.yf9{bottom:174.146667pt;}
.yf0{bottom:174.466667pt;}
.y11d{bottom:175.746667pt;}
.yb3{bottom:179.586667pt;}
.y3a{bottom:180.200000pt;}
.y8c{bottom:182.466667pt;}
.yef{bottom:189.506667pt;}
.y11c{bottom:191.106667pt;}
.yb2{bottom:194.626667pt;}
.y39{bottom:195.560000pt;}
.y8b{bottom:197.506667pt;}
.yee{bottom:204.546667pt;}
.y11b{bottom:206.466667pt;}
.yb1{bottom:209.666667pt;}
.y38{bottom:210.920000pt;}
.y8a{bottom:212.866667pt;}
.y13f{bottom:214.146667pt;}
.y11a{bottom:221.506667pt;}
.yb0{bottom:225.026667pt;}
.y37{bottom:226.306667pt;}
.y89{bottom:228.226667pt;}
.y119{bottom:236.866667pt;}
.y13e{bottom:237.186667pt;}
.y36{bottom:241.666667pt;}
.yd9{bottom:243.293333pt;}
.y88{bottom:243.613333pt;}
.yaf{bottom:248.733333pt;}
.y118{bottom:252.253333pt;}
.y13d{bottom:252.893333pt;}
.yd{bottom:255.133333pt;}
.y35{bottom:256.706667pt;}
.ye4{bottom:258.653333pt;}
.y87{bottom:258.973333pt;}
.yae{bottom:264.093333pt;}
.yd8{bottom:266.973333pt;}
.y117{bottom:267.613333pt;}
.y13c{bottom:268.253333pt;}
.y34{bottom:272.066667pt;}
.y86{bottom:274.013333pt;}
.yed{bottom:274.333333pt;}
.yad{bottom:279.453333pt;}
.yd7{bottom:282.333333pt;}
.y116{bottom:282.973333pt;}
.y13b{bottom:283.613333pt;}
.y33{bottom:287.426667pt;}
.yec{bottom:289.693333pt;}
.yac{bottom:294.813333pt;}
.y85{bottom:297.693333pt;}
.y115{bottom:298.333333pt;}
.y13a{bottom:298.973333pt;}
.y1c{bottom:302.146667pt;}
.yeb{bottom:304.733333pt;}
.yab{bottom:310.173333pt;}
.y32{bottom:310.466667pt;}
.y84{bottom:313.053333pt;}
.y114{bottom:313.693333pt;}
.y139{bottom:314.333333pt;}
.y1b{bottom:323.586667pt;}
.y31{bottom:324.226667pt;}
.yaa{bottom:325.533333pt;}
.y83{bottom:328.413333pt;}
.y113{bottom:328.733333pt;}
.y138{bottom:329.693333pt;}
.y30{bottom:337.986667pt;}
.ya9{bottom:340.893333pt;}
.y82{bottom:343.773333pt;}
.y1a{bottom:345.053333pt;}
.y2f{bottom:351.773333pt;}
.y112{bottom:352.093333pt;}
.ya8{bottom:356.253333pt;}
.yd6{bottom:358.813333pt;}
.y81{bottom:359.133333pt;}
.y137{bottom:360.453333pt;}
.y2e{bottom:365.533333pt;}
.y19{bottom:366.493333pt;}
.y111{bottom:367.813333pt;}
.ya7{bottom:371.653333pt;}
.ye3{bottom:374.213333pt;}
.y80{bottom:374.533333pt;}
.y136{bottom:375.813333pt;}
.y2d{bottom:379.293333pt;}
.yd5{bottom:382.533333pt;}
.y110{bottom:383.173333pt;}
.ya6{bottom:386.693333pt;}
.y18{bottom:388.253333pt;}
.y7f{bottom:389.573333pt;}
.y135{bottom:391.173333pt;}
.y2c{bottom:393.373333pt;}
.yd4{bottom:397.573333pt;}
.y10f{bottom:398.533333pt;}
.ya5{bottom:402.053333pt;}
.y7e{bottom:404.613333pt;}
.y134{bottom:406.533333pt;}
.y2b{bottom:407.133333pt;}
.y17{bottom:409.693333pt;}
.yd3{bottom:412.933333pt;}
.y10e{bottom:413.573333pt;}
.ya4{bottom:417.413333pt;}
.y7d{bottom:419.973333pt;}
.y2a{bottom:420.893333pt;}
.y133{bottom:421.573333pt;}
.yd2{bottom:428.293333pt;}
.y10d{bottom:428.933333pt;}
.y16{bottom:431.133333pt;}
.ya3{bottom:432.773333pt;}
.y29{bottom:434.653333pt;}
.yea{bottom:435.333333pt;}
.y132{bottom:436.933333pt;}
.y7c{bottom:443.653333pt;}
.y10c{bottom:444.293333pt;}
.ya2{bottom:448.133333pt;}
.y28{bottom:448.413333pt;}
.y131{bottom:452.293333pt;}
.y15{bottom:452.573333pt;}
.yd1{bottom:458.693333pt;}
.y7b{bottom:459.013333pt;}
.y10b{bottom:459.653333pt;}
.y27{bottom:462.213333pt;}
.ya1{bottom:463.493333pt;}
.y130{bottom:467.653333pt;}
.y14{bottom:474.053333pt;}
.y7a{bottom:474.373333pt;}
.y10a{bottom:475.013333pt;}
.y26{bottom:475.973333pt;}
.ya0{bottom:478.560000pt;}
.y12f{bottom:483.040000pt;}
.ye2{bottom:489.440000pt;}
.y25{bottom:489.733333pt;}
.y79{bottom:489.760000pt;}
.y109{bottom:490.400000pt;}
.y13{bottom:495.493333pt;}
.yd0{bottom:497.760000pt;}
.y12e{bottom:498.400000pt;}
.y9f{bottom:502.240000pt;}
.y24{bottom:503.493333pt;}
.yf8{bottom:504.800000pt;}
.y78{bottom:505.120000pt;}
.y108{bottom:505.760000pt;}
.ycf{bottom:513.120000pt;}
.y12d{bottom:513.760000pt;}
.y12{bottom:516.933333pt;}
.y23{bottom:517.573333pt;}
.y9e{bottom:517.600000pt;}
.y77{bottom:520.480000pt;}
.y107{bottom:521.120000pt;}
.yce{bottom:528.480000pt;}
.y12c{bottom:529.120000pt;}
.y22{bottom:531.333333pt;}
.y9d{bottom:533.920000pt;}
.y76{bottom:535.520000pt;}
.yf7{bottom:535.840000pt;}
.y106{bottom:536.480000pt;}
.y11{bottom:538.373333pt;}
.ycd{bottom:543.840000pt;}
.y12b{bottom:544.480000pt;}
.y21{bottom:545.093333pt;}
.y9c{bottom:549.280000pt;}
.yf6{bottom:551.200000pt;}
.y105{bottom:551.840000pt;}
.y20{bottom:558.853333pt;}
.y75{bottom:559.200000pt;}
.y10{bottom:559.813333pt;}
.y12a{bottom:559.840000pt;}
.y9b{bottom:565.280000pt;}
.yf5{bottom:565.920000pt;}
.y104{bottom:567.200000pt;}
.y1f{bottom:572.613333pt;}
.y74{bottom:574.240000pt;}
.y129{bottom:575.200000pt;}
.y9a{bottom:580.640000pt;}
.yf{bottom:581.280000pt;}
.y103{bottom:582.240000pt;}
.y1e{bottom:586.400000pt;}
.y73{bottom:589.600000pt;}
.y128{bottom:590.240000pt;}
.y99{bottom:596.666667pt;}
.y102{bottom:597.626667pt;}
.y1d{bottom:599.840000pt;}
.ye{bottom:602.720000pt;}
.ycc{bottom:604.666667pt;}
.y72{bottom:604.986667pt;}
.y127{bottom:605.626667pt;}
.y101{bottom:612.986667pt;}
.ye1{bottom:620.026667pt;}
.y71{bottom:620.346667pt;}
.y126{bottom:620.986667pt;}
.ycb{bottom:628.346667pt;}
.y70{bottom:635.706667pt;}
.y125{bottom:636.346667pt;}
.ye9{bottom:643.386667pt;}
.yca{bottom:643.706667pt;}
.y6f{bottom:651.066667pt;}
.y124{bottom:651.706667pt;}
.yc9{bottom:659.066667pt;}
.y6e{bottom:666.106667pt;}
.y100{bottom:667.066667pt;}
.yc8{bottom:674.426667pt;}
.y98{bottom:681.466667pt;}
.yff{bottom:682.426667pt;}
.y6d{bottom:689.786667pt;}
.yfe{bottom:697.786667pt;}
.y97{bottom:704.826667pt;}
.y6c{bottom:705.146667pt;}
.yfd{bottom:713.186667pt;}
.y6b{bottom:720.546667pt;}
.yfc{bottom:728.546667pt;}
.yc7{bottom:735.586667pt;}
.y6a{bottom:735.906667pt;}
.yfb{bottom:743.906667pt;}
.yc6{bottom:750.946667pt;}
.y69{bottom:751.266667pt;}
.ye0{bottom:759.266667pt;}
.y68{bottom:766.306667pt;}
.yc5{bottom:774.306667pt;}
.ye8{bottom:781.346667pt;}
.y67{bottom:781.666667pt;}
.yc4{bottom:789.666667pt;}
.y66{bottom:797.026667pt;}
.yc3{bottom:805.026667pt;}
.y65{bottom:812.066667pt;}
.y96{bottom:812.386667pt;}
.yc2{bottom:820.386667pt;}
.y95{bottom:827.426667pt;}
.y64{bottom:835.773333pt;}
.yc1{bottom:850.813333pt;}
.y63{bottom:851.133333pt;}
.ydf{bottom:866.173333pt;}
.y62{bottom:866.493333pt;}
.yc{bottom:871.613333pt;}
.yc0{bottom:874.493333pt;}
.yde{bottom:881.533333pt;}
.y61{bottom:881.853333pt;}
.yb{bottom:886.973333pt;}
.ybf{bottom:889.853333pt;}
.ydd{bottom:896.893333pt;}
.y60{bottom:897.213333pt;}
.ybe{bottom:905.213333pt;}
.y5f{bottom:912.573333pt;}
.ya{bottom:919.293333pt;}
.ybd{bottom:920.573333pt;}
.y5e{bottom:927.613333pt;}
.y94{bottom:927.933333pt;}
.ybc{bottom:935.933333pt;}
.y9{bottom:941.053333pt;}
.y93{bottom:942.653333pt;}
.y5d{bottom:950.693333pt;}
.ybb{bottom:951.013333pt;}
.y8{bottom:965.733333pt;}
.y5c{bottom:966.373333pt;}
.y59{bottom:968.640000pt;}
.yba{bottom:981.413333pt;}
.y5b{bottom:981.733333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.h13{height:5.022500pt;}
.h14{height:24.640000pt;}
.h11{height:26.381250pt;}
.h6{height:26.735625pt;}
.h10{height:31.406250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.h18{height:38.587500pt;}
.hd{height:47.713750pt;}
.h12{height:49.020000pt;}
.h7{height:51.600000pt;}
.h5{height:52.762500pt;}
.he{height:53.471250pt;}
.h9{height:54.180000pt;}
.h16{height:55.046250pt;}
.h17{height:55.256809pt;}
.h15{height:56.405000pt;}
.h8{height:56.513750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.hf{height:170.600000pt;}
.ha{height:611.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.112000pt;}
.x14{left:7.348000pt;}
.x4{left:11.826667pt;}
.x11{left:12.788000pt;}
.x17{left:16.308000pt;}
.x5{left:17.266667pt;}
.x13{left:18.548000pt;}
.x12{left:23.348000pt;}
.x19{left:25.908000pt;}
.xd{left:39.028000pt;}
.x18{left:42.260000pt;}
.x6{left:44.493333pt;}
.xc{left:48.980000pt;}
.x10{left:51.540000pt;}
.x1a{left:58.902667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.xf{left:80.022667pt;}
.x1e{left:81.632000pt;}
.x2{left:84.822667pt;}
.xa{left:92.192000pt;}
.x16{left:95.062667pt;}
.x1c{left:100.832000pt;}
.x1f{left:105.632000pt;}
.xe{left:110.742667pt;}
.x1d{left:124.864000pt;}
.x3{left:162.000000pt;}
.x15{left:194.640000pt;}
.xb{left:524.386667pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
}




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