
    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_9967474c4c2bc10c71166972.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_2cecf860da329c7c37c4f878.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_f5b875ff7ec0b4f682bf51bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_3d52ed3d74b8e86404781fa8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_07ff1ed6c8caacd80f8700c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_330713ff32101dc8c56286ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_24974bcf0dd6ccbdcf165dc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.014648;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_189d36c30a1ab1e3489787ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_45cf37f8406982fab05cbb6f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_236a3cbf10e49ee4a4160a7f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_4e6146bb4fdb5f9e77041501.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_06f6fd5a7c521b17b2f0bf98.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.746094;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_e881f89017e5e462ff3a4783.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3c2eb57eccbad1bcaf083e67.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e77366778e1322b1dce53959.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2feb476e1415ed1ebf393b79.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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:ff11;src:url('chunks/assets/font_b69a094bc7633a4aa58acf0a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.062000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-117.000004px;}
.v1{vertical-align:-88.190746px;}
.v5{vertical-align:-86.034346px;}
.v3{vertical-align:-84.153603px;}
.v4{vertical-align:-41.753044px;}
.v7{vertical-align:-13.503600px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:27.398989px;}
.v2{vertical-align:67.013615px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.038529px;}
.ls2{letter-spacing:0.038543px;}
.ls5{letter-spacing:35.974846px;}
.ls7{letter-spacing:41.974840px;}
.ls6{letter-spacing:41.974844px;}
.ls4{letter-spacing:108.000354px;}
.ls8{letter-spacing:243.080267px;}
.ls3{letter-spacing:302.893409px;}
.lsa{letter-spacing:344.330561px;}
.lsb{letter-spacing:910.772012px;}
.lsc{letter-spacing:910.772084px;}
.lsd{letter-spacing:1430.675011px;}
.lse{letter-spacing:1430.675047px;}
.lsf{letter-spacing:1432.293054px;}
.ls9{letter-spacing:2166.409627px;}
.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;}
}
.ws16{word-spacing:-85.320003px;}
.ws5{word-spacing:-33.120000px;}
.wsf{word-spacing:-30.000000px;}
.wse{word-spacing:-29.040000px;}
.ws10{word-spacing:-27.240000px;}
.ws15{word-spacing:-25.596001px;}
.ws8{word-spacing:-23.436000px;}
.wsb{word-spacing:-20.904078px;}
.wsa{word-spacing:-20.679303px;}
.ws13{word-spacing:-19.908000px;}
.ws3{word-spacing:-17.856001px;}
.ws17{word-spacing:-17.490001px;}
.ws12{word-spacing:-14.220000px;}
.ws4{word-spacing:-12.000001px;}
.wsd{word-spacing:-10.500000px;}
.ws1{word-spacing:-8.370000px;}
.ws9{word-spacing:-0.120000px;}
.ws14{word-spacing:-0.108000px;}
.ws2{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:83.335008px;}
.wsc{word-spacing:94.047349px;}
.ws7{word-spacing:199.242454px;}
.ws6{word-spacing:261.019117px;}
._44{margin-left:-14.850000px;}
._a{margin-left:-12.810000px;}
._e{margin-left:-9.751303px;}
._5{margin-left:-7.890000px;}
._b{margin-left:-6.810000px;}
._2{margin-left:-5.748001px;}
._27{margin-left:-4.680000px;}
._1{margin-left:-3.630000px;}
._0{margin-left:-1.830000px;}
._10{width:1.728000px;}
._30{width:3.600000px;}
._38{width:123.244763px;}
._36{width:143.942393px;}
._1f{width:240.094418px;}
._1d{width:262.139840px;}
._9{width:266.513701px;}
._11{width:268.803131px;}
._1e{width:271.318981px;}
._1c{width:272.639912px;}
._1b{width:314.454670px;}
._19{width:342.102952px;}
._18{width:350.334128px;}
._1a{width:355.382191px;}
._17{width:356.462465px;}
._c{width:367.568337px;}
._f{width:372.429984px;}
._3b{width:374.615529px;}
._3{width:432.197409px;}
._40{width:437.078246px;}
._3a{width:466.627147px;}
._4{width:477.523223px;}
._3c{width:493.974157px;}
._8{width:501.863542px;}
._37{width:504.757668px;}
._39{width:508.546668px;}
._7{width:511.313390px;}
._14{width:537.040897px;}
._d{width:547.470768px;}
._2a{width:557.306873px;}
._13{width:583.973629px;}
._16{width:597.567770px;}
._42{width:624.034681px;}
._26{width:677.741568px;}
._12{width:679.856913px;}
._45{width:736.731912px;}
._28{width:750.168332px;}
._20{width:763.914916px;}
._32{width:765.455821px;}
._31{width:789.496381px;}
._23{width:801.457426px;}
._25{width:809.512395px;}
._29{width:921.512053px;}
._6{width:947.949735px;}
._2b{width:971.835388px;}
._22{width:983.109417px;}
._33{width:1015.296822px;}
._41{width:1033.383237px;}
._21{width:1046.341284px;}
._3e{width:1074.851230px;}
._3f{width:1180.312630px;}
._3d{width:1199.170959px;}
._43{width:1221.811553px;}
._24{width:1285.704202px;}
._34{width:1288.000087px;}
._35{width:1289.918617px;}
._2f{width:2189.015100px;}
._2d{width:2502.919336px;}
._2e{width:2504.052571px;}
._15{width:2517.750135px;}
._2c{width:2779.088265px;}
.fcd{color:rgb(219,68,55);}
.fc1{color:rgb(69,84,107);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc5{color:rgb(0,0,0);}
.fca{color:rgb(89,89,89);}
.fc6{color:transparent;}
.fc7{color:rgb(103,78,167);}
.fc0{color:rgb(138,148,156);}
.fc8{color:rgb(10,186,240);}
.fc9{color:rgb(106,168,79);}
.fcc{color:rgb(247,114,90);}
.fc3{color:rgb(0,144,162);}
.fcb{color:rgb(78,77,255);}
.fs0{font-size:30.000000px;}
.fs13{font-size:42.000000px;}
.fsd{font-size:47.368806px;}
.fs5{font-size:48.000003px;}
.fs2{font-size:54.000002px;}
.fsc{font-size:54.135600px;}
.fsb{font-size:60.000000px;}
.fs8{font-size:62.041799px;}
.fs1{font-size:66.000004px;}
.fs12{font-size:68.914199px;}
.fs7{font-size:70.904999px;}
.fs6{font-size:72.000002px;}
.fs11{font-size:74.925011px;}
.fsa{font-size:84.000000px;}
.fs3{font-size:90.000003px;}
.fs9{font-size:96.000006px;}
.fs14{font-size:107.407803px;}
.fs15{font-size:108.000003px;}
.fs4{font-size:120.000001px;}
.fsf{font-size:138.000001px;}
.fs10{font-size:252.000008px;}
.fse{font-size:270.000009px;}
.fs16{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y67{bottom:10.771631px;}
.y69{bottom:17.393382px;}
.y35{bottom:18.496879px;}
.y90{bottom:19.036879px;}
.y83{bottom:21.642506px;}
.y2{bottom:21.762017px;}
.y1{bottom:30.762016px;}
.y87{bottom:35.369869px;}
.ya5{bottom:39.824577px;}
.ye4{bottom:39.824588px;}
.y49{bottom:40.536061px;}
.y10{bottom:40.544566px;}
.y18{bottom:40.544577px;}
.y80{bottom:40.545466px;}
.ydb{bottom:40.556734px;}
.y99{bottom:45.013572px;}
.y62{bottom:45.109973px;}
.y7d{bottom:47.360378px;}
.y84{bottom:48.818379px;}
.y8f{bottom:49.545466px;}
.y8{bottom:57.794236px;}
.y7{bottom:80.474237px;}
.ye3{bottom:81.944583px;}
.yf{bottom:87.344567px;}
.y93{bottom:92.272428px;}
.y2c{bottom:97.743338px;}
.y30{bottom:99.495447px;}
.y4f{bottom:113.139693px;}
.y6{bottom:113.998372px;}
.y24{bottom:120.990821px;}
.yb2{bottom:122.806764px;}
.yb7{bottom:123.025935px;}
.y92{bottom:123.453694px;}
.ye2{bottom:124.064586px;}
.y51{bottom:124.717823px;}
.y34{bottom:128.102419px;}
.yeb{bottom:129.019406px;}
.y37{bottom:132.457867px;}
.y5{bottom:133.798375px;}
.y15{bottom:134.144569px;}
.y77{bottom:135.639745px;}
.y12{bottom:142.182458px;}
.yde{bottom:144.206176px;}
.ycf{bottom:145.448254px;}
.ya0{bottom:146.358797px;}
.yea{bottom:148.819407px;}
.y48{bottom:151.837647px;}
.y4{bottom:153.598373px;}
.y40{bottom:154.134874px;}
.y57{bottom:157.135261px;}
.y23{bottom:164.190811px;}
.y76{bottom:164.860496px;}
.ye1{bottom:166.184584px;}
.ye9{bottom:168.619407px;}
.y47{bottom:169.837652px;}
.y3f{bottom:172.134879px;}
.y11{bottom:172.762457px;}
.y7b{bottom:176.027015px;}
.ybd{bottom:184.743526px;}
.y22{bottom:185.790812px;}
.ye8{bottom:188.419408px;}
.ya6{bottom:188.816348px;}
.ye{bottom:189.982730px;}
.yd9{bottom:193.260103px;}
.y94{bottom:193.580088px;}
.y75{bottom:194.081247px;}
.ya4{bottom:202.712218px;}
.yb3{bottom:205.371428px;}
.y8a{bottom:206.507181px;}
.y46{bottom:206.827654px;}
.y21{bottom:207.390801px;}
.ye0{bottom:208.304584px;}
.y3e{bottom:209.124882px;}
.yca{bottom:209.774406px;}
.yd4{bottom:210.116912px;}
.yba{bottom:211.835406px;}
.y16{bottom:214.107316px;}
.yab{bottom:217.658633px;}
.yd1{bottom:218.634130px;}
.yb9{bottom:220.835406px;}
.yd{bottom:222.382743px;}
.ya3{bottom:222.962219px;}
.y74{bottom:223.301998px;}
.yac{bottom:225.487869px;}
.y89{bottom:227.181439px;}
.yb8{bottom:229.835407px;}
.yc4{bottom:239.081534px;}
.ya2{bottom:243.212220px;}
.y5b{bottom:243.983706px;}
.y2b{bottom:244.377733px;}
.yd8{bottom:245.728193px;}
.ydf{bottom:250.424584px;}
.y20{bottom:250.590802px;}
.yc6{bottom:251.191519px;}
.yc2{bottom:252.036855px;}
.y73{bottom:252.522749px;}
.yc{bottom:254.782732px;}
.y4e{bottom:255.182976px;}
.yaa{bottom:256.101683px;}
.yce{bottom:260.033245px;}
.y36{bottom:261.796230px;}
.ya1{bottom:263.462220px;}
.y1f{bottom:272.190792px;}
.y14{bottom:275.641980px;}
.ya9{bottom:276.775941px;}
.yb6{bottom:279.462950px;}
.y72{bottom:281.743500px;}
.y13{bottom:286.641979px;}
.y45{bottom:290.357315px;}
.y3d{bottom:296.097470px;}
.y56{bottom:297.535861px;}
.yb{bottom:297.982728px;}
.ye7{bottom:298.275774px;}
.y7f{bottom:305.917618px;}
.y44{bottom:308.357315px;}
.y71{bottom:310.964251px;}
.y81{bottom:312.845931px;}
.y3c{bottom:314.097471px;}
.y4d{bottom:314.480241px;}
.y1e{bottom:315.390782px;}
.y9f{bottom:323.605045px;}
.y43{bottom:326.357321px;}
.y82{bottom:326.524941px;}
.y7e{bottom:326.591876px;}
.ya{bottom:330.382724px;}
.y3b{bottom:332.097476px;}
.y1d{bottom:336.990780px;}
.y70{bottom:340.185002px;}
.y42{bottom:344.357321px;}
.yc9{bottom:344.975191px;}
.y2d{bottom:349.823064px;}
.y3a{bottom:350.097476px;}
.y52{bottom:353.534876px;}
.y7c{bottom:354.404816px;}
.y1c{bottom:358.590783px;}
.y54{bottom:359.133303px;}
.y66{bottom:362.387062px;}
.y9{bottom:362.782726px;}
.y9e{bottom:365.005035px;}
.yae{bottom:366.416599px;}
.y6f{bottom:369.405753px;}
.y86{bottom:378.779831px;}
.y1b{bottom:380.190784px;}
.y60{bottom:380.334086px;}
.y41{bottom:381.347323px;}
.y39{bottom:387.087479px;}
.yad{bottom:387.090857px;}
.y2a{bottom:387.096097px;}
.y65{bottom:389.387066px;}
.y5d{bottom:389.915791px;}
.y38{bottom:391.897647px;}
.y6e{bottom:398.626504px;}
.y85{bottom:399.454090px;}
.ye6{bottom:406.275772px;}
.y9d{bottom:406.405048px;}
.ydc{bottom:408.276692px;}
.yc8{bottom:411.502550px;}
.y53{bottom:416.334088px;}
.y64{bottom:416.387065px;}
.yd3{bottom:424.913664px;}
.yc7{bottom:425.286017px;}
.y6d{bottom:427.847255px;}
.y33{bottom:434.805339px;}
.yb5{bottom:434.814283px;}
.y55{bottom:436.336071px;}
.y5c{bottom:436.976815px;}
.yc0{bottom:438.930422px;}
.yb0{bottom:439.220708px;}
.y9c{bottom:447.805038px;}
.ydd{bottom:449.770293px;}
.yb4{bottom:455.488542px;}
.y68{bottom:455.924297px;}
.y28{bottom:456.447631px;}
.y6c{bottom:457.068006px;}
.ybf{bottom:459.604681px;}
.y5f{bottom:461.195314px;}
.y7a{bottom:469.399824px;}
.y50{bottom:471.655335px;}
.y4c{bottom:472.965228px;}
.ycb{bottom:478.737637px;}
.y8e{bottom:479.064288px;}
.y6b{bottom:486.288757px;}
.y9b{bottom:489.205035px;}
.y58{bottom:490.637523px;}
.ycc{bottom:492.417752px;}
.yb1{bottom:492.689409px;}
.y96{bottom:493.859845px;}
.y88{bottom:497.081395px;}
.y32{bottom:499.116051px;}
.y8d{bottom:499.738546px;}
.ybc{bottom:508.311332px;}
.y6a{bottom:515.509506px;}
.y31{bottom:520.387552px;}
.y4b{bottom:522.451212px;}
.ya7{bottom:523.074750px;}
.y95{bottom:526.259852px;}
.y63{bottom:527.292138px;}
.ybb{bottom:528.985590px;}
.yd0{bottom:529.924014px;}
.y9a{bottom:530.605031px;}
.yd7{bottom:533.057927px;}
.y4a{bottom:538.691892px;}
.y98{bottom:538.989468px;}
.y2f{bottom:540.920119px;}
.ycd{bottom:541.126417px;}
.y5a{bottom:541.891681px;}
.y59{bottom:541.891945px;}
.y91{bottom:543.680425px;}
.yc1{bottom:543.948718px;}
.ybe{bottom:546.096837px;}
.yd2{bottom:550.016042px;}
.y27{bottom:550.415882px;}
.yd6{bottom:550.783322px;}
.yc3{bottom:553.189262px;}
.y26{bottom:561.415879px;}
.yaf{bottom:566.780096px;}
.y17{bottom:566.780314px;}
.yda{bottom:568.540158px;}
.yd5{bottom:568.541364px;}
.y79{bottom:569.638068px;}
.y97{bottom:571.211814px;}
.y2e{bottom:571.529638px;}
.yc5{bottom:572.052690px;}
.y25{bottom:572.415876px;}
.y8c{bottom:574.174810px;}
.y5e{bottom:575.216338px;}
.y78{bottom:575.976231px;}
.ye5{bottom:577.410236px;}
.ya8{bottom:580.864959px;}
.y19{bottom:581.000786px;}
.y8b{bottom:584.476562px;}
.y61{bottom:586.794094px;}
.y29{bottom:587.774534px;}
.y1a{bottom:591.181889px;}
.y3{bottom:595.690479px;}
.h1{height:31.500000px;}
.h1a{height:31.504820px;}
.h1b{height:31.504824px;}
.h17{height:44.100000px;}
.hc{height:48.134766px;}
.he{height:49.737246px;}
.h9{height:50.400003px;}
.h3{height:56.700002px;}
.hd{height:56.842380px;}
.h6{height:57.761721px;}
.h16{height:58.898989px;}
.h19{height:63.000000px;}
.hb{height:63.861328px;}
.h8{height:65.143889px;}
.h2{height:69.300004px;}
.h15{height:72.359909px;}
.ha{height:72.984380px;}
.h7{height:74.450249px;}
.h13{height:78.671262px;}
.h11{height:88.200000px;}
.h4{height:94.500003px;}
.h18{height:112.778194px;}
.h1c{height:113.400004px;}
.h5{height:126.000001px;}
.h10{height:144.900001px;}
.h14{height:155.213615px;}
.h12{height:264.600008px;}
.hf{height:283.500009px;}
.h1d{height:378.000012px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x55{left:12.122972px;}
.x1e{left:24.389729px;}
.x62{left:26.376969px;}
.x42{left:29.737250px;}
.x57{left:31.358269px;}
.x28{left:35.406780px;}
.x5a{left:38.420450px;}
.xa4{left:39.541614px;}
.x5f{left:41.262088px;}
.x83{left:42.520202px;}
.x6d{left:44.561015px;}
.x21{left:45.721975px;}
.x5d{left:48.490404px;}
.xa2{left:50.971732px;}
.x64{left:52.198820px;}
.x7a{left:53.980809px;}
.x20{left:55.846975px;}
.xa7{left:57.429002px;}
.x58{left:59.089634px;}
.x79{left:61.653242px;}
.x8e{left:63.047320px;}
.xa8{left:66.227768px;}
.x71{left:69.497158px;}
.x5c{left:70.529724px;}
.x12{left:75.403266px;}
.x38{left:76.463781px;}
.x14{left:80.152214px;}
.x35{left:81.602378px;}
.x18{left:83.769183px;}
.x37{left:85.754541px;}
.x15{left:89.498141px;}
.x70{left:95.326535px;}
.x11{left:97.624112px;}
.x22{left:99.018415px;}
.x1a{left:101.762146px;}
.x3a{left:104.042838px;}
.x2e{left:108.630421px;}
.xa{left:110.849213px;}
.x74{left:117.434891px;}
.x2d{left:120.918784px;}
.x75{left:121.990988px;}
.x30{left:124.772383px;}
.x1f{left:126.532953px;}
.x1b{left:128.392251px;}
.x36{left:129.733980px;}
.xaa{left:131.758155px;}
.xb{left:135.454297px;}
.x3c{left:141.481242px;}
.xe{left:146.804378px;}
.x8f{left:150.252919px;}
.xab{left:151.940588px;}
.x19{left:153.267255px;}
.x16{left:155.561956px;}
.x93{left:157.255639px;}
.x8c{left:160.314024px;}
.x1d{left:164.677382px;}
.x27{left:167.707137px;}
.x90{left:179.963785px;}
.x2b{left:182.206070px;}
.xd{left:187.648629px;}
.xa6{left:189.957392px;}
.x92{left:200.258361px;}
.x23{left:202.567131px;}
.x53{left:206.473372px;}
.x39{left:209.184903px;}
.x3e{left:217.806130px;}
.x5b{left:220.530366px;}
.x41{left:224.429065px;}
.x8b{left:225.688143px;}
.x9e{left:226.949002px;}
.xac{left:228.242422px;}
.x78{left:229.721763px;}
.x46{left:232.660510px;}
.x50{left:235.733966px;}
.x99{left:253.062306px;}
.x54{left:256.407916px;}
.x13{left:265.002709px;}
.x91{left:274.698279px;}
.x5e{left:276.803104px;}
.x44{left:279.951934px;}
.x7c{left:287.464370px;}
.xa5{left:292.007232px;}
.x65{left:301.100342px;}
.x98{left:302.832556px;}
.x3f{left:305.614900px;}
.xa9{left:313.242400px;}
.x1c{left:317.660410px;}
.x67{left:318.814998px;}
.xa0{left:321.882873px;}
.xf{left:323.684234px;}
.xa1{left:329.732635px;}
.x88{left:332.146653px;}
.x85{left:335.535761px;}
.x4f{left:340.816398px;}
.x2f{left:352.874687px;}
.x4a{left:354.998518px;}
.x7f{left:356.617019px;}
.x26{left:368.153359px;}
.x76{left:369.452993px;}
.x77{left:371.334747px;}
.x6c{left:374.792566px;}
.x9f{left:379.163566px;}
.x7e{left:383.894458px;}
.x32{left:384.915260px;}
.x40{left:388.682529px;}
.x3d{left:391.958253px;}
.x2{left:399.702486px;}
.x43{left:423.454851px;}
.x63{left:427.980577px;}
.x4b{left:433.082488px;}
.x8d{left:436.159250px;}
.x95{left:448.269629px;}
.x4c{left:449.627224px;}
.x6f{left:451.287779px;}
.x86{left:458.217352px;}
.x6a{left:460.050458px;}
.x7b{left:466.150838px;}
.x6b{left:492.950570px;}
.x45{left:502.810104px;}
.x89{left:510.642980px;}
.x33{left:516.457521px;}
.xad{left:543.471514px;}
.x24{left:547.178170px;}
.x82{left:548.890023px;}
.x61{left:550.151624px;}
.x81{left:555.874893px;}
.xa3{left:560.398912px;}
.x9d{left:562.337590px;}
.x9b{left:564.584576px;}
.x49{left:580.346743px;}
.x29{left:581.902234px;}
.x66{left:590.702382px;}
.x4e{left:593.549288px;}
.x94{left:617.415387px;}
.x4d{left:625.949435px;}
.x9c{left:633.533328px;}
.x7{left:635.420229px;}
.x6{left:637.795303px;}
.x8{left:641.394012px;}
.x34{left:643.590388px;}
.x17{left:654.970515px;}
.x3{left:657.574248px;}
.x51{left:663.376813px;}
.x9{left:664.557724px;}
.x8a{left:673.303914px;}
.x4{left:692.957589px;}
.x52{left:699.348946px;}
.x10{left:704.608931px;}
.xb1{left:706.136732px;}
.x5{left:718.827559px;}
.x96{left:729.086131px;}
.x97{left:732.923110px;}
.xae{left:739.313287px;}
.x69{left:741.116026px;}
.x59{left:754.331762px;}
.xaf{left:759.338271px;}
.x25{left:760.497099px;}
.x47{left:762.683896px;}
.xb0{left:771.413458px;}
.xc{left:773.516264px;}
.x9a{left:783.840223px;}
.x3b{left:789.135820px;}
.x2a{left:820.988734px;}
.x2c{left:841.829247px;}
.x6e{left:863.913146px;}
.x60{left:874.098697px;}
.x7d{left:881.719239px;}
.x1{left:885.918741px;}
.x80{left:891.526433px;}
.x84{left:899.101384px;}
.x48{left:901.032903px;}
.x68{left:925.198102px;}
.x73{left:938.996067px;}
.x72{left:954.577504px;}
.x87{left:974.796522px;}
.x56{left:1052.819400px;}
.x31{left:1054.498297px;}
@media print{
.v8{vertical-align:-104.000003pt;}
.v1{vertical-align:-78.391775pt;}
.v5{vertical-align:-76.474974pt;}
.v3{vertical-align:-74.803202pt;}
.v4{vertical-align:-37.113817pt;}
.v7{vertical-align:-12.003200pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:24.354657pt;}
.v2{vertical-align:59.567658pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.034248pt;}
.ls2{letter-spacing:0.034260pt;}
.ls5{letter-spacing:31.977641pt;}
.ls7{letter-spacing:37.310969pt;}
.ls6{letter-spacing:37.310972pt;}
.ls4{letter-spacing:96.000315pt;}
.ls8{letter-spacing:216.071349pt;}
.ls3{letter-spacing:269.238586pt;}
.lsa{letter-spacing:306.071610pt;}
.lsb{letter-spacing:809.575122pt;}
.lsc{letter-spacing:809.575186pt;}
.lsd{letter-spacing:1271.711121pt;}
.lse{letter-spacing:1271.711153pt;}
.lsf{letter-spacing:1273.149381pt;}
.ls9{letter-spacing:1925.697446pt;}
.ws16{word-spacing:-75.840002pt;}
.ws5{word-spacing:-29.440000pt;}
.wsf{word-spacing:-26.666667pt;}
.wse{word-spacing:-25.813334pt;}
.ws10{word-spacing:-24.213334pt;}
.ws15{word-spacing:-22.752001pt;}
.ws8{word-spacing:-20.832000pt;}
.wsb{word-spacing:-18.581403pt;}
.wsa{word-spacing:-18.381603pt;}
.ws13{word-spacing:-17.696000pt;}
.ws3{word-spacing:-15.872001pt;}
.ws17{word-spacing:-15.546668pt;}
.ws12{word-spacing:-12.640000pt;}
.ws4{word-spacing:-10.666667pt;}
.wsd{word-spacing:-9.333333pt;}
.ws1{word-spacing:-7.440000pt;}
.ws9{word-spacing:-0.106667pt;}
.ws14{word-spacing:-0.096000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:74.075563pt;}
.wsc{word-spacing:83.597643pt;}
.ws7{word-spacing:177.104403pt;}
.ws6{word-spacing:232.016993pt;}
._44{margin-left:-13.200000pt;}
._a{margin-left:-11.386667pt;}
._e{margin-left:-8.667825pt;}
._5{margin-left:-7.013333pt;}
._b{margin-left:-6.053333pt;}
._2{margin-left:-5.109334pt;}
._27{margin-left:-4.160000pt;}
._1{margin-left:-3.226667pt;}
._0{margin-left:-1.626667pt;}
._10{width:1.536000pt;}
._30{width:3.200000pt;}
._38{width:109.550900pt;}
._36{width:127.948794pt;}
._1f{width:213.417260pt;}
._1d{width:233.013191pt;}
._9{width:236.901068pt;}
._11{width:238.936116pt;}
._1e{width:241.172427pt;}
._1c{width:242.346588pt;}
._1b{width:279.515263pt;}
._19{width:304.091513pt;}
._18{width:311.408114pt;}
._1a{width:315.895281pt;}
._17{width:316.855525pt;}
._c{width:326.727410pt;}
._f{width:331.048875pt;}
._3b{width:332.991581pt;}
._3{width:384.175475pt;}
._40{width:388.513997pt;}
._3a{width:414.779686pt;}
._4{width:424.465087pt;}
._3c{width:439.088139pt;}
._8{width:446.100927pt;}
._37{width:448.673482pt;}
._39{width:452.041483pt;}
._7{width:454.500791pt;}
._14{width:477.369686pt;}
._d{width:486.640683pt;}
._2a{width:495.383887pt;}
._13{width:519.087670pt;}
._16{width:531.171351pt;}
._42{width:554.697494pt;}
._26{width:602.436949pt;}
._12{width:604.317256pt;}
._45{width:654.872810pt;}
._28{width:666.816295pt;}
._20{width:679.035481pt;}
._32{width:680.405175pt;}
._31{width:701.774561pt;}
._23{width:712.406601pt;}
._25{width:719.566574pt;}
._29{width:819.121825pt;}
._6{width:842.621986pt;}
._2b{width:863.853678pt;}
._22{width:873.875037pt;}
._33{width:902.486064pt;}
._41{width:918.562877pt;}
._21{width:930.081141pt;}
._3e{width:955.423316pt;}
._3f{width:1049.166782pt;}
._3d{width:1065.929741pt;}
._43{width:1086.054714pt;}
._24{width:1142.848179pt;}
._34{width:1144.888966pt;}
._35{width:1146.594327pt;}
._2f{width:1945.791200pt;}
._2d{width:2224.817187pt;}
._2e{width:2225.824508pt;}
._15{width:2238.000120pt;}
._2c{width:2470.300680pt;}
.fs0{font-size:26.666667pt;}
.fs13{font-size:37.333333pt;}
.fsd{font-size:42.105605pt;}
.fs5{font-size:42.666669pt;}
.fs2{font-size:48.000002pt;}
.fsc{font-size:48.120534pt;}
.fsb{font-size:53.333334pt;}
.fs8{font-size:55.148266pt;}
.fs1{font-size:58.666670pt;}
.fs12{font-size:61.257066pt;}
.fs7{font-size:63.026666pt;}
.fs6{font-size:64.000002pt;}
.fs11{font-size:66.600010pt;}
.fsa{font-size:74.666666pt;}
.fs3{font-size:80.000003pt;}
.fs9{font-size:85.333339pt;}
.fs14{font-size:95.473603pt;}
.fs15{font-size:96.000003pt;}
.fs4{font-size:106.666667pt;}
.fsf{font-size:122.666668pt;}
.fs10{font-size:224.000007pt;}
.fse{font-size:240.000008pt;}
.fs16{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:9.574783pt;}
.y69{bottom:15.460784pt;}
.y35{bottom:16.441670pt;}
.y90{bottom:16.921670pt;}
.y83{bottom:19.237783pt;}
.y2{bottom:19.344015pt;}
.y1{bottom:27.344015pt;}
.y87{bottom:31.439884pt;}
.ya5{bottom:35.399624pt;}
.ye4{bottom:35.399634pt;}
.y49{bottom:36.032054pt;}
.y10{bottom:36.039614pt;}
.y18{bottom:36.039624pt;}
.y80{bottom:36.040414pt;}
.ydb{bottom:36.050430pt;}
.y99{bottom:40.012064pt;}
.y62{bottom:40.097754pt;}
.y7d{bottom:42.098114pt;}
.y84{bottom:43.394115pt;}
.y8f{bottom:44.040414pt;}
.y8{bottom:51.372654pt;}
.y7{bottom:71.532656pt;}
.ye3{bottom:72.839629pt;}
.yf{bottom:77.639615pt;}
.y93{bottom:82.019936pt;}
.y2c{bottom:86.882967pt;}
.y30{bottom:88.440397pt;}
.y4f{bottom:100.568616pt;}
.y6{bottom:101.331886pt;}
.y24{bottom:107.547396pt;}
.yb2{bottom:109.161568pt;}
.yb7{bottom:109.356387pt;}
.y92{bottom:109.736617pt;}
.ye2{bottom:110.279632pt;}
.y51{bottom:110.860287pt;}
.y34{bottom:113.868817pt;}
.yeb{bottom:114.683916pt;}
.y37{bottom:117.740326pt;}
.y5{bottom:118.931889pt;}
.y15{bottom:119.239617pt;}
.y77{bottom:120.568663pt;}
.y12{bottom:126.384407pt;}
.yde{bottom:128.183267pt;}
.ycf{bottom:129.287337pt;}
.ya0{bottom:130.096709pt;}
.yea{bottom:132.283917pt;}
.y48{bottom:134.966797pt;}
.y4{bottom:136.531887pt;}
.y40{bottom:137.008777pt;}
.y57{bottom:139.675787pt;}
.y23{bottom:145.947387pt;}
.y76{bottom:146.542663pt;}
.ye1{bottom:147.719630pt;}
.ye9{bottom:149.883918pt;}
.y47{bottom:150.966802pt;}
.y3f{bottom:153.008782pt;}
.y11{bottom:153.566628pt;}
.y7b{bottom:156.468458pt;}
.ybd{bottom:164.216468pt;}
.y22{bottom:165.147388pt;}
.ye8{bottom:167.483918pt;}
.ya6{bottom:167.836753pt;}
.ye{bottom:168.873538pt;}
.yd9{bottom:171.786759pt;}
.y94{bottom:172.071189pt;}
.y75{bottom:172.516664pt;}
.ya4{bottom:180.188638pt;}
.yb3{bottom:182.552380pt;}
.y8a{bottom:183.561939pt;}
.y46{bottom:183.846804pt;}
.y21{bottom:184.347379pt;}
.ye0{bottom:185.159631pt;}
.y3e{bottom:185.888784pt;}
.yca{bottom:186.466139pt;}
.yd4{bottom:186.770589pt;}
.yba{bottom:188.298139pt;}
.y16{bottom:190.317614pt;}
.yab{bottom:193.474341pt;}
.yd1{bottom:194.341449pt;}
.yb9{bottom:196.298139pt;}
.yd{bottom:197.673549pt;}
.ya3{bottom:198.188639pt;}
.y74{bottom:198.490665pt;}
.yac{bottom:200.433661pt;}
.y89{bottom:201.939057pt;}
.yb8{bottom:204.298140pt;}
.yc4{bottom:212.516920pt;}
.ya2{bottom:216.188640pt;}
.y5b{bottom:216.874406pt;}
.y2b{bottom:217.224651pt;}
.yd8{bottom:218.425060pt;}
.ydf{bottom:222.599630pt;}
.y20{bottom:222.747380pt;}
.yc6{bottom:223.281350pt;}
.yc2{bottom:224.032760pt;}
.y73{bottom:224.464666pt;}
.yc{bottom:226.473540pt;}
.y4e{bottom:226.829312pt;}
.yaa{bottom:227.645940pt;}
.yce{bottom:231.140662pt;}
.y36{bottom:232.707760pt;}
.ya1{bottom:234.188640pt;}
.y1f{bottom:241.947370pt;}
.y14{bottom:245.015094pt;}
.ya9{bottom:246.023059pt;}
.yb6{bottom:248.411511pt;}
.y72{bottom:250.438667pt;}
.y13{bottom:254.792870pt;}
.y45{bottom:258.095391pt;}
.y3d{bottom:263.197751pt;}
.y56{bottom:264.476321pt;}
.yb{bottom:264.873536pt;}
.ye7{bottom:265.134021pt;}
.y7f{bottom:271.926771pt;}
.y44{bottom:274.095391pt;}
.y71{bottom:276.412668pt;}
.y81{bottom:278.085272pt;}
.y3c{bottom:279.197752pt;}
.y4d{bottom:279.537992pt;}
.y1e{bottom:280.347362pt;}
.y9f{bottom:287.648929pt;}
.y43{bottom:290.095396pt;}
.y82{bottom:290.244392pt;}
.y7e{bottom:290.303890pt;}
.ya{bottom:293.673532pt;}
.y3b{bottom:295.197756pt;}
.y1d{bottom:299.547360pt;}
.y70{bottom:302.386668pt;}
.y42{bottom:306.095397pt;}
.yc9{bottom:306.644614pt;}
.y2d{bottom:310.953834pt;}
.y3a{bottom:311.197757pt;}
.y52{bottom:314.253223pt;}
.y7c{bottom:315.026503pt;}
.y1c{bottom:318.747363pt;}
.y54{bottom:319.229603pt;}
.y66{bottom:322.121833pt;}
.y9{bottom:322.473534pt;}
.y9e{bottom:324.448920pt;}
.yae{bottom:325.703643pt;}
.y6f{bottom:328.360669pt;}
.y86{bottom:336.693183pt;}
.y1b{bottom:337.947364pt;}
.y60{bottom:338.074744pt;}
.y41{bottom:338.975399pt;}
.y39{bottom:344.077759pt;}
.yad{bottom:344.080762pt;}
.y2a{bottom:344.085420pt;}
.y65{bottom:346.121837pt;}
.y5d{bottom:346.591814pt;}
.y38{bottom:348.353464pt;}
.y6e{bottom:354.334670pt;}
.y85{bottom:355.070302pt;}
.ye6{bottom:361.134019pt;}
.y9d{bottom:361.248931pt;}
.ydc{bottom:362.912615pt;}
.yc8{bottom:365.780044pt;}
.y53{bottom:370.074745pt;}
.y64{bottom:370.121836pt;}
.yd3{bottom:377.701035pt;}
.yc7{bottom:378.032015pt;}
.y6d{bottom:380.308671pt;}
.y33{bottom:386.493635pt;}
.yb5{bottom:386.501585pt;}
.y55{bottom:387.854285pt;}
.y5c{bottom:388.423835pt;}
.yc0{bottom:390.160375pt;}
.yb0{bottom:390.418407pt;}
.y9c{bottom:398.048922pt;}
.ydd{bottom:399.795816pt;}
.yb4{bottom:404.878704pt;}
.y68{bottom:405.266042pt;}
.y28{bottom:405.731228pt;}
.y6c{bottom:406.282672pt;}
.ybf{bottom:408.537494pt;}
.y5f{bottom:409.951390pt;}
.y7a{bottom:417.244288pt;}
.y50{bottom:419.249187pt;}
.y4c{bottom:420.413536pt;}
.ycb{bottom:425.544566pt;}
.y8e{bottom:425.834922pt;}
.y6b{bottom:432.256673pt;}
.y9b{bottom:434.848920pt;}
.y58{bottom:436.122243pt;}
.ycc{bottom:437.704669pt;}
.yb1{bottom:437.946142pt;}
.y96{bottom:438.986529pt;}
.y88{bottom:441.850129pt;}
.y32{bottom:443.658712pt;}
.y8d{bottom:444.212041pt;}
.ybc{bottom:451.832295pt;}
.y6a{bottom:458.230672pt;}
.y31{bottom:462.566713pt;}
.y4b{bottom:464.401078pt;}
.ya7{bottom:464.955333pt;}
.y95{bottom:467.786535pt;}
.y63{bottom:468.704123pt;}
.ybb{bottom:470.209414pt;}
.yd0{bottom:471.043568pt;}
.y9a{bottom:471.648917pt;}
.yd7{bottom:473.829268pt;}
.y4a{bottom:478.837237pt;}
.y98{bottom:479.101749pt;}
.y2f{bottom:480.817884pt;}
.ycd{bottom:481.001259pt;}
.y5a{bottom:481.681494pt;}
.y59{bottom:481.681729pt;}
.y91{bottom:483.271489pt;}
.yc1{bottom:483.509972pt;}
.ybe{bottom:485.419411pt;}
.yd2{bottom:488.903148pt;}
.y27{bottom:489.258561pt;}
.yd6{bottom:489.585175pt;}
.yc3{bottom:491.723789pt;}
.y26{bottom:499.036337pt;}
.yaf{bottom:503.804530pt;}
.y17{bottom:503.804724pt;}
.yda{bottom:505.369029pt;}
.yd5{bottom:505.370101pt;}
.y79{bottom:506.344949pt;}
.y97{bottom:507.743834pt;}
.y2e{bottom:508.026345pt;}
.yc5{bottom:508.491280pt;}
.y25{bottom:508.814112pt;}
.y8c{bottom:510.377608pt;}
.y5e{bottom:511.303412pt;}
.y78{bottom:511.978872pt;}
.ye5{bottom:513.253543pt;}
.ya8{bottom:516.324408pt;}
.y19{bottom:516.445143pt;}
.y8b{bottom:519.534722pt;}
.y61{bottom:521.594750pt;}
.y29{bottom:522.466252pt;}
.y1a{bottom:525.495012pt;}
.y3{bottom:529.502648pt;}
.h1{height:28.000000pt;}
.h1a{height:28.004284pt;}
.h1b{height:28.004288pt;}
.h17{height:39.200000pt;}
.hc{height:42.786459pt;}
.he{height:44.210886pt;}
.h9{height:44.800003pt;}
.h3{height:50.400002pt;}
.hd{height:50.526560pt;}
.h6{height:51.343752pt;}
.h16{height:52.354657pt;}
.h19{height:56.000000pt;}
.hb{height:56.765625pt;}
.h8{height:57.905679pt;}
.h2{height:61.600003pt;}
.h15{height:64.319919pt;}
.ha{height:64.875004pt;}
.h7{height:66.177999pt;}
.h13{height:69.930011pt;}
.h11{height:78.400000pt;}
.h4{height:84.000003pt;}
.h18{height:100.247283pt;}
.h1c{height:100.800003pt;}
.h5{height:112.000001pt;}
.h10{height:128.800001pt;}
.h14{height:137.967658pt;}
.h12{height:235.200008pt;}
.hf{height:252.000008pt;}
.h1d{height:336.000011pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x55{left:10.775975pt;}
.x1e{left:21.679759pt;}
.x62{left:23.446195pt;}
.x42{left:26.433111pt;}
.x57{left:27.874017pt;}
.x28{left:31.472693pt;}
.x5a{left:34.151511pt;}
.xa4{left:35.148101pt;}
.x5f{left:36.677411pt;}
.x83{left:37.795735pt;}
.x6d{left:39.609791pt;}
.x21{left:40.641755pt;}
.x5d{left:43.102581pt;}
.xa2{left:45.308206pt;}
.x64{left:46.398951pt;}
.x7a{left:47.982942pt;}
.x20{left:49.641756pt;}
.xa7{left:51.048002pt;}
.x58{left:52.524119pt;}
.x79{left:54.802882pt;}
.x8e{left:56.042062pt;}
.xa8{left:58.869127pt;}
.x71{left:61.775252pt;}
.x5c{left:62.693088pt;}
.x12{left:67.025125pt;}
.x38{left:67.967805pt;}
.x14{left:71.246412pt;}
.x35{left:72.535447pt;}
.x18{left:74.461496pt;}
.x37{left:76.226258pt;}
.x15{left:79.553904pt;}
.x70{left:84.734698pt;}
.x11{left:86.776989pt;}
.x22{left:88.016369pt;}
.x1a{left:90.455241pt;}
.x3a{left:92.482523pt;}
.x2e{left:96.560374pt;}
.xa{left:98.532634pt;}
.x74{left:104.386569pt;}
.x2d{left:107.483363pt;}
.x75{left:108.436433pt;}
.x30{left:110.908785pt;}
.x1f{left:112.473736pt;}
.x1b{left:114.126446pt;}
.x36{left:115.319094pt;}
.xaa{left:117.118360pt;}
.xb{left:120.403820pt;}
.x3c{left:125.761104pt;}
.xe{left:130.492780pt;}
.x8f{left:133.558150pt;}
.xab{left:135.058300pt;}
.x19{left:136.237560pt;}
.x16{left:138.277294pt;}
.x93{left:139.782790pt;}
.x8c{left:142.501355pt;}
.x1d{left:146.379895pt;}
.x27{left:149.073011pt;}
.x90{left:159.967809pt;}
.x2b{left:161.960951pt;}
.xd{left:166.798781pt;}
.xa6{left:168.851015pt;}
.x92{left:178.007432pt;}
.x23{left:180.059672pt;}
.x53{left:183.531886pt;}
.x39{left:185.942136pt;}
.x3e{left:193.605449pt;}
.x5b{left:196.026992pt;}
.x41{left:199.492502pt;}
.x8b{left:200.611682pt;}
.x9e{left:201.732446pt;}
.xac{left:202.882152pt;}
.x78{left:204.197123pt;}
.x46{left:206.809343pt;}
.x50{left:209.541303pt;}
.x99{left:224.944272pt;}
.x54{left:227.918147pt;}
.x13{left:235.557964pt;}
.x91{left:244.176248pt;}
.x5e{left:246.047204pt;}
.x44{left:248.846164pt;}
.x7c{left:255.523884pt;}
.xa5{left:259.561984pt;}
.x65{left:267.644749pt;}
.x98{left:269.184495pt;}
.x3f{left:271.657689pt;}
.xa9{left:278.437689pt;}
.x1c{left:282.364809pt;}
.x67{left:283.391109pt;}
.xa0{left:286.118109pt;}
.xf{left:287.719319pt;}
.xa1{left:293.095675pt;}
.x88{left:295.241469pt;}
.x85{left:298.254010pt;}
.x4f{left:302.947910pt;}
.x2f{left:313.666388pt;}
.x4a{left:315.554238pt;}
.x7f{left:316.992906pt;}
.x26{left:327.247430pt;}
.x76{left:328.402661pt;}
.x77{left:330.075331pt;}
.x6c{left:333.148948pt;}
.x9f{left:337.034281pt;}
.x7e{left:341.239518pt;}
.x32{left:342.146898pt;}
.x40{left:345.495581pt;}
.x3d{left:348.407336pt;}
.x2{left:355.291098pt;}
.x43{left:376.404312pt;}
.x63{left:380.427179pt;}
.x4b{left:384.962211pt;}
.x8d{left:387.697111pt;}
.x95{left:398.461893pt;}
.x4c{left:399.668644pt;}
.x6f{left:401.144693pt;}
.x86{left:407.304313pt;}
.x6a{left:408.933740pt;}
.x7b{left:414.356300pt;}
.x6b{left:438.178284pt;}
.x45{left:446.942314pt;}
.x89{left:453.904872pt;}
.x33{left:459.073352pt;}
.xad{left:483.085790pt;}
.x24{left:486.380596pt;}
.x82{left:487.902243pt;}
.x61{left:489.023666pt;}
.x81{left:494.111016pt;}
.xa3{left:498.132366pt;}
.x9d{left:499.855636pt;}
.x9b{left:501.852956pt;}
.x49{left:515.863772pt;}
.x29{left:517.246431pt;}
.x66{left:525.068784pt;}
.x4e{left:527.599367pt;}
.x94{left:548.813678pt;}
.x4d{left:556.399498pt;}
.x9c{left:563.140736pt;}
.x7{left:564.817982pt;}
.x6{left:566.929158pt;}
.x8{left:570.128010pt;}
.x34{left:572.080345pt;}
.x17{left:582.196014pt;}
.x3{left:584.510443pt;}
.x51{left:589.668278pt;}
.x9{left:590.717977pt;}
.x8a{left:598.492368pt;}
.x4{left:615.962302pt;}
.x52{left:621.643508pt;}
.x10{left:626.319050pt;}
.xb1{left:627.677095pt;}
.x5{left:638.957830pt;}
.x96{left:648.076561pt;}
.x97{left:651.487209pt;}
.xae{left:657.167366pt;}
.x69{left:658.769801pt;}
.x59{left:670.517121pt;}
.xaf{left:674.967352pt;}
.x25{left:675.997422pt;}
.x47{left:677.941241pt;}
.xb0{left:685.700852pt;}
.xc{left:687.570012pt;}
.x9a{left:696.746865pt;}
.x3b{left:701.454062pt;}
.x2a{left:729.767763pt;}
.x2c{left:748.292664pt;}
.x6e{left:767.922797pt;}
.x60{left:776.976620pt;}
.x7d{left:783.750435pt;}
.x1{left:787.483325pt;}
.x80{left:792.467940pt;}
.x84{left:799.201231pt;}
.x48{left:800.918136pt;}
.x68{left:822.398313pt;}
.x73{left:834.663171pt;}
.x72{left:848.513337pt;}
.x87{left:866.485798pt;}
.x56{left:935.839467pt;}
.x31{left:937.331820pt;}
}




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