
    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_9d214ccf8f52e001bb4f15aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_8cf3e63afe0af35721ad4b68.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_9271417aa43f166e7c1a44a2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_9d7e4c26263c8c63f083c139.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_f662ce1ced65aee33fc927b0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_26d9ea33dadef818883f9159.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_d589a07008243eb4ab22e8bb.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_316c43142d839d2019a927db.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a1b4cc473e47e41d11fc932c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_2f1fbf472fdf5685b3507b1a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.030273;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_6e239ca38d9d4c74eb56a09f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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_76336dbc816e966ad0ce29bc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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_d525b1f6a45e90b95bd075d3.woff')format("woff");}.ffd{font-family:ffd;line-height:1.087891;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_38431df6c5e5ba3c8fa7dff7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.769043;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);}
.vb{vertical-align:-27.000000px;}
.v4{vertical-align:-18.000000px;}
.v8{vertical-align:-9.000000px;}
.vd{vertical-align:-3.480000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.600000px;}
.v1{vertical-align:7.650000px;}
.v9{vertical-align:9.000000px;}
.v3{vertical-align:18.000000px;}
.v2{vertical-align:25.680000px;}
.vc{vertical-align:27.000000px;}
.ve{vertical-align:31.620000px;}
.v6{vertical-align:36.900000px;}
.v5{vertical-align:39.600000px;}
.va{vertical-align:46.680000px;}
.ls10{letter-spacing:-6.780000px;}
.ls18{letter-spacing:-2.694000px;}
.ls19{letter-spacing:-2.544000px;}
.lsb{letter-spacing:-2.232000px;}
.lsc{letter-spacing:-2.142000px;}
.lsd{letter-spacing:-2.082000px;}
.ls11{letter-spacing:-1.992000px;}
.ls5{letter-spacing:-1.338000px;}
.ls17{letter-spacing:-0.433200px;}
.ls24{letter-spacing:-0.430200px;}
.ls6{letter-spacing:-0.011100px;}
.ls1{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.034050px;}
.ls35{letter-spacing:0.094050px;}
.ls3d{letter-spacing:0.139200px;}
.ls3b{letter-spacing:0.351000px;}
.ls2d{letter-spacing:0.384600px;}
.ls37{letter-spacing:0.468000px;}
.ls1a{letter-spacing:0.508200px;}
.ls30{letter-spacing:0.534600px;}
.ls4{letter-spacing:0.575400px;}
.ls36{letter-spacing:0.618000px;}
.ls3c{letter-spacing:0.726000px;}
.ls2a{letter-spacing:0.744000px;}
.ls3a{letter-spacing:0.828000px;}
.ls16{letter-spacing:0.870000px;}
.ls1c{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.044000px;}
.lse{letter-spacing:1.266000px;}
.ls29{letter-spacing:1.362000px;}
.ls27{letter-spacing:1.404000px;}
.ls12{letter-spacing:1.470000px;}
.ls3{letter-spacing:1.680000px;}
.ls25{letter-spacing:3.198000px;}
.ls28{letter-spacing:3.276000px;}
.ls2b{letter-spacing:3.348000px;}
.ls26{letter-spacing:3.426000px;}
.ls0{letter-spacing:20.955000px;}
.lsa{letter-spacing:50.832900px;}
.ls9{letter-spacing:78.022500px;}
.lsf{letter-spacing:78.075000px;}
.ls8{letter-spacing:78.142500px;}
.ls7{letter-spacing:78.195000px;}
.ls13{letter-spacing:105.142500px;}
.ls39{letter-spacing:105.172500px;}
.ls14{letter-spacing:105.195000px;}
.ls38{letter-spacing:105.225000px;}
.ls1b{letter-spacing:473.860050px;}
.ls31{letter-spacing:537.154050px;}
.ls2c{letter-spacing:540.874050px;}
.ls2f{letter-spacing:576.394050px;}
.ls2e{letter-spacing:581.554050px;}
.ls15{letter-spacing:582.877500px;}
.ls32{letter-spacing:680.304000px;}
.ls1d{letter-spacing:708.504000px;}
.ls1e{letter-spacing:830.860050px;}
.ls21{letter-spacing:935.140050px;}
.ls20{letter-spacing:950.680050px;}
.ls22{letter-spacing:975.984000px;}
.ls33{letter-spacing:1051.524000px;}
.ls23{letter-spacing:1256.410050px;}
.ls1f{letter-spacing:1274.890050px;}
.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;}
}
.ws1d{word-spacing:-85.650000px;}
.ws45{word-spacing:-58.650000px;}
.wse{word-spacing:-44.283450px;}
.ws4d{word-spacing:-43.798800px;}
.ws19{word-spacing:-32.611800px;}
.ws1a{word-spacing:-32.577900px;}
.ws4c{word-spacing:-31.629000px;}
.ws4e{word-spacing:-28.119000px;}
.ws1e{word-spacing:-23.700000px;}
.ws17{word-spacing:-23.535000px;}
.ws1f{word-spacing:-23.100000px;}
.ws43{word-spacing:-23.097000px;}
.ws14{word-spacing:-22.269000px;}
.ws44{word-spacing:-22.230000px;}
.ws1c{word-spacing:-20.238000px;}
.ws16{word-spacing:-20.187000px;}
.ws15{word-spacing:-20.088000px;}
.ws39{word-spacing:-20.057700px;}
.ws13{word-spacing:-20.037000px;}
.ws3f{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.426950px;}
.ws22{word-spacing:-17.589000px;}
.ws23{word-spacing:-17.550000px;}
.ws47{word-spacing:-16.890000px;}
.ws46{word-spacing:-16.254000px;}
.ws2d{word-spacing:-16.020000px;}
.ws30{word-spacing:-16.008450px;}
.ws48{word-spacing:-15.975000px;}
.ws1b{word-spacing:-15.450000px;}
.ws32{word-spacing:-15.390450px;}
.ws4a{word-spacing:-15.388200px;}
.ws18{word-spacing:-15.249000px;}
.ws2a{word-spacing:-14.646450px;}
.ws2e{word-spacing:-14.616000px;}
.ws49{word-spacing:-13.911000px;}
.ws40{word-spacing:-13.802700px;}
.ws36{word-spacing:-13.761000px;}
.ws21{word-spacing:-11.700000px;}
.ws2b{word-spacing:-10.734000px;}
.ws34{word-spacing:-10.686450px;}
.ws2f{word-spacing:-10.584000px;}
.ws29{word-spacing:-10.536450px;}
.ws3d{word-spacing:-0.864150px;}
.wsd{word-spacing:-0.705600px;}
.ws4b{word-spacing:-0.465600px;}
.ws9{word-spacing:-0.462150px;}
.ws38{word-spacing:-0.206850px;}
.ws28{word-spacing:-0.072150px;}
.ws31{word-spacing:-0.072000px;}
.ws12{word-spacing:0.000000px;}
.wsa{word-spacing:0.343950px;}
.wsf{word-spacing:1.047300px;}
.ws3e{word-spacing:1.392000px;}
.ws11{word-spacing:1.631400px;}
.ws6{word-spacing:1.638000px;}
.wsc{word-spacing:1.848600px;}
.ws3b{word-spacing:2.074500px;}
.ws8{word-spacing:3.580350px;}
.ws7{word-spacing:3.886500px;}
.ws4{word-spacing:4.515000px;}
.ws10{word-spacing:5.235450px;}
.wsb{word-spacing:5.295450px;}
.ws3{word-spacing:5.416500px;}
.ws5{word-spacing:6.249000px;}
.ws0{word-spacing:23.958900px;}
.ws2{word-spacing:24.575100px;}
.ws25{word-spacing:66.551700px;}
.ws27{word-spacing:481.668000px;}
.ws2c{word-spacing:538.976550px;}
.ws20{word-spacing:554.662500px;}
.ws35{word-spacing:620.376000px;}
.ws33{word-spacing:656.388900px;}
.ws24{word-spacing:748.301400px;}
.ws41{word-spacing:782.507700px;}
.ws3a{word-spacing:797.057700px;}
.ws3c{word-spacing:817.217700px;}
.ws37{word-spacing:858.257700px;}
.ws42{word-spacing:1354.592700px;}
.ws26{word-spacing:1578.652500px;}
._36{margin-left:-11.970300px;}
._1e{margin-left:-10.522950px;}
._29{margin-left:-7.992000px;}
._12{margin-left:-6.724200px;}
._13{margin-left:-5.531100px;}
._d{margin-left:-4.448850px;}
._7{margin-left:-2.952300px;}
._2{margin-left:-1.935450px;}
._6{width:1.141800px;}
._0{width:2.170050px;}
._1{width:4.127400px;}
._8{width:5.269950px;}
._16{width:6.286500px;}
._11{width:7.704150px;}
._c{width:16.302150px;}
._a{width:17.353350px;}
._b{width:19.462500px;}
._1a{width:20.492400px;}
._9{width:22.914150px;}
._34{width:24.951900px;}
._35{width:25.997100px;}
._31{width:31.668300px;}
._18{width:35.321850px;}
._2a{width:39.286500px;}
._4{width:41.132400px;}
._5{width:42.381300px;}
._3{width:43.386450px;}
._32{width:45.141150px;}
._e{width:52.680000px;}
._2f{width:57.361650px;}
._2e{width:58.394850px;}
._30{width:64.864800px;}
._10{width:66.116550px;}
._f{width:67.213650px;}
._19{width:68.685300px;}
._2b{width:76.138050px;}
._2c{width:98.215350px;}
._33{width:123.240300px;}
._15{width:128.610600px;}
._14{width:130.240050px;}
._2d{width:133.488300px;}
._24{width:332.142000px;}
._23{width:496.829700px;}
._28{width:497.862000px;}
._25{width:499.502100px;}
._1f{width:521.918100px;}
._26{width:581.481900px;}
._1b{width:584.354400px;}
._27{width:597.991050px;}
._20{width:634.361850px;}
._1d{width:635.774550px;}
._17{width:669.396450px;}
._1c{width:698.476050px;}
._22{width:706.030500px;}
._21{width:708.947850px;}
.fc6{color:rgb(32,56,100);}
.fc4{color:rgb(0,166,255);}
.fc3{color:rgb(0,32,96);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(36,48,110);}
.fc1{color:rgb(242,242,242);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:36.000000px;}
.fse{font-size:36.150000px;}
.fsb{font-size:45.000000px;}
.fs10{font-size:49.500000px;}
.fs11{font-size:49.650000px;}
.fs1{font-size:58.500000px;}
.fs0{font-size:58.650000px;}
.fsa{font-size:67.500000px;}
.fs9{font-size:67.650000px;}
.fsd{font-size:72.000000px;}
.fs6{font-size:72.150000px;}
.fs7{font-size:85.500000px;}
.fs4{font-size:85.650000px;}
.fsc{font-size:108.150000px;}
.fs13{font-size:121.650000px;}
.fs5{font-size:144.150000px;}
.fs8{font-size:144.300000px;}
.fs3{font-size:193.650000px;}
.fs2{font-size:193.800000px;}
.fs12{font-size:238.800000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:12.337500px;}
.y3{bottom:13.537500px;}
.y9{bottom:27.225000px;}
.y1b{bottom:29.887500px;}
.y8a{bottom:30.337500px;}
.y2{bottom:31.537500px;}
.y46{bottom:34.575000px;}
.y89{bottom:48.375000px;}
.y1{bottom:49.575000px;}
.y17{bottom:52.762500px;}
.y71{bottom:67.920000px;}
.y74{bottom:68.130000px;}
.y77{bottom:69.255000px;}
.y33{bottom:69.337500px;}
.y65{bottom:69.570000px;}
.y6e{bottom:69.750000px;}
.y16{bottom:86.550000px;}
.y4d{bottom:94.275000px;}
.y19{bottom:94.387500px;}
.y92{bottom:99.187500px;}
.y40{bottom:103.275000px;}
.y18{bottom:112.425000px;}
.y22{bottom:118.687500px;}
.y4c{bottom:119.062500px;}
.y15{bottom:120.337500px;}
.y23{bottom:120.900000px;}
.y32{bottom:136.500000px;}
.y91{bottom:144.225000px;}
.y4b{bottom:144.975000px;}
.y14{bottom:155.250000px;}
.y3f{bottom:167.955000px;}
.y4a{bottom:169.770000px;}
.y61{bottom:183.075000px;}
.y76{bottom:184.500000px;}
.y90{bottom:188.175000px;}
.y88{bottom:191.100000px;}
.y49{bottom:194.550000px;}
.y7{bottom:196.125000px;}
.y13{bottom:200.325000px;}
.y31{bottom:201.945000px;}
.y60{bottom:206.745000px;}
.y87{bottom:217.020000px;}
.y3e{bottom:217.695000px;}
.y6{bottom:228.795000px;}
.y12{bottom:230.745000px;}
.y73{bottom:232.875000px;}
.y3d{bottom:236.820000px;}
.y5f{bottom:240.870000px;}
.y86{bottom:241.800000px;}
.y30{bottom:253.470000px;}
.y78{bottom:253.755000px;}
.y4e{bottom:261.195000px;}
.y8e{bottom:264.075000px;}
.y5e{bottom:264.525000px;}
.y8d{bottom:264.720000px;}
.y85{bottom:267.720000px;}
.y3c{bottom:268.155000px;}
.y70{bottom:275.625000px;}
.y11{bottom:275.820000px;}
.y3b{bottom:277.380000px;}
.y84{bottom:292.500000px;}
.y75{bottom:301.005000px;}
.y5d{bottom:307.050000px;}
.y2f{bottom:308.700000px;}
.y6d{bottom:311.625000px;}
.y83{bottom:317.280000px;}
.y3a{bottom:319.950000px;}
.y8c{bottom:322.155000px;}
.y10{bottom:332.880000px;}
.y82{bottom:343.200000px;}
.y72{bottom:343.545000px;}
.y5c{bottom:349.905000px;}
.y6b{bottom:354.375000px;}
.y39{bottom:361.470000px;}
.y5{bottom:364.620000px;}
.y81{bottom:367.995000px;}
.y2e{bottom:371.280000px;}
.y93{bottom:371.400000px;}
.y5b{bottom:373.575000px;}
.y6f{bottom:385.875000px;}
.y80{bottom:393.900000px;}
.y69{bottom:402.750000px;}
.y38{bottom:403.005000px;}
.y5a{bottom:407.775000px;}
.y4{bottom:416.445000px;}
.y7f{bottom:418.695000px;}
.y6c{bottom:423.945000px;}
.y59{bottom:431.445000px;}
.y94{bottom:435.225000px;}
.y7e{bottom:443.475000px;}
.y2d{bottom:448.845000px;}
.y67{bottom:451.125000px;}
.y37{bottom:454.050000px;}
.y58{bottom:465.630000px;}
.y7d{bottom:469.380000px;}
.y6a{bottom:472.320000px;}
.yf{bottom:472.830000px;}
.y2c{bottom:474.750000px;}
.y21{bottom:483.450000px;}
.y57{bottom:489.300000px;}
.y7c{bottom:494.175000px;}
.y64{bottom:499.500000px;}
.y2b{bottom:499.530000px;}
.y8f{bottom:502.350000px;}
.ye{bottom:503.250000px;}
.y36{bottom:504.750000px;}
.y7b{bottom:520.080000px;}
.y68{bottom:520.695000px;}
.y56{bottom:523.425000px;}
.y2a{bottom:525.450000px;}
.y20{bottom:528.525000px;}
.y7a{bottom:544.875000px;}
.y55{bottom:547.080000px;}
.yd{bottom:548.295000px;}
.y29{bottom:550.245000px;}
.y79{bottom:569.625000px;}
.y43{bottom:571.695000px;}
.y66{bottom:573.570000px;}
.y1f{bottom:574.725000px;}
.y28{bottom:575.025000px;}
.yc{bottom:578.700000px;}
.y54{bottom:581.250000px;}
.y42{bottom:596.475000px;}
.y53{bottom:604.905000px;}
.y63{bottom:611.595000px;}
.y27{bottom:617.220000px;}
.y1e{bottom:619.755000px;}
.y41{bottom:622.380000px;}
.yb{bottom:623.775000px;}
.y52{bottom:641.220000px;}
.y26{bottom:642.000000px;}
.y50{bottom:647.370000px;}
.ya{bottom:654.195000px;}
.y45{bottom:656.130000px;}
.y1d{bottom:662.025000px;}
.y25{bottom:666.750000px;}
.y62{bottom:680.070000px;}
.y48{bottom:696.150000px;}
.y1c{bottom:701.445000px;}
.y47{bottom:703.650000px;}
.y35{bottom:704.850000px;}
.y44{bottom:705.750000px;}
.y8{bottom:707.220000px;}
.y24{bottom:712.875000px;}
.y4f{bottom:714.945000px;}
.y51{bottom:718.095000px;}
.y34{bottom:756.825000px;}
.y1a{bottom:757.950000px;}
.h23{height:36.182373px;}
.h2{height:44.760498px;}
.h1{height:44.875269px;}
.h13{height:51.646729px;}
.he{height:51.761499px;}
.h11{height:51.881499px;}
.h12{height:52.431152px;}
.h26{height:52.628906px;}
.h22{height:52.738550px;}
.h20{height:54.140625px;}
.h24{height:54.182373px;}
.ha{height:55.204614px;}
.h19{height:60.982251px;}
.h1f{height:62.402344px;}
.h1a{height:62.532349px;}
.h8{height:65.419189px;}
.h5{height:65.533960px;}
.h28{height:67.682373px;}
.h27{height:67.912017px;}
.h16{height:69.133960px;}
.h7{height:71.762476px;}
.hf{height:76.964180px;}
.h10{height:77.381499px;}
.h18{height:82.749536px;}
.hd{height:85.040771px;}
.h9{height:85.189966px;}
.h15{height:88.661499px;}
.h14{height:91.246729px;}
.hc{height:92.839966px;}
.h2a{height:93.078882px;}
.h17{height:107.569116px;}
.h1d{height:108.726563px;}
.h1e{height:108.856201px;}
.h1c{height:108.976201px;}
.h1b{height:109.036201px;}
.h4{height:141.549829px;}
.h3{height:141.659473px;}
.h6{height:147.598901px;}
.hb{height:147.752490px;}
.h21{height:151.875000px;}
.h25{height:153.000000px;}
.h2b{height:192.759082px;}
.h29{height:237.517383px;}
.h0{height:810.000000px;}
.w2{width:219.375000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x29{left:1.837500px;}
.x24{left:70.762484px;}
.xa{left:76.349984px;}
.x32{left:85.574984px;}
.xb{left:88.612484px;}
.x22{left:92.662484px;}
.x1d{left:97.349984px;}
.x11{left:100.762484px;}
.x20{left:102.149984px;}
.xc{left:115.612484px;}
.x21{left:120.074984px;}
.x27{left:130.612484px;}
.x23{left:136.274984px;}
.xd{left:142.649984px;}
.x1c{left:146.887484px;}
.x10{left:150.299984px;}
.x6{left:152.879984px;}
.x14{left:154.154984px;}
.x15{left:156.869984px;}
.x13{left:160.124984px;}
.x3{left:164.429984px;}
.x1f{left:169.229984px;}
.x2b{left:185.624984px;}
.x2d{left:193.094984px;}
.x2f{left:206.025000px;}
.x2{left:221.819984px;}
.x2e{left:227.474984px;}
.x31{left:228.494984px;}
.x5{left:235.499984px;}
.x25{left:237.869984px;}
.x4{left:273.779984px;}
.x2c{left:279.524984px;}
.x1{left:323.279984px;}
.x2a{left:324.329984px;}
.x1e{left:330.899984px;}
.x39{left:369.524984px;}
.x38{left:384.194984px;}
.x33{left:386.354984px;}
.x35{left:405.029984px;}
.x28{left:441.644984px;}
.x12{left:457.574984px;}
.x30{left:460.754984px;}
.x1a{left:508.424984px;}
.x18{left:510.674984px;}
.x1b{left:520.994984px;}
.x19{left:525.374984px;}
.x17{left:558.224984px;}
.x36{left:581.444984px;}
.x8{left:590.474984px;}
.x9{left:617.504984px;}
.x16{left:629.369984px;}
.x34{left:647.969984px;}
.x37{left:709.799984px;}
.xe{left:853.004984px;}
.x26{left:1040.999984px;}
.x7{left:1048.454984px;}
.xf{left:1050.224984px;}
@media print{
.vb{vertical-align:-24.000000pt;}
.v4{vertical-align:-16.000000pt;}
.v8{vertical-align:-8.000000pt;}
.vd{vertical-align:-3.093333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.200000pt;}
.v1{vertical-align:6.800000pt;}
.v9{vertical-align:8.000000pt;}
.v3{vertical-align:16.000000pt;}
.v2{vertical-align:22.826667pt;}
.vc{vertical-align:24.000000pt;}
.ve{vertical-align:28.106667pt;}
.v6{vertical-align:32.800000pt;}
.v5{vertical-align:35.200000pt;}
.va{vertical-align:41.493333pt;}
.ls10{letter-spacing:-6.026667pt;}
.ls18{letter-spacing:-2.394667pt;}
.ls19{letter-spacing:-2.261333pt;}
.lsb{letter-spacing:-1.984000pt;}
.lsc{letter-spacing:-1.904000pt;}
.lsd{letter-spacing:-1.850667pt;}
.ls11{letter-spacing:-1.770667pt;}
.ls5{letter-spacing:-1.189333pt;}
.ls17{letter-spacing:-0.385067pt;}
.ls24{letter-spacing:-0.382400pt;}
.ls6{letter-spacing:-0.009867pt;}
.ls1{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.030267pt;}
.ls35{letter-spacing:0.083600pt;}
.ls3d{letter-spacing:0.123733pt;}
.ls3b{letter-spacing:0.312000pt;}
.ls2d{letter-spacing:0.341867pt;}
.ls37{letter-spacing:0.416000pt;}
.ls1a{letter-spacing:0.451733pt;}
.ls30{letter-spacing:0.475200pt;}
.ls4{letter-spacing:0.511467pt;}
.ls36{letter-spacing:0.549333pt;}
.ls3c{letter-spacing:0.645333pt;}
.ls2a{letter-spacing:0.661333pt;}
.ls3a{letter-spacing:0.736000pt;}
.ls16{letter-spacing:0.773333pt;}
.ls1c{letter-spacing:0.912000pt;}
.ls2{letter-spacing:0.928000pt;}
.lse{letter-spacing:1.125333pt;}
.ls29{letter-spacing:1.210667pt;}
.ls27{letter-spacing:1.248000pt;}
.ls12{letter-spacing:1.306667pt;}
.ls3{letter-spacing:1.493333pt;}
.ls25{letter-spacing:2.842667pt;}
.ls28{letter-spacing:2.912000pt;}
.ls2b{letter-spacing:2.976000pt;}
.ls26{letter-spacing:3.045333pt;}
.ls0{letter-spacing:18.626667pt;}
.lsa{letter-spacing:45.184800pt;}
.ls9{letter-spacing:69.353333pt;}
.lsf{letter-spacing:69.400000pt;}
.ls8{letter-spacing:69.460000pt;}
.ls7{letter-spacing:69.506667pt;}
.ls13{letter-spacing:93.460000pt;}
.ls39{letter-spacing:93.486667pt;}
.ls14{letter-spacing:93.506667pt;}
.ls38{letter-spacing:93.533333pt;}
.ls1b{letter-spacing:421.208933pt;}
.ls31{letter-spacing:477.470267pt;}
.ls2c{letter-spacing:480.776933pt;}
.ls2f{letter-spacing:512.350267pt;}
.ls2e{letter-spacing:516.936933pt;}
.ls15{letter-spacing:518.113333pt;}
.ls32{letter-spacing:604.714667pt;}
.ls1d{letter-spacing:629.781333pt;}
.ls1e{letter-spacing:738.542267pt;}
.ls21{letter-spacing:831.235600pt;}
.ls20{letter-spacing:845.048933pt;}
.ls22{letter-spacing:867.541333pt;}
.ls33{letter-spacing:934.688000pt;}
.ls23{letter-spacing:1116.808933pt;}
.ls1f{letter-spacing:1133.235600pt;}
.ws1d{word-spacing:-76.133333pt;}
.ws45{word-spacing:-52.133333pt;}
.wse{word-spacing:-39.363067pt;}
.ws4d{word-spacing:-38.932267pt;}
.ws19{word-spacing:-28.988267pt;}
.ws1a{word-spacing:-28.958133pt;}
.ws4c{word-spacing:-28.114667pt;}
.ws4e{word-spacing:-24.994667pt;}
.ws1e{word-spacing:-21.066667pt;}
.ws17{word-spacing:-20.920000pt;}
.ws1f{word-spacing:-20.533333pt;}
.ws43{word-spacing:-20.530667pt;}
.ws14{word-spacing:-19.794667pt;}
.ws44{word-spacing:-19.760000pt;}
.ws1c{word-spacing:-17.989333pt;}
.ws16{word-spacing:-17.944000pt;}
.ws15{word-spacing:-17.856000pt;}
.ws39{word-spacing:-17.829067pt;}
.ws13{word-spacing:-17.810667pt;}
.ws3f{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.268400pt;}
.ws22{word-spacing:-15.634667pt;}
.ws23{word-spacing:-15.600000pt;}
.ws47{word-spacing:-15.013333pt;}
.ws46{word-spacing:-14.448000pt;}
.ws2d{word-spacing:-14.240000pt;}
.ws30{word-spacing:-14.229733pt;}
.ws48{word-spacing:-14.200000pt;}
.ws1b{word-spacing:-13.733333pt;}
.ws32{word-spacing:-13.680400pt;}
.ws4a{word-spacing:-13.678400pt;}
.ws18{word-spacing:-13.554667pt;}
.ws2a{word-spacing:-13.019067pt;}
.ws2e{word-spacing:-12.992000pt;}
.ws49{word-spacing:-12.365333pt;}
.ws40{word-spacing:-12.269067pt;}
.ws36{word-spacing:-12.232000pt;}
.ws21{word-spacing:-10.400000pt;}
.ws2b{word-spacing:-9.541333pt;}
.ws34{word-spacing:-9.499067pt;}
.ws2f{word-spacing:-9.408000pt;}
.ws29{word-spacing:-9.365733pt;}
.ws3d{word-spacing:-0.768133pt;}
.wsd{word-spacing:-0.627200pt;}
.ws4b{word-spacing:-0.413867pt;}
.ws9{word-spacing:-0.410800pt;}
.ws38{word-spacing:-0.183867pt;}
.ws28{word-spacing:-0.064133pt;}
.ws31{word-spacing:-0.064000pt;}
.ws12{word-spacing:0.000000pt;}
.wsa{word-spacing:0.305733pt;}
.wsf{word-spacing:0.930933pt;}
.ws3e{word-spacing:1.237333pt;}
.ws11{word-spacing:1.450133pt;}
.ws6{word-spacing:1.456000pt;}
.wsc{word-spacing:1.643200pt;}
.ws3b{word-spacing:1.844000pt;}
.ws8{word-spacing:3.182533pt;}
.ws7{word-spacing:3.454667pt;}
.ws4{word-spacing:4.013333pt;}
.ws10{word-spacing:4.653733pt;}
.wsb{word-spacing:4.707067pt;}
.ws3{word-spacing:4.814667pt;}
.ws5{word-spacing:5.554667pt;}
.ws0{word-spacing:21.296800pt;}
.ws2{word-spacing:21.844533pt;}
.ws25{word-spacing:59.157067pt;}
.ws27{word-spacing:428.149333pt;}
.ws2c{word-spacing:479.090267pt;}
.ws20{word-spacing:493.033333pt;}
.ws35{word-spacing:551.445333pt;}
.ws33{word-spacing:583.456800pt;}
.ws24{word-spacing:665.156800pt;}
.ws41{word-spacing:695.562400pt;}
.ws3a{word-spacing:708.495733pt;}
.ws3c{word-spacing:726.415733pt;}
.ws37{word-spacing:762.895733pt;}
.ws42{word-spacing:1204.082400pt;}
.ws26{word-spacing:1403.246667pt;}
._36{margin-left:-10.640267pt;}
._1e{margin-left:-9.353733pt;}
._29{margin-left:-7.104000pt;}
._12{margin-left:-5.977067pt;}
._13{margin-left:-4.916533pt;}
._d{margin-left:-3.954533pt;}
._7{margin-left:-2.624267pt;}
._2{margin-left:-1.720400pt;}
._6{width:1.014933pt;}
._0{width:1.928933pt;}
._1{width:3.668800pt;}
._8{width:4.684400pt;}
._16{width:5.588000pt;}
._11{width:6.848133pt;}
._c{width:14.490800pt;}
._a{width:15.425200pt;}
._b{width:17.300000pt;}
._1a{width:18.215467pt;}
._9{width:20.368133pt;}
._34{width:22.179467pt;}
._35{width:23.108533pt;}
._31{width:28.149600pt;}
._18{width:31.397200pt;}
._2a{width:34.921333pt;}
._4{width:36.562133pt;}
._5{width:37.672267pt;}
._3{width:38.565733pt;}
._32{width:40.125467pt;}
._e{width:46.826667pt;}
._2f{width:50.988133pt;}
._2e{width:51.906533pt;}
._30{width:57.657600pt;}
._10{width:58.770267pt;}
._f{width:59.745467pt;}
._19{width:61.053600pt;}
._2b{width:67.678267pt;}
._2c{width:87.302533pt;}
._33{width:109.546933pt;}
._15{width:114.320533pt;}
._14{width:115.768933pt;}
._2d{width:118.656267pt;}
._24{width:295.237333pt;}
._23{width:441.626400pt;}
._28{width:442.544000pt;}
._25{width:444.001867pt;}
._1f{width:463.927200pt;}
._26{width:516.872800pt;}
._1b{width:519.426133pt;}
._27{width:531.547600pt;}
._20{width:563.877200pt;}
._1d{width:565.132933pt;}
._17{width:595.019067pt;}
._1c{width:620.867600pt;}
._22{width:627.582667pt;}
._21{width:630.175867pt;}
.fsf{font-size:32.000000pt;}
.fse{font-size:32.133333pt;}
.fsb{font-size:40.000000pt;}
.fs10{font-size:44.000000pt;}
.fs11{font-size:44.133333pt;}
.fs1{font-size:52.000000pt;}
.fs0{font-size:52.133333pt;}
.fsa{font-size:60.000000pt;}
.fs9{font-size:60.133333pt;}
.fsd{font-size:64.000000pt;}
.fs6{font-size:64.133333pt;}
.fs7{font-size:76.000000pt;}
.fs4{font-size:76.133333pt;}
.fsc{font-size:96.133333pt;}
.fs13{font-size:108.133333pt;}
.fs5{font-size:128.133333pt;}
.fs8{font-size:128.266667pt;}
.fs3{font-size:172.133333pt;}
.fs2{font-size:172.266667pt;}
.fs12{font-size:212.266667pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:10.966667pt;}
.y3{bottom:12.033333pt;}
.y9{bottom:24.200000pt;}
.y1b{bottom:26.566667pt;}
.y8a{bottom:26.966667pt;}
.y2{bottom:28.033333pt;}
.y46{bottom:30.733333pt;}
.y89{bottom:43.000000pt;}
.y1{bottom:44.066667pt;}
.y17{bottom:46.900000pt;}
.y71{bottom:60.373333pt;}
.y74{bottom:60.560000pt;}
.y77{bottom:61.560000pt;}
.y33{bottom:61.633333pt;}
.y65{bottom:61.840000pt;}
.y6e{bottom:62.000000pt;}
.y16{bottom:76.933333pt;}
.y4d{bottom:83.800000pt;}
.y19{bottom:83.900000pt;}
.y92{bottom:88.166667pt;}
.y40{bottom:91.800000pt;}
.y18{bottom:99.933333pt;}
.y22{bottom:105.500000pt;}
.y4c{bottom:105.833333pt;}
.y15{bottom:106.966667pt;}
.y23{bottom:107.466667pt;}
.y32{bottom:121.333333pt;}
.y91{bottom:128.200000pt;}
.y4b{bottom:128.866667pt;}
.y14{bottom:138.000000pt;}
.y3f{bottom:149.293333pt;}
.y4a{bottom:150.906667pt;}
.y61{bottom:162.733333pt;}
.y76{bottom:164.000000pt;}
.y90{bottom:167.266667pt;}
.y88{bottom:169.866667pt;}
.y49{bottom:172.933333pt;}
.y7{bottom:174.333333pt;}
.y13{bottom:178.066667pt;}
.y31{bottom:179.506667pt;}
.y60{bottom:183.773333pt;}
.y87{bottom:192.906667pt;}
.y3e{bottom:193.506667pt;}
.y6{bottom:203.373333pt;}
.y12{bottom:205.106667pt;}
.y73{bottom:207.000000pt;}
.y3d{bottom:210.506667pt;}
.y5f{bottom:214.106667pt;}
.y86{bottom:214.933333pt;}
.y30{bottom:225.306667pt;}
.y78{bottom:225.560000pt;}
.y4e{bottom:232.173333pt;}
.y8e{bottom:234.733333pt;}
.y5e{bottom:235.133333pt;}
.y8d{bottom:235.306667pt;}
.y85{bottom:237.973333pt;}
.y3c{bottom:238.360000pt;}
.y70{bottom:245.000000pt;}
.y11{bottom:245.173333pt;}
.y3b{bottom:246.560000pt;}
.y84{bottom:260.000000pt;}
.y75{bottom:267.560000pt;}
.y5d{bottom:272.933333pt;}
.y2f{bottom:274.400000pt;}
.y6d{bottom:277.000000pt;}
.y83{bottom:282.026667pt;}
.y3a{bottom:284.400000pt;}
.y8c{bottom:286.360000pt;}
.y10{bottom:295.893333pt;}
.y82{bottom:305.066667pt;}
.y72{bottom:305.373333pt;}
.y5c{bottom:311.026667pt;}
.y6b{bottom:315.000000pt;}
.y39{bottom:321.306667pt;}
.y5{bottom:324.106667pt;}
.y81{bottom:327.106667pt;}
.y2e{bottom:330.026667pt;}
.y93{bottom:330.133333pt;}
.y5b{bottom:332.066667pt;}
.y6f{bottom:343.000000pt;}
.y80{bottom:350.133333pt;}
.y69{bottom:358.000000pt;}
.y38{bottom:358.226667pt;}
.y5a{bottom:362.466667pt;}
.y4{bottom:370.173333pt;}
.y7f{bottom:372.173333pt;}
.y6c{bottom:376.840000pt;}
.y59{bottom:383.506667pt;}
.y94{bottom:386.866667pt;}
.y7e{bottom:394.200000pt;}
.y2d{bottom:398.973333pt;}
.y67{bottom:401.000000pt;}
.y37{bottom:403.600000pt;}
.y58{bottom:413.893333pt;}
.y7d{bottom:417.226667pt;}
.y6a{bottom:419.840000pt;}
.yf{bottom:420.293333pt;}
.y2c{bottom:422.000000pt;}
.y21{bottom:429.733333pt;}
.y57{bottom:434.933333pt;}
.y7c{bottom:439.266667pt;}
.y64{bottom:444.000000pt;}
.y2b{bottom:444.026667pt;}
.y8f{bottom:446.533333pt;}
.ye{bottom:447.333333pt;}
.y36{bottom:448.666667pt;}
.y7b{bottom:462.293333pt;}
.y68{bottom:462.840000pt;}
.y56{bottom:465.266667pt;}
.y2a{bottom:467.066667pt;}
.y20{bottom:469.800000pt;}
.y7a{bottom:484.333333pt;}
.y55{bottom:486.293333pt;}
.yd{bottom:487.373333pt;}
.y29{bottom:489.106667pt;}
.y79{bottom:506.333333pt;}
.y43{bottom:508.173333pt;}
.y66{bottom:509.840000pt;}
.y1f{bottom:510.866667pt;}
.y28{bottom:511.133333pt;}
.yc{bottom:514.400000pt;}
.y54{bottom:516.666667pt;}
.y42{bottom:530.200000pt;}
.y53{bottom:537.693333pt;}
.y63{bottom:543.640000pt;}
.y27{bottom:548.640000pt;}
.y1e{bottom:550.893333pt;}
.y41{bottom:553.226667pt;}
.yb{bottom:554.466667pt;}
.y52{bottom:569.973333pt;}
.y26{bottom:570.666667pt;}
.y50{bottom:575.440000pt;}
.ya{bottom:581.506667pt;}
.y45{bottom:583.226667pt;}
.y1d{bottom:588.466667pt;}
.y25{bottom:592.666667pt;}
.y62{bottom:604.506667pt;}
.y48{bottom:618.800000pt;}
.y1c{bottom:623.506667pt;}
.y47{bottom:625.466667pt;}
.y35{bottom:626.533333pt;}
.y44{bottom:627.333333pt;}
.y8{bottom:628.640000pt;}
.y24{bottom:633.666667pt;}
.y4f{bottom:635.506667pt;}
.y51{bottom:638.306667pt;}
.y34{bottom:672.733333pt;}
.y1a{bottom:673.733333pt;}
.h23{height:32.162109pt;}
.h2{height:39.787109pt;}
.h1{height:39.889128pt;}
.h13{height:45.908203pt;}
.he{height:46.010221pt;}
.h11{height:46.116888pt;}
.h12{height:46.605469pt;}
.h26{height:46.781250pt;}
.h22{height:46.878711pt;}
.h20{height:48.125000pt;}
.h24{height:48.162109pt;}
.ha{height:49.070768pt;}
.h19{height:54.206445pt;}
.h1f{height:55.468750pt;}
.h1a{height:55.584310pt;}
.h8{height:58.150391pt;}
.h5{height:58.252409pt;}
.h28{height:60.162109pt;}
.h27{height:60.366237pt;}
.h16{height:61.452409pt;}
.h7{height:63.788867pt;}
.hf{height:68.412604pt;}
.h10{height:68.783555pt;}
.h18{height:73.555143pt;}
.hd{height:75.591797pt;}
.h9{height:75.724414pt;}
.h15{height:78.810221pt;}
.h14{height:81.108203pt;}
.hc{height:82.524414pt;}
.h2a{height:82.736784pt;}
.h17{height:95.616992pt;}
.h1d{height:96.645833pt;}
.h1e{height:96.761068pt;}
.h1c{height:96.867734pt;}
.h1b{height:96.921068pt;}
.h4{height:125.822070pt;}
.h3{height:125.919531pt;}
.h6{height:131.199023pt;}
.hb{height:131.335547pt;}
.h21{height:135.000000pt;}
.h25{height:136.000000pt;}
.h2b{height:171.341406pt;}
.h29{height:211.126562pt;}
.h0{height:720.000000pt;}
.w2{width:195.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x29{left:1.633333pt;}
.x24{left:62.899986pt;}
.xa{left:67.866652pt;}
.x32{left:76.066652pt;}
.xb{left:78.766652pt;}
.x22{left:82.366652pt;}
.x1d{left:86.533319pt;}
.x11{left:89.566652pt;}
.x20{left:90.799986pt;}
.xc{left:102.766652pt;}
.x21{left:106.733319pt;}
.x27{left:116.099986pt;}
.x23{left:121.133319pt;}
.xd{left:126.799986pt;}
.x1c{left:130.566652pt;}
.x10{left:133.599986pt;}
.x6{left:135.893319pt;}
.x14{left:137.026652pt;}
.x15{left:139.439986pt;}
.x13{left:142.333319pt;}
.x3{left:146.159986pt;}
.x1f{left:150.426652pt;}
.x2b{left:164.999986pt;}
.x2d{left:171.639986pt;}
.x2f{left:183.133333pt;}
.x2{left:197.173319pt;}
.x2e{left:202.199986pt;}
.x31{left:203.106652pt;}
.x5{left:209.333319pt;}
.x25{left:211.439986pt;}
.x4{left:243.359986pt;}
.x2c{left:248.466652pt;}
.x1{left:287.359986pt;}
.x2a{left:288.293319pt;}
.x1e{left:294.133319pt;}
.x39{left:328.466652pt;}
.x38{left:341.506652pt;}
.x33{left:343.426652pt;}
.x35{left:360.026652pt;}
.x28{left:392.573319pt;}
.x12{left:406.733319pt;}
.x30{left:409.559986pt;}
.x1a{left:451.933319pt;}
.x18{left:453.933319pt;}
.x1b{left:463.106652pt;}
.x19{left:466.999986pt;}
.x17{left:496.199986pt;}
.x36{left:516.839986pt;}
.x8{left:524.866652pt;}
.x9{left:548.893319pt;}
.x16{left:559.439986pt;}
.x34{left:575.973319pt;}
.x37{left:630.933319pt;}
.xe{left:758.226652pt;}
.x26{left:925.333319pt;}
.x7{left:931.959986pt;}
.xf{left:933.533319pt;}
}




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