
    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_329545dbe39bd416b44905f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.146484;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_a94ad293c47116d240fd0828.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117676;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;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_bf65460424a1d6746e6beed5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921875;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_cad9a0584497b60b6763c299.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853516;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_7af6e584e2455330fb24d48c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104508;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_bf1e76588f6d95f09a0b0abd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104508;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_81afa79fb503696f6241fc76.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.098647;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_960146a86549e775731e8ad9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.117676;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_d8f45b40a68007fd3c9f14fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.146484;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v7{vertical-align:-38.340000px;}
.vb{vertical-align:-6.480000px;}
.v4{vertical-align:-1.020000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.500000px;}
.v6{vertical-align:10.500000px;}
.v3{vertical-align:12.780000px;}
.v1{vertical-align:51.840000px;}
.v9{vertical-align:58.320000px;}
.vc{vertical-align:87.420000px;}
.v2{vertical-align:102.096000px;}
.v8{vertical-align:116.820000px;}
.va{vertical-align:174.960000px;}
.ls9{letter-spacing:-0.369000px;}
.ls2f{letter-spacing:-0.368400px;}
.lsa{letter-spacing:-0.364800px;}
.ls28{letter-spacing:-0.342600px;}
.ls10{letter-spacing:-0.325800px;}
.ls2c{letter-spacing:-0.299400px;}
.ls3{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.270600px;}
.ls13{letter-spacing:-0.225000px;}
.ls7{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.198600px;}
.ls14{letter-spacing:-0.183000px;}
.ls20{letter-spacing:-0.178800px;}
.ls27{letter-spacing:-0.175800px;}
.ls24{letter-spacing:-0.172800px;}
.ls12{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.102600px;}
.ls21{letter-spacing:-0.082200px;}
.ls6{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.050700px;}
.ls8{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.087264px;}
.ls1a{letter-spacing:0.108288px;}
.ls15{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.178800px;}
.ls19{letter-spacing:0.187800px;}
.ls11{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.219000px;}
.ls2a{letter-spacing:0.285000px;}
.ls1f{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.299400px;}
.ls26{letter-spacing:0.316800px;}
.ls25{letter-spacing:0.354000px;}
.ls16{letter-spacing:1.008000px;}
.ls1c{letter-spacing:17.568000px;}
.lsc{letter-spacing:18.942048px;}
.lsb{letter-spacing:19.008000px;}
.ls2e{letter-spacing:19.549440px;}
.lse{letter-spacing:19.662048px;}
.lsd{letter-spacing:19.728000px;}
.ls18{letter-spacing:35.949600px;}
.ls17{letter-spacing:36.000000px;}
.ls4{letter-spacing:36.216000px;}
.ls2{letter-spacing:57.549600px;}
.ls1{letter-spacing:57.600000px;}
.ls1e{letter-spacing:1173.612000px;}
.ls5{letter-spacing:2818.707072px;}
.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;}
}
.ws2{word-spacing:-41.772240px;}
.ws2a{word-spacing:-35.891856px;}
.ws18{word-spacing:-35.856000px;}
.ws0{word-spacing:-35.747712px;}
.ws3{word-spacing:-35.712000px;}
.ws2e{word-spacing:-26.819712px;}
.ws2c{word-spacing:-26.784000px;}
.ws5{word-spacing:-23.784192px;}
.ws4{word-spacing:-23.748480px;}
.ws3c{word-spacing:-19.638480px;}
.ws3d{word-spacing:-19.601280px;}
.ws40{word-spacing:-19.583880px;}
.ws41{word-spacing:-19.463280px;}
.ws3b{word-spacing:-19.284480px;}
.ws3a{word-spacing:-19.111680px;}
.ws3e{word-spacing:-19.108680px;}
.ws42{word-spacing:-19.013880px;}
.ws44{word-spacing:-18.985080px;}
.ws3f{word-spacing:-18.941880px;}
.ws1f{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.942412px;}
.ws10{word-spacing:-17.891712px;}
.wsb{word-spacing:-17.856000px;}
.ws39{word-spacing:-17.809512px;}
.wsa{word-spacing:-17.784000px;}
.ws21{word-spacing:-17.712000px;}
.ws1e{word-spacing:-17.708712px;}
.ws22{word-spacing:-17.666712px;}
.wsc{word-spacing:-17.640000px;}
.ws2b{word-spacing:-17.568000px;}
.ws23{word-spacing:-17.565912px;}
.ws46{word-spacing:-0.648000px;}
.ws1{word-spacing:0.000000px;}
.ws20{word-spacing:0.072000px;}
.ws25{word-spacing:0.648000px;}
.ws43{word-spacing:0.711720px;}
.ws28{word-spacing:0.840000px;}
.ws45{word-spacing:0.848640px;}
.ws26{word-spacing:0.996000px;}
.ws1c{word-spacing:1.008000px;}
.ws1d{word-spacing:1.053432px;}
.ws8{word-spacing:62.208000px;}
.ws6{word-spacing:125.850240px;}
.ws32{word-spacing:369.156000px;}
.ws31{word-spacing:432.516000px;}
.ws33{word-spacing:465.816000px;}
.ws2f{word-spacing:502.548000px;}
.ws30{word-spacing:509.736000px;}
.ws34{word-spacing:527.148624px;}
.ws35{word-spacing:561.684576px;}
.ws36{word-spacing:589.212336px;}
.ws7{word-spacing:610.148544px;}
.ws29{word-spacing:753.708000px;}
.ws12{word-spacing:1116.576000px;}
.ws1a{word-spacing:1164.417432px;}
.ws14{word-spacing:1180.545432px;}
.ws9{word-spacing:1250.364000px;}
.ws17{word-spacing:1251.516000px;}
.ws1b{word-spacing:1260.456000px;}
.ws13{word-spacing:1466.784000px;}
.ws37{word-spacing:1637.532000px;}
.wsd{word-spacing:1760.088000px;}
.ws24{word-spacing:2199.189432px;}
.ws38{word-spacing:2203.081920px;}
.ws2d{word-spacing:2457.252000px;}
.wse{word-spacing:2522.424000px;}
.ws11{word-spacing:2532.228000px;}
.ws15{word-spacing:2556.588000px;}
.ws27{word-spacing:2557.923360px;}
.wsf{word-spacing:2698.140000px;}
.ws19{word-spacing:2860.593432px;}
._c{margin-left:-5.808000px;}
._b{margin-left:-4.614576px;}
._0{margin-left:-1.188000px;}
._1{width:1.404000px;}
._4{width:2.448000px;}
._d{width:3.852000px;}
._7{width:16.596000px;}
._11{width:17.837760px;}
._a{width:19.728000px;}
._10{width:21.263040px;}
._5{width:25.032240px;}
._6{width:37.332000px;}
._9{width:136.092000px;}
._2{width:223.728000px;}
._3{width:405.216000px;}
._e{width:416.437440px;}
._f{width:642.878400px;}
._8{width:2633.916000px;}
.fc2{color:transparent;}
.fc1{color:rgb(169,201,207);}
.fc4{color:rgb(118,118,118);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fsf{font-size:77.760000px;}
.fs10{font-size:77.904000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:95.904000px;}
.fs0{font-size:108.000000px;}
.fsc{font-size:108.144000px;}
.fsa{font-size:120.240000px;}
.fs3{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fse{font-size:162.000000px;}
.fsd{font-size:162.144000px;}
.fs5{font-size:167.760000px;}
.fs1{font-size:239.760000px;}
.fs2{font-size:239.904000px;}
.fsb{font-size:300.240000px;}
.y2{bottom:-18.936000px;}
.y0{bottom:0.000000px;}
.y14{bottom:12.960000px;}
.y1{bottom:13.464000px;}
.y13{bottom:13.500000px;}
.y36{bottom:31.788000px;}
.yc5{bottom:50.796000px;}
.ye5{bottom:53.388000px;}
.y91{bottom:54.576000px;}
.yc3{bottom:54.720000px;}
.ybe{bottom:56.664000px;}
.ya3{bottom:57.420000px;}
.y61{bottom:57.528000px;}
.y82{bottom:57.564000px;}
.y3d{bottom:58.824000px;}
.y57{bottom:58.896000px;}
.y42{bottom:59.184000px;}
.y96{bottom:59.220000px;}
.yb6{bottom:59.256000px;}
.y94{bottom:59.544000px;}
.y59{bottom:59.580000px;}
.yb3{bottom:59.832000px;}
.y51{bottom:59.976000px;}
.y54{bottom:60.120000px;}
.ya7{bottom:60.156000px;}
.yfe{bottom:60.372000px;}
.yb9{bottom:60.408000px;}
.ya0{bottom:60.444000px;}
.y93{bottom:60.660000px;}
.y5d{bottom:60.804000px;}
.y47{bottom:61.128000px;}
.y4c{bottom:61.524000px;}
.ya6{bottom:62.064000px;}
.y65{bottom:62.388000px;}
.yb0{bottom:62.460000px;}
.ydb{bottom:63.756000px;}
.y32{bottom:69.984000px;}
.yc4{bottom:72.432000px;}
.ye4{bottom:75.024000px;}
.y90{bottom:76.212000px;}
.yc2{bottom:76.320000px;}
.ybd{bottom:78.300000px;}
.ya2{bottom:79.020000px;}
.y60{bottom:79.128000px;}
.y81{bottom:79.164000px;}
.y2b{bottom:80.028000px;}
.y41{bottom:80.784000px;}
.y95{bottom:80.820000px;}
.yb5{bottom:80.856000px;}
.y58{bottom:81.180000px;}
.yb2{bottom:81.432000px;}
.y50{bottom:81.576000px;}
.y53{bottom:81.720000px;}
.yfd{bottom:81.972000px;}
.yb8{bottom:82.008000px;}
.y9f{bottom:82.044000px;}
.y5c{bottom:82.404000px;}
.y2e{bottom:82.512000px;}
.y46{bottom:82.728000px;}
.y4b{bottom:83.124000px;}
.y64{bottom:83.988000px;}
.yaf{bottom:84.060000px;}
.y14b{bottom:84.276000px;}
.y119{bottom:86.976000px;}
.y134{bottom:90.576000px;}
.y9{bottom:90.828000px;}
.y33{bottom:95.472000px;}
.y31{bottom:95.904000px;}
.y8f{bottom:97.812000px;}
.yc1{bottom:97.920000px;}
.ycb{bottom:98.568000px;}
.ya1{bottom:100.620000px;}
.y80{bottom:100.764000px;}
.y40{bottom:102.384000px;}
.yb4{bottom:102.492000px;}
.yb1{bottom:103.032000px;}
.y4f{bottom:103.176000px;}
.yb7{bottom:103.608000px;}
.y5b{bottom:104.004000px;}
.y45{bottom:104.328000px;}
.yba{bottom:104.724000px;}
.yae{bottom:105.660000px;}
.y2a{bottom:105.948000px;}
.y2d{bottom:108.468000px;}
.y14a{bottom:111.096000px;}
.y12{bottom:111.312000px;}
.y133{bottom:111.636000px;}
.y118{bottom:111.816000px;}
.y7c{bottom:113.616000px;}
.yca{bottom:120.168000px;}
.y30{bottom:121.824000px;}
.y7f{bottom:122.400000px;}
.y3f{bottom:124.020000px;}
.y4e{bottom:124.776000px;}
.y8{bottom:129.708000px;}
.y132{bottom:132.696000px;}
.y2c{bottom:134.388000px;}
.y149{bottom:138.096000px;}
.yc9{bottom:141.768000px;}
.y29{bottom:141.948000px;}
.y7e{bottom:144.000000px;}
.y2f{bottom:147.744000px;}
.y131{bottom:153.750000px;}
.ye1{bottom:156.990000px;}
.ye0{bottom:157.245000px;}
.yf1{bottom:159.840000px;}
.yef{bottom:160.635000px;}
.yf0{bottom:160.665000px;}
.y7b{bottom:161.130000px;}
.yda{bottom:163.110000px;}
.y117{bottom:163.650000px;}
.y148{bottom:164.910000px;}
.y7d{bottom:165.600000px;}
.y7{bottom:168.585000px;}
.y130{bottom:174.855000px;}
.y116{bottom:188.535000px;}
.y11{bottom:191.055000px;}
.y147{bottom:191.955000px;}
.yc0{bottom:195.300000px;}
.y12f{bottom:195.915000px;}
.y6{bottom:207.465000px;}
.ybc{bottom:208.695000px;}
.yed{bottom:208.905000px;}
.yad{bottom:212.610000px;}
.y12e{bottom:216.975000px;}
.y146{bottom:218.775000px;}
.y26{bottom:220.755000px;}
.yee{bottom:223.485000px;}
.y7a{bottom:226.695000px;}
.ye3{bottom:231.090000px;}
.y12d{bottom:238.035000px;}
.yec{bottom:238.065000px;}
.yf8{bottom:238.215000px;}
.y115{bottom:240.375000px;}
.yf2{bottom:241.020000px;}
.y3c{bottom:241.845000px;}
.yd9{bottom:243.795000px;}
.y107{bottom:244.695000px;}
.y9e{bottom:245.310000px;}
.y145{bottom:245.775000px;}
.y25{bottom:246.705000px;}
.y10a{bottom:249.840000px;}
.y89{bottom:256.215000px;}
.y12c{bottom:259.095000px;}
.yce{bottom:261.615000px;}
.y10{bottom:270.825000px;}
.y1c{bottom:272.190000px;}
.y144{bottom:272.595000px;}
.y24{bottom:272.625000px;}
.y79{bottom:274.215000px;}
.ye2{bottom:274.290000px;}
.y18{bottom:279.360000px;}
.y12b{bottom:280.155000px;}
.ybf{bottom:281.805000px;}
.yd0{bottom:282.885000px;}
.y3b{bottom:285.045000px;}
.yf7{bottom:285.735000px;}
.y106{bottom:287.895000px;}
.y28{bottom:290.190000px;}
.yd8{bottom:291.315000px;}
.y114{bottom:292.215000px;}
.y5{bottom:292.470000px;}
.y9d{bottom:292.860000px;}
.y1b{bottom:298.110000px;}
.y23{bottom:298.545000px;}
.y143{bottom:299.595000px;}
.y12a{bottom:301.215000px;}
.yd4{bottom:302.115000px;}
.y1e{bottom:303.150000px;}
.yac{bottom:303.300000px;}
.y88{bottom:303.735000px;}
.y17{bottom:305.280000px;}
.yfc{bottom:309.675000px;}
.y1d{bottom:316.110000px;}
.y78{bottom:321.735000px;}
.y129{bottom:322.275000px;}
.y6c{bottom:322.380000px;}
.y22{bottom:324.465000px;}
.y142{bottom:326.415000px;}
.y16{bottom:331.200000px;}
.yf6{bottom:333.255000px;}
.y1a{bottom:334.110000px;}
.yd2{bottom:338.115000px;}
.y9c{bottom:340.380000px;}
.y92{bottom:340.455000px;}
.y27{bottom:342.030000px;}
.ycd{bottom:342.615000px;}
.y128{bottom:343.335000px;}
.y113{bottom:344.055000px;}
.y105{bottom:349.095000px;}
.y21{bottom:350.385000px;}
.yf{bottom:350.745000px;}
.y141{bottom:353.415000px;}
.y35{bottom:353.700000px;}
.y15{bottom:357.150000px;}
.yfb{bottom:357.225000px;}
.y4{bottom:357.270000px;}
.y71{bottom:358.995000px;}
.y19{bottom:360.075000px;}
.y127{bottom:364.425000px;}
.y112{bottom:368.925000px;}
.y87{bottom:369.285000px;}
.yd7{bottom:371.805000px;}
.y8e{bottom:374.865000px;}
.y3a{bottom:376.125000px;}
.y44{bottom:379.230000px;}
.y140{bottom:380.265000px;}
.y109{bottom:382.215000px;}
.y6b{bottom:383.430000px;}
.y126{bottom:385.485000px;}
.y20{bottom:386.385000px;}
.y77{bottom:387.285000px;}
.y9b{bottom:387.900000px;}
.y104{bottom:392.325000px;}
.yab{bottom:393.990000px;}
.yf5{bottom:398.805000px;}
.ye9{bottom:398.910000px;}
.ydc{bottom:399.990000px;}
.yde{bottom:400.965000px;}
.y108{bottom:404.100000px;}
.y70{bottom:406.515000px;}
.y125{bottom:406.545000px;}
.ydf{bottom:406.875000px;}
.y13f{bottom:407.265000px;}
.y1f{bottom:412.305000px;}
.y86{bottom:416.805000px;}
.yeb{bottom:419.040000px;}
.y39{bottom:419.370000px;}
.y111{bottom:420.765000px;}
.y3{bottom:422.070000px;}
.y8d{bottom:424.545000px;}
.y124{bottom:427.605000px;}
.ye8{bottom:428.115000px;}
.y34{bottom:429.300000px;}
.ye{bottom:430.485000px;}
.y49{bottom:433.470000px;}
.y13e{bottom:434.085000px;}
.y76{bottom:434.805000px;}
.y9a{bottom:435.420000px;}
.yfa{bottom:437.865000px;}
.y6a{bottom:444.450000px;}
.y123{bottom:448.665000px;}
.yd1{bottom:448.950000px;}
.yd6{bottom:452.265000px;}
.ybb{bottom:452.805000px;}
.y103{bottom:453.525000px;}
.y6f{bottom:454.035000px;}
.y13d{bottom:461.085000px;}
.yd3{bottom:464.145000px;}
.yf4{bottom:464.325000px;}
.y122{bottom:469.725000px;}
.y110{bottom:472.605000px;}
.y85{bottom:482.325000px;}
.y99{bottom:482.970000px;}
.yaa{bottom:484.665000px;}
.yf9{bottom:485.385000px;}
.y8c{bottom:486.285000px;}
.y13c{bottom:487.905000px;}
.y121{bottom:490.785000px;}
.y69{bottom:491.970000px;}
.yea{bottom:492.870000px;}
.y102{bottom:496.725000px;}
.y75{bottom:500.325000px;}
.ycc{bottom:504.645000px;}
.yd{bottom:510.270000px;}
.y38{bottom:510.630000px;}
.y120{bottom:511.845000px;}
.y13b{bottom:514.905000px;}
.y10f{bottom:524.445000px;}
.yf3{bottom:529.845000px;}
.y98{bottom:530.490000px;}
.yd5{bottom:532.905000px;}
.y68{bottom:539.490000px;}
.y13a{bottom:541.770000px;}
.y74{bottom:547.890000px;}
.y10e{bottom:549.330000px;}
.y55{bottom:552.990000px;}
.y37{bottom:553.830000px;}
.y11f{bottom:554.010000px;}
.ya4{bottom:554.505000px;}
.y6e{bottom:557.385000px;}
.y101{bottom:557.970000px;}
.y83{bottom:565.890000px;}
.y139{bottom:568.770000px;}
.y11e{bottom:575.070000px;}
.ya9{bottom:575.355000px;}
.ydd{bottom:588.675000px;}
.yc{bottom:590.190000px;}
.y84{bottom:595.410000px;}
.y138{bottom:595.590000px;}
.y11d{bottom:596.130000px;}
.y8b{bottom:597.570000px;}
.y10d{bottom:601.170000px;}
.ye7{bottom:602.895000px;}
.y5e{bottom:604.695000px;}
.y6d{bottom:604.905000px;}
.y67{bottom:605.055000px;}
.y73{bottom:613.410000px;}
.y56{bottom:616.755000px;}
.y11c{bottom:617.190000px;}
.y100{bottom:619.170000px;}
.y137{bottom:622.590000px;}
.yc8{bottom:624.855000px;}
.y10c{bottom:626.010000px;}
.yc6{bottom:627.690000px;}
.y11b{bottom:638.250000px;}
.ya5{bottom:643.965000px;}
.y66{bottom:646.590000px;}
.y136{bottom:649.410000px;}
.y5f{bottom:652.530000px;}
.y62{bottom:652.935000px;}
.y8a{bottom:659.310000px;}
.y72{bottom:660.930000px;}
.y43{bottom:660.960000px;}
.y97{bottom:661.710000px;}
.y52{bottom:661.755000px;}
.y4d{bottom:661.935000px;}
.yff{bottom:662.370000px;}
.y5a{bottom:662.835000px;}
.ya8{bottom:666.000000px;}
.y3e{bottom:669.750000px;}
.yb{bottom:669.960000px;}
.ycf{bottom:676.365000px;}
.y135{bottom:676.410000px;}
.y4a{bottom:676.695000px;}
.y48{bottom:677.805000px;}
.y10b{bottom:677.850000px;}
.y11a{bottom:680.370000px;}
.ye6{bottom:680.475000px;}
.yc7{bottom:686.160000px;}
.ya{bottom:743.610000px;}
.y63{bottom:744.510000px;}
.hc{height:62.527148px;}
.hd{height:66.023438px;}
.he{height:66.155484px;}
.h24{height:71.305312px;}
.h25{height:71.437359px;}
.h7{height:71.928000px;}
.h9{height:87.811172px;}
.h8{height:87.943219px;}
.h10{height:91.283203px;}
.h18{height:93.603516px;}
.h1{height:99.035156px;}
.h1d{height:99.167203px;}
.h19{height:110.259141px;}
.h12{height:128.041331px;}
.h13{height:128.169372px;}
.h16{height:128.882812px;}
.h14{height:128.955106px;}
.h17{height:129.011695px;}
.h4{height:132.046875px;}
.h5{height:132.178922px;}
.h11{height:132.226875px;}
.h15{height:136.546875px;}
.ha{height:139.651172px;}
.h1a{height:142.546875px;}
.hf{height:144.826875px;}
.h23{height:148.552734px;}
.h6{height:150.148477px;}
.h1f{height:157.355156px;}
.hb{height:190.039219px;}
.h2{height:214.589883px;}
.h3{height:214.718766px;}
.h20{height:215.675156px;}
.h1e{height:215.987203px;}
.h22{height:235.972734px;}
.h1b{height:268.720664px;}
.h21{height:273.995156px;}
.h1c{height:275.317734px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1d{left:10.799979px;}
.x7{left:28.367979px;}
.x16{left:40.823979px;}
.x15{left:42.047979px;}
.x20{left:43.775979px;}
.x4{left:50.219979px;}
.x1{left:51.299979px;}
.x3{left:52.523979px;}
.x2c{left:55.223979px;}
.x10{left:56.627979px;}
.x12{left:59.075979px;}
.x1b{left:72.503979px;}
.x1a{left:93.743979px;}
.xe{left:105.083979px;}
.x41{left:109.799979px;}
.x18{left:114.623979px;}
.x2{left:118.799979px;}
.x43{left:124.991979px;}
.x2a{left:131.687979px;}
.x25{left:136.367979px;}
.x48{left:138.383979px;}
.x32{left:141.947979px;}
.x2b{left:146.267979px;}
.x26{left:151.844979px;}
.x34{left:157.424979px;}
.x28{left:163.364979px;}
.x23{left:167.324979px;}
.x29{left:202.109979px;}
.x24{left:205.709979px;}
.x17{left:207.149979px;}
.x22{left:220.289979px;}
.x27{left:223.529979px;}
.x2f{left:238.214979px;}
.x3b{left:254.444979px;}
.x4f{left:261.284979px;}
.x8{left:263.954979px;}
.x4e{left:267.479979px;}
.x42{left:307.184979px;}
.x3f{left:323.744979px;}
.x3c{left:331.274979px;}
.x44{left:337.424979px;}
.x38{left:347.504979px;}
.x39{left:457.634979px;}
.x33{left:464.549979px;}
.x3a{left:479.054979px;}
.x9{left:499.574979px;}
.x3e{left:523.724979px;}
.x4c{left:525.524979px;}
.x45{left:549.509979px;}
.x21{left:551.444979px;}
.x31{left:618.089979px;}
.x11{left:620.069979px;}
.x36{left:626.864979px;}
.x51{left:633.344979px;}
.x35{left:638.174979px;}
.x4a{left:662.684979px;}
.x49{left:665.924979px;}
.x1e{left:721.904979px;}
.x2e{left:730.799979px;}
.xa{left:735.149979px;}
.x1c{left:739.904979px;}
.xf{left:742.169979px;}
.x1f{left:751.934979px;}
.x46{left:761.579979px;}
.x30{left:771.944979px;}
.x4d{left:790.049979px;}
.x40{left:899.174979px;}
.x3d{left:929.129979px;}
.xb{left:970.769979px;}
.x47{left:987.734979px;}
.x50{left:1002.164979px;}
.x37{left:1093.679979px;}
.x4b{left:1199.054979px;}
.xc{left:1206.359979px;}
.x2d{left:1285.169979px;}
.x19{left:1311.119979px;}
.xd{left:1320.659979px;}
.x14{left:1398.959979px;}
.x13{left:1402.634979px;}
.x5{left:1414.079979px;}
.x6{left:1415.954979px;}
@media print{
.v7{vertical-align:-34.080000pt;}
.vb{vertical-align:-5.760000pt;}
.v4{vertical-align:-0.906667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.000000pt;}
.v6{vertical-align:9.333333pt;}
.v3{vertical-align:11.360000pt;}
.v1{vertical-align:46.080000pt;}
.v9{vertical-align:51.840000pt;}
.vc{vertical-align:77.706667pt;}
.v2{vertical-align:90.752000pt;}
.v8{vertical-align:103.840000pt;}
.va{vertical-align:155.520000pt;}
.ls9{letter-spacing:-0.328000pt;}
.ls2f{letter-spacing:-0.327467pt;}
.lsa{letter-spacing:-0.324267pt;}
.ls28{letter-spacing:-0.304533pt;}
.ls10{letter-spacing:-0.289600pt;}
.ls2c{letter-spacing:-0.266133pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.240533pt;}
.ls13{letter-spacing:-0.200000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.176533pt;}
.ls14{letter-spacing:-0.162667pt;}
.ls20{letter-spacing:-0.158933pt;}
.ls27{letter-spacing:-0.156267pt;}
.ls24{letter-spacing:-0.153600pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.091200pt;}
.ls21{letter-spacing:-0.073067pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.045067pt;}
.ls8{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.077568pt;}
.ls1a{letter-spacing:0.096256pt;}
.ls15{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.158933pt;}
.ls19{letter-spacing:0.166933pt;}
.ls11{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.194667pt;}
.ls2a{letter-spacing:0.253333pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.266133pt;}
.ls26{letter-spacing:0.281600pt;}
.ls25{letter-spacing:0.314667pt;}
.ls16{letter-spacing:0.896000pt;}
.ls1c{letter-spacing:15.616000pt;}
.lsc{letter-spacing:16.837376pt;}
.lsb{letter-spacing:16.896000pt;}
.ls2e{letter-spacing:17.377280pt;}
.lse{letter-spacing:17.477376pt;}
.lsd{letter-spacing:17.536000pt;}
.ls18{letter-spacing:31.955200pt;}
.ls17{letter-spacing:32.000000pt;}
.ls4{letter-spacing:32.192000pt;}
.ls2{letter-spacing:51.155200pt;}
.ls1{letter-spacing:51.200000pt;}
.ls1e{letter-spacing:1043.210667pt;}
.ls5{letter-spacing:2505.517397pt;}
.ws2{word-spacing:-37.130880pt;}
.ws2a{word-spacing:-31.903872pt;}
.ws18{word-spacing:-31.872000pt;}
.ws0{word-spacing:-31.775744pt;}
.ws3{word-spacing:-31.744000pt;}
.ws2e{word-spacing:-23.839744pt;}
.ws2c{word-spacing:-23.808000pt;}
.ws5{word-spacing:-21.141504pt;}
.ws4{word-spacing:-21.109760pt;}
.ws3c{word-spacing:-17.456427pt;}
.ws3d{word-spacing:-17.423360pt;}
.ws40{word-spacing:-17.407893pt;}
.ws41{word-spacing:-17.300693pt;}
.ws3b{word-spacing:-17.141760pt;}
.ws3a{word-spacing:-16.988160pt;}
.ws3e{word-spacing:-16.985493pt;}
.ws42{word-spacing:-16.901227pt;}
.ws44{word-spacing:-16.875627pt;}
.ws3f{word-spacing:-16.837227pt;}
.ws1f{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.948811pt;}
.ws10{word-spacing:-15.903744pt;}
.wsb{word-spacing:-15.872000pt;}
.ws39{word-spacing:-15.830677pt;}
.wsa{word-spacing:-15.808000pt;}
.ws21{word-spacing:-15.744000pt;}
.ws1e{word-spacing:-15.741077pt;}
.ws22{word-spacing:-15.703744pt;}
.wsc{word-spacing:-15.680000pt;}
.ws2b{word-spacing:-15.616000pt;}
.ws23{word-spacing:-15.614144pt;}
.ws46{word-spacing:-0.576000pt;}
.ws1{word-spacing:0.000000pt;}
.ws20{word-spacing:0.064000pt;}
.ws25{word-spacing:0.576000pt;}
.ws43{word-spacing:0.632640pt;}
.ws28{word-spacing:0.746667pt;}
.ws45{word-spacing:0.754347pt;}
.ws26{word-spacing:0.885333pt;}
.ws1c{word-spacing:0.896000pt;}
.ws1d{word-spacing:0.936384pt;}
.ws8{word-spacing:55.296000pt;}
.ws6{word-spacing:111.866880pt;}
.ws32{word-spacing:328.138667pt;}
.ws31{word-spacing:384.458667pt;}
.ws33{word-spacing:414.058667pt;}
.ws2f{word-spacing:446.709333pt;}
.ws30{word-spacing:453.098667pt;}
.ws34{word-spacing:468.576555pt;}
.ws35{word-spacing:499.275179pt;}
.ws36{word-spacing:523.744299pt;}
.ws7{word-spacing:542.354261pt;}
.ws29{word-spacing:669.962667pt;}
.ws12{word-spacing:992.512000pt;}
.ws1a{word-spacing:1035.037717pt;}
.ws14{word-spacing:1049.373717pt;}
.ws9{word-spacing:1111.434667pt;}
.ws17{word-spacing:1112.458667pt;}
.ws1b{word-spacing:1120.405333pt;}
.ws13{word-spacing:1303.808000pt;}
.ws37{word-spacing:1455.584000pt;}
.wsd{word-spacing:1564.522667pt;}
.ws24{word-spacing:1954.835051pt;}
.ws38{word-spacing:1958.295040pt;}
.ws2d{word-spacing:2184.224000pt;}
.wse{word-spacing:2242.154667pt;}
.ws11{word-spacing:2250.869333pt;}
.ws15{word-spacing:2272.522667pt;}
.ws27{word-spacing:2273.709653pt;}
.wsf{word-spacing:2398.346667pt;}
.ws19{word-spacing:2542.749717pt;}
._c{margin-left:-5.162667pt;}
._b{margin-left:-4.101845pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.248000pt;}
._4{width:2.176000pt;}
._d{width:3.424000pt;}
._7{width:14.752000pt;}
._11{width:15.855787pt;}
._a{width:17.536000pt;}
._10{width:18.900480pt;}
._5{width:22.250880pt;}
._6{width:33.184000pt;}
._9{width:120.970667pt;}
._2{width:198.869333pt;}
._3{width:360.192000pt;}
._e{width:370.166613pt;}
._f{width:571.447467pt;}
._8{width:2341.258667pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fsf{font-size:69.120000pt;}
.fs10{font-size:69.248000pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:85.248000pt;}
.fs0{font-size:96.000000pt;}
.fsc{font-size:96.128000pt;}
.fsa{font-size:106.880000pt;}
.fs3{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fse{font-size:144.000000pt;}
.fsd{font-size:144.128000pt;}
.fs5{font-size:149.120000pt;}
.fs1{font-size:213.120000pt;}
.fs2{font-size:213.248000pt;}
.fsb{font-size:266.880000pt;}
.y2{bottom:-16.832000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:11.520000pt;}
.y1{bottom:11.968000pt;}
.y13{bottom:12.000000pt;}
.y36{bottom:28.256000pt;}
.yc5{bottom:45.152000pt;}
.ye5{bottom:47.456000pt;}
.y91{bottom:48.512000pt;}
.yc3{bottom:48.640000pt;}
.ybe{bottom:50.368000pt;}
.ya3{bottom:51.040000pt;}
.y61{bottom:51.136000pt;}
.y82{bottom:51.168000pt;}
.y3d{bottom:52.288000pt;}
.y57{bottom:52.352000pt;}
.y42{bottom:52.608000pt;}
.y96{bottom:52.640000pt;}
.yb6{bottom:52.672000pt;}
.y94{bottom:52.928000pt;}
.y59{bottom:52.960000pt;}
.yb3{bottom:53.184000pt;}
.y51{bottom:53.312000pt;}
.y54{bottom:53.440000pt;}
.ya7{bottom:53.472000pt;}
.yfe{bottom:53.664000pt;}
.yb9{bottom:53.696000pt;}
.ya0{bottom:53.728000pt;}
.y93{bottom:53.920000pt;}
.y5d{bottom:54.048000pt;}
.y47{bottom:54.336000pt;}
.y4c{bottom:54.688000pt;}
.ya6{bottom:55.168000pt;}
.y65{bottom:55.456000pt;}
.yb0{bottom:55.520000pt;}
.ydb{bottom:56.672000pt;}
.y32{bottom:62.208000pt;}
.yc4{bottom:64.384000pt;}
.ye4{bottom:66.688000pt;}
.y90{bottom:67.744000pt;}
.yc2{bottom:67.840000pt;}
.ybd{bottom:69.600000pt;}
.ya2{bottom:70.240000pt;}
.y60{bottom:70.336000pt;}
.y81{bottom:70.368000pt;}
.y2b{bottom:71.136000pt;}
.y41{bottom:71.808000pt;}
.y95{bottom:71.840000pt;}
.yb5{bottom:71.872000pt;}
.y58{bottom:72.160000pt;}
.yb2{bottom:72.384000pt;}
.y50{bottom:72.512000pt;}
.y53{bottom:72.640000pt;}
.yfd{bottom:72.864000pt;}
.yb8{bottom:72.896000pt;}
.y9f{bottom:72.928000pt;}
.y5c{bottom:73.248000pt;}
.y2e{bottom:73.344000pt;}
.y46{bottom:73.536000pt;}
.y4b{bottom:73.888000pt;}
.y64{bottom:74.656000pt;}
.yaf{bottom:74.720000pt;}
.y14b{bottom:74.912000pt;}
.y119{bottom:77.312000pt;}
.y134{bottom:80.512000pt;}
.y9{bottom:80.736000pt;}
.y33{bottom:84.864000pt;}
.y31{bottom:85.248000pt;}
.y8f{bottom:86.944000pt;}
.yc1{bottom:87.040000pt;}
.ycb{bottom:87.616000pt;}
.ya1{bottom:89.440000pt;}
.y80{bottom:89.568000pt;}
.y40{bottom:91.008000pt;}
.yb4{bottom:91.104000pt;}
.yb1{bottom:91.584000pt;}
.y4f{bottom:91.712000pt;}
.yb7{bottom:92.096000pt;}
.y5b{bottom:92.448000pt;}
.y45{bottom:92.736000pt;}
.yba{bottom:93.088000pt;}
.yae{bottom:93.920000pt;}
.y2a{bottom:94.176000pt;}
.y2d{bottom:96.416000pt;}
.y14a{bottom:98.752000pt;}
.y12{bottom:98.944000pt;}
.y133{bottom:99.232000pt;}
.y118{bottom:99.392000pt;}
.y7c{bottom:100.992000pt;}
.yca{bottom:106.816000pt;}
.y30{bottom:108.288000pt;}
.y7f{bottom:108.800000pt;}
.y3f{bottom:110.240000pt;}
.y4e{bottom:110.912000pt;}
.y8{bottom:115.296000pt;}
.y132{bottom:117.952000pt;}
.y2c{bottom:119.456000pt;}
.y149{bottom:122.752000pt;}
.yc9{bottom:126.016000pt;}
.y29{bottom:126.176000pt;}
.y7e{bottom:128.000000pt;}
.y2f{bottom:131.328000pt;}
.y131{bottom:136.666667pt;}
.ye1{bottom:139.546667pt;}
.ye0{bottom:139.773333pt;}
.yf1{bottom:142.080000pt;}
.yef{bottom:142.786667pt;}
.yf0{bottom:142.813333pt;}
.y7b{bottom:143.226667pt;}
.yda{bottom:144.986667pt;}
.y117{bottom:145.466667pt;}
.y148{bottom:146.586667pt;}
.y7d{bottom:147.200000pt;}
.y7{bottom:149.853333pt;}
.y130{bottom:155.426667pt;}
.y116{bottom:167.586667pt;}
.y11{bottom:169.826667pt;}
.y147{bottom:170.626667pt;}
.yc0{bottom:173.600000pt;}
.y12f{bottom:174.146667pt;}
.y6{bottom:184.413333pt;}
.ybc{bottom:185.506667pt;}
.yed{bottom:185.693333pt;}
.yad{bottom:188.986667pt;}
.y12e{bottom:192.866667pt;}
.y146{bottom:194.466667pt;}
.y26{bottom:196.226667pt;}
.yee{bottom:198.653333pt;}
.y7a{bottom:201.506667pt;}
.ye3{bottom:205.413333pt;}
.y12d{bottom:211.586667pt;}
.yec{bottom:211.613333pt;}
.yf8{bottom:211.746667pt;}
.y115{bottom:213.666667pt;}
.yf2{bottom:214.240000pt;}
.y3c{bottom:214.973333pt;}
.yd9{bottom:216.706667pt;}
.y107{bottom:217.506667pt;}
.y9e{bottom:218.053333pt;}
.y145{bottom:218.466667pt;}
.y25{bottom:219.293333pt;}
.y10a{bottom:222.080000pt;}
.y89{bottom:227.746667pt;}
.y12c{bottom:230.306667pt;}
.yce{bottom:232.546667pt;}
.y10{bottom:240.733333pt;}
.y1c{bottom:241.946667pt;}
.y144{bottom:242.306667pt;}
.y24{bottom:242.333333pt;}
.y79{bottom:243.746667pt;}
.ye2{bottom:243.813333pt;}
.y18{bottom:248.320000pt;}
.y12b{bottom:249.026667pt;}
.ybf{bottom:250.493333pt;}
.yd0{bottom:251.453333pt;}
.y3b{bottom:253.373333pt;}
.yf7{bottom:253.986667pt;}
.y106{bottom:255.906667pt;}
.y28{bottom:257.946667pt;}
.yd8{bottom:258.946667pt;}
.y114{bottom:259.746667pt;}
.y5{bottom:259.973333pt;}
.y9d{bottom:260.320000pt;}
.y1b{bottom:264.986667pt;}
.y23{bottom:265.373333pt;}
.y143{bottom:266.306667pt;}
.y12a{bottom:267.746667pt;}
.yd4{bottom:268.546667pt;}
.y1e{bottom:269.466667pt;}
.yac{bottom:269.600000pt;}
.y88{bottom:269.986667pt;}
.y17{bottom:271.360000pt;}
.yfc{bottom:275.266667pt;}
.y1d{bottom:280.986667pt;}
.y78{bottom:285.986667pt;}
.y129{bottom:286.466667pt;}
.y6c{bottom:286.560000pt;}
.y22{bottom:288.413333pt;}
.y142{bottom:290.146667pt;}
.y16{bottom:294.400000pt;}
.yf6{bottom:296.226667pt;}
.y1a{bottom:296.986667pt;}
.yd2{bottom:300.546667pt;}
.y9c{bottom:302.560000pt;}
.y92{bottom:302.626667pt;}
.y27{bottom:304.026667pt;}
.ycd{bottom:304.546667pt;}
.y128{bottom:305.186667pt;}
.y113{bottom:305.826667pt;}
.y105{bottom:310.306667pt;}
.y21{bottom:311.453333pt;}
.yf{bottom:311.773333pt;}
.y141{bottom:314.146667pt;}
.y35{bottom:314.400000pt;}
.y15{bottom:317.466667pt;}
.yfb{bottom:317.533333pt;}
.y4{bottom:317.573333pt;}
.y71{bottom:319.106667pt;}
.y19{bottom:320.066667pt;}
.y127{bottom:323.933333pt;}
.y112{bottom:327.933333pt;}
.y87{bottom:328.253333pt;}
.yd7{bottom:330.493333pt;}
.y8e{bottom:333.213333pt;}
.y3a{bottom:334.333333pt;}
.y44{bottom:337.093333pt;}
.y140{bottom:338.013333pt;}
.y109{bottom:339.746667pt;}
.y6b{bottom:340.826667pt;}
.y126{bottom:342.653333pt;}
.y20{bottom:343.453333pt;}
.y77{bottom:344.253333pt;}
.y9b{bottom:344.800000pt;}
.y104{bottom:348.733333pt;}
.yab{bottom:350.213333pt;}
.yf5{bottom:354.493333pt;}
.ye9{bottom:354.586667pt;}
.ydc{bottom:355.546667pt;}
.yde{bottom:356.413333pt;}
.y108{bottom:359.200000pt;}
.y70{bottom:361.346667pt;}
.y125{bottom:361.373333pt;}
.ydf{bottom:361.666667pt;}
.y13f{bottom:362.013333pt;}
.y1f{bottom:366.493333pt;}
.y86{bottom:370.493333pt;}
.yeb{bottom:372.480000pt;}
.y39{bottom:372.773333pt;}
.y111{bottom:374.013333pt;}
.y3{bottom:375.173333pt;}
.y8d{bottom:377.373333pt;}
.y124{bottom:380.093333pt;}
.ye8{bottom:380.546667pt;}
.y34{bottom:381.600000pt;}
.ye{bottom:382.653333pt;}
.y49{bottom:385.306667pt;}
.y13e{bottom:385.853333pt;}
.y76{bottom:386.493333pt;}
.y9a{bottom:387.040000pt;}
.yfa{bottom:389.213333pt;}
.y6a{bottom:395.066667pt;}
.y123{bottom:398.813333pt;}
.yd1{bottom:399.066667pt;}
.yd6{bottom:402.013333pt;}
.ybb{bottom:402.493333pt;}
.y103{bottom:403.133333pt;}
.y6f{bottom:403.586667pt;}
.y13d{bottom:409.853333pt;}
.yd3{bottom:412.573333pt;}
.yf4{bottom:412.733333pt;}
.y122{bottom:417.533333pt;}
.y110{bottom:420.093333pt;}
.y85{bottom:428.733333pt;}
.y99{bottom:429.306667pt;}
.yaa{bottom:430.813333pt;}
.yf9{bottom:431.453333pt;}
.y8c{bottom:432.253333pt;}
.y13c{bottom:433.693333pt;}
.y121{bottom:436.253333pt;}
.y69{bottom:437.306667pt;}
.yea{bottom:438.106667pt;}
.y102{bottom:441.533333pt;}
.y75{bottom:444.733333pt;}
.ycc{bottom:448.573333pt;}
.yd{bottom:453.573333pt;}
.y38{bottom:453.893333pt;}
.y120{bottom:454.973333pt;}
.y13b{bottom:457.693333pt;}
.y10f{bottom:466.173333pt;}
.yf3{bottom:470.973333pt;}
.y98{bottom:471.546667pt;}
.yd5{bottom:473.693333pt;}
.y68{bottom:479.546667pt;}
.y13a{bottom:481.573333pt;}
.y74{bottom:487.013333pt;}
.y10e{bottom:488.293333pt;}
.y55{bottom:491.546667pt;}
.y37{bottom:492.293333pt;}
.y11f{bottom:492.453333pt;}
.ya4{bottom:492.893333pt;}
.y6e{bottom:495.453333pt;}
.y101{bottom:495.973333pt;}
.y83{bottom:503.013333pt;}
.y139{bottom:505.573333pt;}
.y11e{bottom:511.173333pt;}
.ya9{bottom:511.426667pt;}
.ydd{bottom:523.266667pt;}
.yc{bottom:524.613333pt;}
.y84{bottom:529.253333pt;}
.y138{bottom:529.413333pt;}
.y11d{bottom:529.893333pt;}
.y8b{bottom:531.173333pt;}
.y10d{bottom:534.373333pt;}
.ye7{bottom:535.906667pt;}
.y5e{bottom:537.506667pt;}
.y6d{bottom:537.693333pt;}
.y67{bottom:537.826667pt;}
.y73{bottom:545.253333pt;}
.y56{bottom:548.226667pt;}
.y11c{bottom:548.613333pt;}
.y100{bottom:550.373333pt;}
.y137{bottom:553.413333pt;}
.yc8{bottom:555.426667pt;}
.y10c{bottom:556.453333pt;}
.yc6{bottom:557.946667pt;}
.y11b{bottom:567.333333pt;}
.ya5{bottom:572.413333pt;}
.y66{bottom:574.746667pt;}
.y136{bottom:577.253333pt;}
.y5f{bottom:580.026667pt;}
.y62{bottom:580.386667pt;}
.y8a{bottom:586.053333pt;}
.y72{bottom:587.493333pt;}
.y43{bottom:587.520000pt;}
.y97{bottom:588.186667pt;}
.y52{bottom:588.226667pt;}
.y4d{bottom:588.386667pt;}
.yff{bottom:588.773333pt;}
.y5a{bottom:589.186667pt;}
.ya8{bottom:592.000000pt;}
.y3e{bottom:595.333333pt;}
.yb{bottom:595.520000pt;}
.ycf{bottom:601.213333pt;}
.y135{bottom:601.253333pt;}
.y4a{bottom:601.506667pt;}
.y48{bottom:602.493333pt;}
.y10b{bottom:602.533333pt;}
.y11a{bottom:604.773333pt;}
.ye6{bottom:604.866667pt;}
.yc7{bottom:609.920000pt;}
.ya{bottom:660.986667pt;}
.y63{bottom:661.786667pt;}
.hc{height:55.579687pt;}
.hd{height:58.687500pt;}
.he{height:58.804875pt;}
.h24{height:63.382500pt;}
.h25{height:63.499875pt;}
.h7{height:63.936000pt;}
.h9{height:78.054375pt;}
.h8{height:78.171750pt;}
.h10{height:81.140625pt;}
.h18{height:83.203125pt;}
.h1{height:88.031250pt;}
.h1d{height:88.148625pt;}
.h19{height:98.008125pt;}
.h12{height:113.814516pt;}
.h13{height:113.928331pt;}
.h16{height:114.562500pt;}
.h14{height:114.626761pt;}
.h17{height:114.677062pt;}
.h4{height:117.375000pt;}
.h5{height:117.492375pt;}
.h11{height:117.535000pt;}
.h15{height:121.375000pt;}
.ha{height:124.134375pt;}
.h1a{height:126.708333pt;}
.hf{height:128.735000pt;}
.h23{height:132.046875pt;}
.h6{height:133.465312pt;}
.h1f{height:139.871250pt;}
.hb{height:168.923750pt;}
.h2{height:190.746562pt;}
.h3{height:190.861125pt;}
.h20{height:191.711250pt;}
.h1e{height:191.988625pt;}
.h22{height:209.753542pt;}
.h1b{height:238.862813pt;}
.h21{height:243.551250pt;}
.h1c{height:244.726875pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:9.599981pt;}
.x7{left:25.215981pt;}
.x16{left:36.287981pt;}
.x15{left:37.375981pt;}
.x20{left:38.911981pt;}
.x4{left:44.639981pt;}
.x1{left:45.599981pt;}
.x3{left:46.687981pt;}
.x2c{left:49.087981pt;}
.x10{left:50.335981pt;}
.x12{left:52.511981pt;}
.x1b{left:64.447981pt;}
.x1a{left:83.327981pt;}
.xe{left:93.407981pt;}
.x41{left:97.599981pt;}
.x18{left:101.887981pt;}
.x2{left:105.599981pt;}
.x43{left:111.103981pt;}
.x2a{left:117.055981pt;}
.x25{left:121.215981pt;}
.x48{left:123.007981pt;}
.x32{left:126.175981pt;}
.x2b{left:130.015981pt;}
.x26{left:134.973314pt;}
.x34{left:139.933314pt;}
.x28{left:145.213314pt;}
.x23{left:148.733314pt;}
.x29{left:179.653314pt;}
.x24{left:182.853314pt;}
.x17{left:184.133314pt;}
.x22{left:195.813314pt;}
.x27{left:198.693314pt;}
.x2f{left:211.746648pt;}
.x3b{left:226.173314pt;}
.x4f{left:232.253314pt;}
.x8{left:234.626648pt;}
.x4e{left:237.759981pt;}
.x42{left:273.053314pt;}
.x3f{left:287.773314pt;}
.x3c{left:294.466648pt;}
.x44{left:299.933314pt;}
.x38{left:308.893314pt;}
.x39{left:406.786648pt;}
.x33{left:412.933314pt;}
.x3a{left:425.826648pt;}
.x9{left:444.066648pt;}
.x3e{left:465.533314pt;}
.x4c{left:467.133314pt;}
.x45{left:488.453314pt;}
.x21{left:490.173314pt;}
.x31{left:549.413314pt;}
.x11{left:551.173314pt;}
.x36{left:557.213314pt;}
.x51{left:562.973314pt;}
.x35{left:567.266648pt;}
.x4a{left:589.053314pt;}
.x49{left:591.933314pt;}
.x1e{left:641.693314pt;}
.x2e{left:649.599981pt;}
.xa{left:653.466648pt;}
.x1c{left:657.693314pt;}
.xf{left:659.706648pt;}
.x1f{left:668.386648pt;}
.x46{left:676.959981pt;}
.x30{left:686.173314pt;}
.x4d{left:702.266648pt;}
.x40{left:799.266648pt;}
.x3d{left:825.893314pt;}
.xb{left:862.906648pt;}
.x47{left:877.986648pt;}
.x50{left:890.813314pt;}
.x37{left:972.159981pt;}
.x4b{left:1065.826648pt;}
.xc{left:1072.319981pt;}
.x2d{left:1142.373314pt;}
.x19{left:1165.439981pt;}
.xd{left:1173.919981pt;}
.x14{left:1243.519981pt;}
.x13{left:1246.786648pt;}
.x5{left:1256.959981pt;}
.x6{left:1258.626648pt;}
}




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