
    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_43cd8645ed76117e1ae8fbf7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010742;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_dbfc9406878131f64f84673b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.044922;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_8a8bc94f34cedc2fb46f6761.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_35af5782ef8e612a97014fde.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.044922;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_01aea080544f0f575d72e5e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010742;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_857a9a28f3992fba387e5edb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d6d8bb9d4e900e4032fec149.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9ced4f2edf21a80b4ed59c44.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010254;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;}
.m2{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);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v1{vertical-align:-52.800000px;}
.v0{vertical-align:0.000000px;}
.ls36{letter-spacing:-2.652000px;}
.ls2b{letter-spacing:-1.836000px;}
.ls17{letter-spacing:-1.656000px;}
.ls26{letter-spacing:-1.548000px;}
.ls14{letter-spacing:-1.530000px;}
.ls22{letter-spacing:-1.380000px;}
.ls1c{letter-spacing:-1.284000px;}
.ls13{letter-spacing:-1.272000px;}
.ls3{letter-spacing:-1.200000px;}
.lsc{letter-spacing:-1.176000px;}
.ls2a{letter-spacing:-1.086000px;}
.ls32{letter-spacing:-1.044000px;}
.ls38{letter-spacing:-1.026000px;}
.ls35{letter-spacing:-0.942000px;}
.ls33{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.636000px;}
.ls39{letter-spacing:-0.618000px;}
.lsf{letter-spacing:-0.519000px;}
.ls7{letter-spacing:-0.226200px;}
.ls25{letter-spacing:-0.080400px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.094350px;}
.ls28{letter-spacing:0.103950px;}
.ls2e{letter-spacing:0.105600px;}
.ls20{letter-spacing:0.207150px;}
.ls18{letter-spacing:0.230400px;}
.ls29{letter-spacing:0.253950px;}
.ls1f{letter-spacing:0.279450px;}
.ls19{letter-spacing:0.283950px;}
.ls1d{letter-spacing:0.286800px;}
.lse{letter-spacing:0.300000px;}
.ls2c{letter-spacing:0.339450px;}
.ls1a{letter-spacing:0.359550px;}
.ls1b{letter-spacing:0.368400px;}
.ls8{letter-spacing:0.457200px;}
.ls16{letter-spacing:0.531600px;}
.ls37{letter-spacing:0.924000px;}
.ls12{letter-spacing:1.086000px;}
.ls24{letter-spacing:1.116000px;}
.lsd{letter-spacing:1.131600px;}
.ls1e{letter-spacing:1.422000px;}
.lsb{letter-spacing:1.512000px;}
.ls27{letter-spacing:1.764000px;}
.ls34{letter-spacing:1.896000px;}
.ls11{letter-spacing:2.706000px;}
.ls2{letter-spacing:17.770050px;}
.ls30{letter-spacing:27.021150px;}
.ls2f{letter-spacing:28.341150px;}
.ls31{letter-spacing:28.521150px;}
.ls10{letter-spacing:61.071600px;}
.ls23{letter-spacing:61.131600px;}
.ls15{letter-spacing:70.147500px;}
.ls6{letter-spacing:70.267500px;}
.ls1{letter-spacing:70.297500px;}
.ls5{letter-spacing:70.327500px;}
.ls2d{letter-spacing:97.147500px;}
.ls9{letter-spacing:97.297500px;}
.lsa{letter-spacing:97.327500px;}
.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;}
}
.ws20{word-spacing:-63.043200px;}
.ws1f{word-spacing:-62.406000px;}
.ws1{word-spacing:-59.700000px;}
.ws1b{word-spacing:-57.063600px;}
.ws59{word-spacing:-30.447600px;}
.wsd{word-spacing:-30.412500px;}
.wsa{word-spacing:-28.551600px;}
.ws2e{word-spacing:-28.499742px;}
.ws56{word-spacing:-27.615600px;}
.ws51{word-spacing:-27.507600px;}
.ws11{word-spacing:-27.375600px;}
.ws2{word-spacing:-27.037500px;}
.wsb{word-spacing:-26.811300px;}
.ws5c{word-spacing:-26.095500px;}
.ws5b{word-spacing:-25.657500px;}
.ws29{word-spacing:-25.381500px;}
.ws1d{word-spacing:-24.987600px;}
.ws2c{word-spacing:-23.892900px;}
.ws1e{word-spacing:-23.662500px;}
.ws7{word-spacing:-22.537500px;}
.ws8{word-spacing:-22.500000px;}
.ws1a{word-spacing:-10.170000px;}
.ws30{word-spacing:-4.284900px;}
.ws63{word-spacing:-3.817800px;}
.ws12{word-spacing:-3.726450px;}
.ws41{word-spacing:-3.718050px;}
.ws10{word-spacing:-3.569250px;}
.ws3{word-spacing:-3.457200px;}
.ws44{word-spacing:-3.398250px;}
.ws5a{word-spacing:-3.127050px;}
.ws33{word-spacing:-2.912250px;}
.ws43{word-spacing:-2.647050px;}
.ws57{word-spacing:-2.305050px;}
.ws5e{word-spacing:-2.245350px;}
.ws4d{word-spacing:-2.227350px;}
.ws5d{word-spacing:-2.167350px;}
.ws66{word-spacing:-2.155200px;}
.ws45{word-spacing:-2.136150px;}
.ws3e{word-spacing:-1.975950px;}
.ws3b{word-spacing:-1.786500px;}
.ws35{word-spacing:-1.747650px;}
.ws54{word-spacing:-1.419150px;}
.ws34{word-spacing:-1.414500px;}
.ws9{word-spacing:-1.394100px;}
.ws1c{word-spacing:-1.366350px;}
.ws36{word-spacing:-1.338450px;}
.ws38{word-spacing:-1.278450px;}
.ws40{word-spacing:-1.236600px;}
.ws31{word-spacing:-1.230750px;}
.wsc{word-spacing:-1.105500px;}
.ws60{word-spacing:-1.097400px;}
.ws61{word-spacing:-1.036050px;}
.ws58{word-spacing:-1.003050px;}
.ws4b{word-spacing:-0.992100px;}
.ws47{word-spacing:-0.983700px;}
.ws26{word-spacing:-0.919800px;}
.ws37{word-spacing:-0.918300px;}
.ws50{word-spacing:-0.866250px;}
.ws64{word-spacing:-0.850650px;}
.ws2a{word-spacing:-0.841050px;}
.wsf{word-spacing:-0.712500px;}
.ws14{word-spacing:-0.681450px;}
.ws4c{word-spacing:-0.593400px;}
.ws19{word-spacing:-0.567150px;}
.ws53{word-spacing:-0.551700px;}
.ws67{word-spacing:-0.502950px;}
.ws16{word-spacing:-0.489000px;}
.ws52{word-spacing:-0.335250px;}
.ws17{word-spacing:-0.326100px;}
.ws27{word-spacing:-0.319800px;}
.ws15{word-spacing:-0.257850px;}
.ws28{word-spacing:-0.210450px;}
.ws65{word-spacing:-0.170700px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.146550px;}
.ws5f{word-spacing:0.240600px;}
.ws55{word-spacing:0.278700px;}
.ws13{word-spacing:0.396600px;}
.ws48{word-spacing:1.149450px;}
.ws32{word-spacing:2.322150px;}
.ws5{word-spacing:5.073600px;}
.ws3d{word-spacing:46.436850px;}
.ws3c{word-spacing:57.562500px;}
.ws3a{word-spacing:72.626700px;}
.ws22{word-spacing:1383.868200px;}
.ws3f{word-spacing:4633.706850px;}
.ws68{word-spacing:4634.426850px;}
.ws49{word-spacing:4635.206850px;}
.ws4e{word-spacing:4635.926850px;}
.ws4a{word-spacing:4637.426850px;}
.ws62{word-spacing:4638.206850px;}
.ws42{word-spacing:4641.206850px;}
.ws46{word-spacing:4641.926850px;}
.ws4f{word-spacing:4644.986850px;}
.ws6{word-spacing:4650.610350px;}
.ws2b{word-spacing:4663.706850px;}
.ws2f{word-spacing:4664.426850px;}
.ws2d{word-spacing:4665.926850px;}
.ws39{word-spacing:4666.706850px;}
.ws24{word-spacing:4669.706850px;}
.ws25{word-spacing:4670.486850px;}
.ws23{word-spacing:4698.206850px;}
.ws21{word-spacing:4702.706850px;}
.ws4{word-spacing:4706.426850px;}
.ws18{word-spacing:4710.206850px;}
._8{margin-left:-5.182350px;}
._3{margin-left:-3.419400px;}
._1{margin-left:-2.389500px;}
._4{margin-left:-1.081500px;}
._5{width:1.134900px;}
._0{width:2.150550px;}
._6{width:3.245400px;}
._2{width:4.294800px;}
._c{width:6.098700px;}
._9{width:20.031150px;}
._a{width:25.207200px;}
._b{width:26.357550px;}
._d{width:28.426500px;}
._7{width:29.940900px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:45.000000px;}
.fs8{font-size:85.500000px;}
.fs7{font-size:85.650000px;}
.fs6{font-size:90.000000px;}
.fs5{font-size:90.150000px;}
.fsc{font-size:94.500000px;}
.fsb{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fsd{font-size:113.998970px;}
.fs4{font-size:121.650000px;}
.fs2{font-size:121.800000px;}
.fse{font-size:144.150000px;}
.fsa{font-size:216.150000px;}
.fs1{font-size:238.800000px;}
.fs0{font-size:238.950000px;}
.fsf{font-size:324.450000px;}
.y0{bottom:0.000000px;}
.y48{bottom:28.170000px;}
.y4a{bottom:29.295000px;}
.y4{bottom:33.187500px;}
.y11{bottom:33.375000px;}
.yfa{bottom:77.737500px;}
.y87{bottom:88.725000px;}
.y42{bottom:90.375000px;}
.y95{bottom:94.350000px;}
.y70{bottom:95.250000px;}
.yc5{bottom:103.612500px;}
.y113{bottom:103.650000px;}
.y116{bottom:103.695000px;}
.y107{bottom:103.950000px;}
.y10a{bottom:103.995000px;}
.yde{bottom:107.025000px;}
.yf9{bottom:114.937500px;}
.yec{bottom:116.437500px;}
.ya1{bottom:121.425000px;}
.y17{bottom:121.762500px;}
.y11c{bottom:122.287500px;}
.y41{bottom:126.412500px;}
.y94{bottom:131.512500px;}
.y6f{bottom:132.450000px;}
.y86{bottom:133.762500px;}
.y8f{bottom:134.287500px;}
.ydd{bottom:139.725000px;}
.ycf{bottom:141.037500px;}
.yf8{bottom:150.975000px;}
.yc7{bottom:157.800000px;}
.yeb{bottom:160.380000px;}
.y11b{bottom:160.575000px;}
.y40{bottom:163.575000px;}
.y93{bottom:167.550000px;}
.y6e{bottom:168.495000px;}
.y85{bottom:169.845000px;}
.y35{bottom:171.450000px;}
.ydc{bottom:172.380000px;}
.y28{bottom:174.825000px;}
.yce{bottom:178.245000px;}
.yf7{bottom:188.130000px;}
.yc6{bottom:190.470000px;}
.y8e{bottom:192.855000px;}
.yea{bottom:197.550000px;}
.y110{bottom:200.700000px;}
.y3f{bottom:200.775000px;}
.y16{bottom:202.380000px;}
.y27{bottom:202.980000px;}
.ydb{bottom:203.925000px;}
.y92{bottom:204.750000px;}
.y6d{bottom:205.650000px;}
.y123{bottom:205.800000px;}
.y34{bottom:207.525000px;}
.ya0{bottom:210.420000px;}
.ycd{bottom:214.275000px;}
.y11a{bottom:214.650000px;}
.y10{bottom:222.150000px;}
.yf6{bottom:224.220000px;}
.y26{bottom:226.650000px;}
.y8d{bottom:230.070000px;}
.y10f{bottom:233.370000px;}
.ye9{bottom:234.720000px;}
.yc4{bottom:235.425000px;}
.yda{bottom:236.595000px;}
.y33{bottom:236.820000px;}
.y122{bottom:238.455000px;}
.y84{bottom:240.795000px;}
.y6c{bottom:241.725000px;}
.y119{bottom:254.100000px;}
.y9f{bottom:254.370000px;}
.y104{bottom:255.975000px;}
.yf{bottom:259.350000px;}
.yf5{bottom:261.375000px;}
.yd9{bottom:269.250000px;}
.y121{bottom:270.000000px;}
.yc3{bottom:271.470000px;}
.y29{bottom:273.120000px;}
.y32{bottom:273.975000px;}
.y83{bottom:277.995000px;}
.y6b{bottom:278.880000px;}
.y3e{bottom:281.880000px;}
.y60{bottom:287.700000px;}
.y103{bottom:288.630000px;}
.y9e{bottom:291.525000px;}
.ye{bottom:295.380000px;}
.yf4{bottom:298.530000px;}
.yd8{bottom:301.950000px;}
.y120{bottom:302.655000px;}
.ycc{bottom:303.270000px;}
.y44{bottom:305.445000px;}
.y118{bottom:308.175000px;}
.yc2{bottom:308.655000px;}
.y31{bottom:310.050000px;}
.y82{bottom:315.150000px;}
.y6a{bottom:316.050000px;}
.y3d{bottom:317.925000px;}
.y102{bottom:321.300000px;}
.ye8{bottom:322.605000px;}
.y10e{bottom:324.000000px;}
.yc8{bottom:325.800000px;}
.y125{bottom:325.905000px;}
.y9d{bottom:327.600000px;}
.y24{bottom:330.780000px;}
.yd{bottom:332.550000px;}
.y115{bottom:334.125000px;}
.yd7{bottom:334.605000px;}
.yb0{bottom:336.870000px;}
.ycb{bottom:339.345000px;}
.yf3{bottom:342.495000px;}
.yb9{bottom:344.370000px;}
.yc1{bottom:344.700000px;}
.yaa{bottom:344.730000px;}
.y5f{bottom:345.870000px;}
.y81{bottom:351.195000px;}
.y69{bottom:352.125000px;}
.y101{bottom:353.970000px;}
.y30{bottom:355.080000px;}
.y23{bottom:358.950000px;}
.y91{bottom:359.100000px;}
.ye7{bottom:359.775000px;}
.y1d{bottom:361.830000px;}
.y9c{bottom:364.755000px;}
.yd6{bottom:366.150000px;}
.yc{bottom:368.625000px;}
.y77{bottom:376.095000px;}
.yca{bottom:376.500000px;}
.y112{bottom:378.000000px;}
.yf2{bottom:378.525000px;}
.ya9{bottom:380.775000px;}
.yb8{bottom:381.525000px;}
.y5e{bottom:381.945000px;}
.y22{bottom:382.620000px;}
.y19{bottom:383.850000px;}
.y2f{bottom:384.375000px;}
.y100{bottom:385.500000px;}
.y3c{bottom:391.155000px;}
.y1c{bottom:394.530000px;}
.y8c{bottom:395.130000px;}
.ye6{bottom:395.820000px;}
.y68{bottom:396.030000px;}
.y15{bottom:396.975000px;}
.yd5{bottom:398.820000px;}
.y39{bottom:399.030000px;}
.y4b{bottom:407.100000px;}
.y56{bottom:408.375000px;}
.y18{bottom:409.755000px;}
.yaf{bottom:410.100000px;}
.y76{bottom:413.280000px;}
.yb{bottom:413.655000px;}
.yf1{bottom:415.725000px;}
.ya8{bottom:417.975000px;}
.yff{bottom:418.200000px;}
.y54{bottom:421.350000px;}
.y124{bottom:423.900000px;}
.yb7{bottom:425.475000px;}
.y5d{bottom:426.975000px;}
.y1b{bottom:427.200000px;}
.y2e{bottom:428.325000px;}
.y25{bottom:429.030000px;}
.yd4{bottom:431.475000px;}
.y8b{bottom:432.300000px;}
.ye5{bottom:433.005000px;}
.y67{bottom:433.245000px;}
.yc0{bottom:433.695000px;}
.y38{bottom:436.200000px;}
.y55{bottom:436.530000px;}
.y117{bottom:437.820000px;}
.yf0{bottom:445.005000px;}
.yae{bottom:447.255000px;}
.y75{bottom:449.325000px;}
.yc9{bottom:449.745000px;}
.yfe{bottom:450.870000px;}
.y3{bottom:452.025000px;}
.y10c{bottom:453.375000px;}
.y9b{bottom:453.750000px;}
.ya7{bottom:455.130000px;}
.ya{bottom:457.620000px;}
.yb6{bottom:462.630000px;}
.y5c{bottom:463.050000px;}
.y4f{bottom:463.575000px;}
.yd3{bottom:464.175000px;}
.y3b{bottom:464.370000px;}
.y8a{bottom:469.500000px;}
.ye4{bottom:470.175000px;}
.y66{bottom:470.400000px;}
.ybf{bottom:470.850000px;}
.y2d{bottom:472.275000px;}
.y53{bottom:473.745000px;}
.y7c{bottom:479.550000px;}
.y114{bottom:481.650000px;}
.yef{bottom:482.175000px;}
.yad{bottom:483.300000px;}
.y49{bottom:484.425000px;}
.y74{bottom:486.525000px;}
.y20{bottom:486.750000px;}
.y9{bottom:486.900000px;}
.y9a{bottom:489.825000px;}
.ya6{bottom:491.205000px;}
.yd2{bottom:496.845000px;}
.y109{bottom:497.250000px;}
.y11f{bottom:497.595000px;}
.y4e{bottom:500.775000px;}
.y50{bottom:500.925000px;}
.y2c{bottom:501.570000px;}
.y89{bottom:505.530000px;}
.ye3{bottom:506.220000px;}
.y65{bottom:506.445000px;}
.yb5{bottom:506.580000px;}
.ybe{bottom:506.925000px;}
.y5b{bottom:506.970000px;}
.y37{bottom:509.445000px;}
.y1f{bottom:510.405000px;}
.y52{bottom:512.025000px;}
.y7b{bottom:515.595000px;}
.y2{bottom:517.350000px;}
.yac{bottom:520.500000px;}
.y73{bottom:522.570000px;}
.y47{bottom:522.705000px;}
.y111{bottom:524.700000px;}
.y99{bottom:526.995000px;}
.yfd{bottom:527.475000px;}
.ya5{bottom:528.375000px;}
.y11e{bottom:530.250000px;}
.y8{bottom:530.850000px;}
.y1e{bottom:538.575000px;}
.y3a{bottom:538.725000px;}
.y4d{bottom:539.070000px;}
.y106{bottom:541.125000px;}
.y80{bottom:542.700000px;}
.ye2{bottom:543.405000px;}
.y64{bottom:543.630000px;}
.yb4{bottom:543.750000px;}
.ybd{bottom:544.095000px;}
.y5a{bottom:544.155000px;}
.y2b{bottom:545.475000px;}
.y51{bottom:550.350000px;}
.y10d{bottom:557.370000px;}
.yab{bottom:557.655000px;}
.y72{bottom:559.725000px;}
.y7a{bottom:560.655000px;}
.yd1{bottom:561.030000px;}
.y11d{bottom:562.905000px;}
.y98{bottom:563.025000px;}
.ya4{bottom:564.405000px;}
.yee{bottom:570.045000px;}
.yfc{bottom:571.380000px;}
.y7{bottom:574.755000px;}
.y4c{bottom:577.380000px;}
.y14{bottom:578.445000px;}
.y7f{bottom:578.775000px;}
.ye1{bottom:579.450000px;}
.y63{bottom:579.675000px;}
.yb3{bottom:579.780000px;}
.ybc{bottom:580.170000px;}
.y59{bottom:581.325000px;}
.y1{bottom:581.580000px;}
.y36{bottom:582.675000px;}
.y21{bottom:585.000000px;}
.y2a{bottom:590.550000px;}
.y1a{bottom:591.570000px;}
.yd0{bottom:593.700000px;}
.y71{bottom:595.800000px;}
.y79{bottom:596.700000px;}
.y97{bottom:600.225000px;}
.y10b{bottom:601.245000px;}
.ya3{bottom:601.620000px;}
.y13{bottom:604.350000px;}
.y43{bottom:607.905000px;}
.y90{bottom:608.070000px;}
.yed{bottom:613.995000px;}
.y7e{bottom:615.945000px;}
.yfb{bottom:616.470000px;}
.ye0{bottom:616.620000px;}
.y62{bottom:616.845000px;}
.yb2{bottom:616.995000px;}
.ybb{bottom:617.325000px;}
.y6{bottom:618.720000px;}
.y58{bottom:625.245000px;}
.y46{bottom:626.400000px;}
.y96{bottom:636.255000px;}
.ya2{bottom:637.650000px;}
.y78{bottom:640.650000px;}
.y108{bottom:645.075000px;}
.y7d{bottom:651.975000px;}
.ydf{bottom:652.695000px;}
.y61{bottom:652.905000px;}
.yb1{bottom:653.025000px;}
.yba{bottom:653.370000px;}
.y45{bottom:659.070000px;}
.y57{bottom:661.320000px;}
.y12{bottom:672.150000px;}
.y105{bottom:709.200000px;}
.y5{bottom:709.575000px;}
.y88{bottom:737.070000px;}
.hc{height:38.325000px;}
.he{height:39.412500px;}
.hd{height:44.758301px;}
.hb{height:65.878418px;}
.ha{height:68.503271px;}
.h8{height:71.982422px;}
.h7{height:72.102393px;}
.h11{height:72.812988px;}
.h12{height:72.928564px;}
.h13{height:75.581543px;}
.h10{height:75.701514px;}
.h15{height:78.736157px;}
.h1a{height:81.798999px;}
.h9{height:83.330420px;}
.h5{height:86.498877px;}
.h14{height:91.176910px;}
.h6{height:97.296240px;}
.h3{height:97.416211px;}
.h19{height:115.291846px;}
.hf{height:166.545264px;}
.h2{height:183.997266px;}
.h1{height:184.112842px;}
.h4{height:190.993359px;}
.h18{height:227.250000px;}
.h16{height:228.375000px;}
.h1b{height:249.991260px;}
.h17{height:454.500000px;}
.h0{height:810.000000px;}
.w2{width:55.162500px;}
.w3{width:86.700000px;}
.w5{width:459.000000px;}
.w4{width:675.000000px;}
.w6{width:900.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3a{left:10.875000px;}
.x30{left:11.887500px;}
.x2f{left:40.500000px;}
.x39{left:41.625000px;}
.x5{left:52.499979px;}
.x38{left:53.887479px;}
.x24{left:56.474979px;}
.x3e{left:77.474979px;}
.x6{left:79.499979px;}
.x15{left:82.349979px;}
.x17{left:84.037479px;}
.x31{left:86.137479px;}
.x16{left:95.849979px;}
.x1f{left:104.812479px;}
.x7{left:106.499979px;}
.x2e{left:112.087479px;}
.x20{left:130.237479px;}
.x18{left:133.537479px;}
.x37{left:140.287479px;}
.x1c{left:160.529979px;}
.x2d{left:165.299979px;}
.x2b{left:187.619979px;}
.x28{left:214.574979px;}
.x2{left:248.369979px;}
.x1{left:345.569979px;}
.x36{left:364.004979px;}
.x29{left:421.199979px;}
.x3{left:470.144979px;}
.x3b{left:499.500000px;}
.x3f{left:519.779979px;}
.x47{left:537.824979px;}
.x3d{left:553.019979px;}
.x21{left:562.454979px;}
.x40{left:571.574979px;}
.x3c{left:575.549979px;}
.x22{left:587.879979px;}
.x41{left:625.844979px;}
.x42{left:656.324979px;}
.x11{left:664.079979px;}
.x19{left:681.824979px;}
.x10{left:702.869979px;}
.x32{left:714.375000px;}
.xf{left:730.244979px;}
.x1a{left:735.869979px;}
.x44{left:739.949979px;}
.x12{left:750.419979px;}
.x33{left:760.574979px;}
.x34{left:780.824979px;}
.x1b{left:789.899979px;}
.x43{left:802.874979px;}
.x45{left:808.244979px;}
.x35{left:814.619979px;}
.x46{left:817.424979px;}
.x14{left:908.924979px;}
.x13{left:914.069979px;}
.x27{left:946.799979px;}
.xe{left:949.274979px;}
.x9{left:965.024979px;}
.x23{left:1020.119979px;}
.x1e{left:1044.795000px;}
.xb{left:1123.424979px;}
.xd{left:1131.044979px;}
.xa{left:1169.954979px;}
.x1d{left:1177.650000px;}
.xc{left:1211.324979px;}
.x2a{left:1354.199979px;}
.x2c{left:1356.074979px;}
.x26{left:1361.699979px;}
.x25{left:1363.199979px;}
.x8{left:1370.894979px;}
.x4{left:1372.379979px;}
@media print{
.v1{vertical-align:-46.933333pt;}
.v0{vertical-align:0.000000pt;}
.ls36{letter-spacing:-2.357333pt;}
.ls2b{letter-spacing:-1.632000pt;}
.ls17{letter-spacing:-1.472000pt;}
.ls26{letter-spacing:-1.376000pt;}
.ls14{letter-spacing:-1.360000pt;}
.ls22{letter-spacing:-1.226667pt;}
.ls1c{letter-spacing:-1.141333pt;}
.ls13{letter-spacing:-1.130667pt;}
.ls3{letter-spacing:-1.066667pt;}
.lsc{letter-spacing:-1.045333pt;}
.ls2a{letter-spacing:-0.965333pt;}
.ls32{letter-spacing:-0.928000pt;}
.ls38{letter-spacing:-0.912000pt;}
.ls35{letter-spacing:-0.837333pt;}
.ls33{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.565333pt;}
.ls39{letter-spacing:-0.549333pt;}
.lsf{letter-spacing:-0.461333pt;}
.ls7{letter-spacing:-0.201067pt;}
.ls25{letter-spacing:-0.071467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.083867pt;}
.ls28{letter-spacing:0.092400pt;}
.ls2e{letter-spacing:0.093867pt;}
.ls20{letter-spacing:0.184133pt;}
.ls18{letter-spacing:0.204800pt;}
.ls29{letter-spacing:0.225733pt;}
.ls1f{letter-spacing:0.248400pt;}
.ls19{letter-spacing:0.252400pt;}
.ls1d{letter-spacing:0.254933pt;}
.lse{letter-spacing:0.266667pt;}
.ls2c{letter-spacing:0.301733pt;}
.ls1a{letter-spacing:0.319600pt;}
.ls1b{letter-spacing:0.327467pt;}
.ls8{letter-spacing:0.406400pt;}
.ls16{letter-spacing:0.472533pt;}
.ls37{letter-spacing:0.821333pt;}
.ls12{letter-spacing:0.965333pt;}
.ls24{letter-spacing:0.992000pt;}
.lsd{letter-spacing:1.005867pt;}
.ls1e{letter-spacing:1.264000pt;}
.lsb{letter-spacing:1.344000pt;}
.ls27{letter-spacing:1.568000pt;}
.ls34{letter-spacing:1.685333pt;}
.ls11{letter-spacing:2.405333pt;}
.ls2{letter-spacing:15.795600pt;}
.ls30{letter-spacing:24.018800pt;}
.ls2f{letter-spacing:25.192133pt;}
.ls31{letter-spacing:25.352133pt;}
.ls10{letter-spacing:54.285867pt;}
.ls23{letter-spacing:54.339200pt;}
.ls15{letter-spacing:62.353333pt;}
.ls6{letter-spacing:62.460000pt;}
.ls1{letter-spacing:62.486667pt;}
.ls5{letter-spacing:62.513333pt;}
.ls2d{letter-spacing:86.353333pt;}
.ls9{letter-spacing:86.486667pt;}
.lsa{letter-spacing:86.513333pt;}
.ws20{word-spacing:-56.038400pt;}
.ws1f{word-spacing:-55.472000pt;}
.ws1{word-spacing:-53.066667pt;}
.ws1b{word-spacing:-50.723200pt;}
.ws59{word-spacing:-27.064533pt;}
.wsd{word-spacing:-27.033333pt;}
.wsa{word-spacing:-25.379200pt;}
.ws2e{word-spacing:-25.333104pt;}
.ws56{word-spacing:-24.547200pt;}
.ws51{word-spacing:-24.451200pt;}
.ws11{word-spacing:-24.333867pt;}
.ws2{word-spacing:-24.033333pt;}
.wsb{word-spacing:-23.832267pt;}
.ws5c{word-spacing:-23.196000pt;}
.ws5b{word-spacing:-22.806667pt;}
.ws29{word-spacing:-22.561333pt;}
.ws1d{word-spacing:-22.211200pt;}
.ws2c{word-spacing:-21.238133pt;}
.ws1e{word-spacing:-21.033333pt;}
.ws7{word-spacing:-20.033333pt;}
.ws8{word-spacing:-20.000000pt;}
.ws1a{word-spacing:-9.040000pt;}
.ws30{word-spacing:-3.808800pt;}
.ws63{word-spacing:-3.393600pt;}
.ws12{word-spacing:-3.312400pt;}
.ws41{word-spacing:-3.304933pt;}
.ws10{word-spacing:-3.172667pt;}
.ws3{word-spacing:-3.073067pt;}
.ws44{word-spacing:-3.020667pt;}
.ws5a{word-spacing:-2.779600pt;}
.ws33{word-spacing:-2.588667pt;}
.ws43{word-spacing:-2.352933pt;}
.ws57{word-spacing:-2.048933pt;}
.ws5e{word-spacing:-1.995867pt;}
.ws4d{word-spacing:-1.979867pt;}
.ws5d{word-spacing:-1.926533pt;}
.ws66{word-spacing:-1.915733pt;}
.ws45{word-spacing:-1.898800pt;}
.ws3e{word-spacing:-1.756400pt;}
.ws3b{word-spacing:-1.588000pt;}
.ws35{word-spacing:-1.553467pt;}
.ws54{word-spacing:-1.261467pt;}
.ws34{word-spacing:-1.257333pt;}
.ws9{word-spacing:-1.239200pt;}
.ws1c{word-spacing:-1.214533pt;}
.ws36{word-spacing:-1.189733pt;}
.ws38{word-spacing:-1.136400pt;}
.ws40{word-spacing:-1.099200pt;}
.ws31{word-spacing:-1.094000pt;}
.wsc{word-spacing:-0.982667pt;}
.ws60{word-spacing:-0.975467pt;}
.ws61{word-spacing:-0.920933pt;}
.ws58{word-spacing:-0.891600pt;}
.ws4b{word-spacing:-0.881867pt;}
.ws47{word-spacing:-0.874400pt;}
.ws26{word-spacing:-0.817600pt;}
.ws37{word-spacing:-0.816267pt;}
.ws50{word-spacing:-0.770000pt;}
.ws64{word-spacing:-0.756133pt;}
.ws2a{word-spacing:-0.747600pt;}
.wsf{word-spacing:-0.633333pt;}
.ws14{word-spacing:-0.605733pt;}
.ws4c{word-spacing:-0.527467pt;}
.ws19{word-spacing:-0.504133pt;}
.ws53{word-spacing:-0.490400pt;}
.ws67{word-spacing:-0.447067pt;}
.ws16{word-spacing:-0.434667pt;}
.ws52{word-spacing:-0.298000pt;}
.ws17{word-spacing:-0.289867pt;}
.ws27{word-spacing:-0.284267pt;}
.ws15{word-spacing:-0.229200pt;}
.ws28{word-spacing:-0.187067pt;}
.ws65{word-spacing:-0.151733pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.130267pt;}
.ws5f{word-spacing:0.213867pt;}
.ws55{word-spacing:0.247733pt;}
.ws13{word-spacing:0.352533pt;}
.ws48{word-spacing:1.021733pt;}
.ws32{word-spacing:2.064133pt;}
.ws5{word-spacing:4.509867pt;}
.ws3d{word-spacing:41.277200pt;}
.ws3c{word-spacing:51.166667pt;}
.ws3a{word-spacing:64.557067pt;}
.ws22{word-spacing:1230.105067pt;}
.ws3f{word-spacing:4118.850533pt;}
.ws68{word-spacing:4119.490533pt;}
.ws49{word-spacing:4120.183867pt;}
.ws4e{word-spacing:4120.823867pt;}
.ws4a{word-spacing:4122.157200pt;}
.ws62{word-spacing:4122.850533pt;}
.ws42{word-spacing:4125.517200pt;}
.ws46{word-spacing:4126.157200pt;}
.ws4f{word-spacing:4128.877200pt;}
.ws6{word-spacing:4133.875867pt;}
.ws2b{word-spacing:4145.517200pt;}
.ws2f{word-spacing:4146.157200pt;}
.ws2d{word-spacing:4147.490533pt;}
.ws39{word-spacing:4148.183867pt;}
.ws24{word-spacing:4150.850533pt;}
.ws25{word-spacing:4151.543867pt;}
.ws23{word-spacing:4176.183867pt;}
.ws21{word-spacing:4180.183867pt;}
.ws4{word-spacing:4183.490533pt;}
.ws18{word-spacing:4186.850533pt;}
._8{margin-left:-4.606533pt;}
._3{margin-left:-3.039467pt;}
._1{margin-left:-2.124000pt;}
._4{margin-left:-0.961333pt;}
._5{width:1.008800pt;}
._0{width:1.911600pt;}
._6{width:2.884800pt;}
._2{width:3.817600pt;}
._c{width:5.421067pt;}
._9{width:17.805467pt;}
._a{width:22.406400pt;}
._b{width:23.428933pt;}
._d{width:25.268000pt;}
._7{width:26.614133pt;}
.fs9{font-size:40.000000pt;}
.fs8{font-size:76.000000pt;}
.fs7{font-size:76.133333pt;}
.fs6{font-size:80.000000pt;}
.fs5{font-size:80.133333pt;}
.fsc{font-size:84.000000pt;}
.fsb{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fsd{font-size:101.332418pt;}
.fs4{font-size:108.133333pt;}
.fs2{font-size:108.266667pt;}
.fse{font-size:128.133333pt;}
.fsa{font-size:192.133333pt;}
.fs1{font-size:212.266667pt;}
.fs0{font-size:212.400000pt;}
.fsf{font-size:288.400000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:25.040000pt;}
.y4a{bottom:26.040000pt;}
.y4{bottom:29.500000pt;}
.y11{bottom:29.666667pt;}
.yfa{bottom:69.100000pt;}
.y87{bottom:78.866667pt;}
.y42{bottom:80.333333pt;}
.y95{bottom:83.866667pt;}
.y70{bottom:84.666667pt;}
.yc5{bottom:92.100000pt;}
.y113{bottom:92.133333pt;}
.y116{bottom:92.173333pt;}
.y107{bottom:92.400000pt;}
.y10a{bottom:92.440000pt;}
.yde{bottom:95.133333pt;}
.yf9{bottom:102.166667pt;}
.yec{bottom:103.500000pt;}
.ya1{bottom:107.933333pt;}
.y17{bottom:108.233333pt;}
.y11c{bottom:108.700000pt;}
.y41{bottom:112.366667pt;}
.y94{bottom:116.900000pt;}
.y6f{bottom:117.733333pt;}
.y86{bottom:118.900000pt;}
.y8f{bottom:119.366667pt;}
.ydd{bottom:124.200000pt;}
.ycf{bottom:125.366667pt;}
.yf8{bottom:134.200000pt;}
.yc7{bottom:140.266667pt;}
.yeb{bottom:142.560000pt;}
.y11b{bottom:142.733333pt;}
.y40{bottom:145.400000pt;}
.y93{bottom:148.933333pt;}
.y6e{bottom:149.773333pt;}
.y85{bottom:150.973333pt;}
.y35{bottom:152.400000pt;}
.ydc{bottom:153.226667pt;}
.y28{bottom:155.400000pt;}
.yce{bottom:158.440000pt;}
.yf7{bottom:167.226667pt;}
.yc6{bottom:169.306667pt;}
.y8e{bottom:171.426667pt;}
.yea{bottom:175.600000pt;}
.y110{bottom:178.400000pt;}
.y3f{bottom:178.466667pt;}
.y16{bottom:179.893333pt;}
.y27{bottom:180.426667pt;}
.ydb{bottom:181.266667pt;}
.y92{bottom:182.000000pt;}
.y6d{bottom:182.800000pt;}
.y123{bottom:182.933333pt;}
.y34{bottom:184.466667pt;}
.ya0{bottom:187.040000pt;}
.ycd{bottom:190.466667pt;}
.y11a{bottom:190.800000pt;}
.y10{bottom:197.466667pt;}
.yf6{bottom:199.306667pt;}
.y26{bottom:201.466667pt;}
.y8d{bottom:204.506667pt;}
.y10f{bottom:207.440000pt;}
.ye9{bottom:208.640000pt;}
.yc4{bottom:209.266667pt;}
.yda{bottom:210.306667pt;}
.y33{bottom:210.506667pt;}
.y122{bottom:211.960000pt;}
.y84{bottom:214.040000pt;}
.y6c{bottom:214.866667pt;}
.y119{bottom:225.866667pt;}
.y9f{bottom:226.106667pt;}
.y104{bottom:227.533333pt;}
.yf{bottom:230.533333pt;}
.yf5{bottom:232.333333pt;}
.yd9{bottom:239.333333pt;}
.y121{bottom:240.000000pt;}
.yc3{bottom:241.306667pt;}
.y29{bottom:242.773333pt;}
.y32{bottom:243.533333pt;}
.y83{bottom:247.106667pt;}
.y6b{bottom:247.893333pt;}
.y3e{bottom:250.560000pt;}
.y60{bottom:255.733333pt;}
.y103{bottom:256.560000pt;}
.y9e{bottom:259.133333pt;}
.ye{bottom:262.560000pt;}
.yf4{bottom:265.360000pt;}
.yd8{bottom:268.400000pt;}
.y120{bottom:269.026667pt;}
.ycc{bottom:269.573333pt;}
.y44{bottom:271.506667pt;}
.y118{bottom:273.933333pt;}
.yc2{bottom:274.360000pt;}
.y31{bottom:275.600000pt;}
.y82{bottom:280.133333pt;}
.y6a{bottom:280.933333pt;}
.y3d{bottom:282.600000pt;}
.y102{bottom:285.600000pt;}
.ye8{bottom:286.760000pt;}
.y10e{bottom:288.000000pt;}
.yc8{bottom:289.600000pt;}
.y125{bottom:289.693333pt;}
.y9d{bottom:291.200000pt;}
.y24{bottom:294.026667pt;}
.yd{bottom:295.600000pt;}
.y115{bottom:297.000000pt;}
.yd7{bottom:297.426667pt;}
.yb0{bottom:299.440000pt;}
.ycb{bottom:301.640000pt;}
.yf3{bottom:304.440000pt;}
.yb9{bottom:306.106667pt;}
.yc1{bottom:306.400000pt;}
.yaa{bottom:306.426667pt;}
.y5f{bottom:307.440000pt;}
.y81{bottom:312.173333pt;}
.y69{bottom:313.000000pt;}
.y101{bottom:314.640000pt;}
.y30{bottom:315.626667pt;}
.y23{bottom:319.066667pt;}
.y91{bottom:319.200000pt;}
.ye7{bottom:319.800000pt;}
.y1d{bottom:321.626667pt;}
.y9c{bottom:324.226667pt;}
.yd6{bottom:325.466667pt;}
.yc{bottom:327.666667pt;}
.y77{bottom:334.306667pt;}
.yca{bottom:334.666667pt;}
.y112{bottom:336.000000pt;}
.yf2{bottom:336.466667pt;}
.ya9{bottom:338.466667pt;}
.yb8{bottom:339.133333pt;}
.y5e{bottom:339.506667pt;}
.y22{bottom:340.106667pt;}
.y19{bottom:341.200000pt;}
.y2f{bottom:341.666667pt;}
.y100{bottom:342.666667pt;}
.y3c{bottom:347.693333pt;}
.y1c{bottom:350.693333pt;}
.y8c{bottom:351.226667pt;}
.ye6{bottom:351.840000pt;}
.y68{bottom:352.026667pt;}
.y15{bottom:352.866667pt;}
.yd5{bottom:354.506667pt;}
.y39{bottom:354.693333pt;}
.y4b{bottom:361.866667pt;}
.y56{bottom:363.000000pt;}
.y18{bottom:364.226667pt;}
.yaf{bottom:364.533333pt;}
.y76{bottom:367.360000pt;}
.yb{bottom:367.693333pt;}
.yf1{bottom:369.533333pt;}
.ya8{bottom:371.533333pt;}
.yff{bottom:371.733333pt;}
.y54{bottom:374.533333pt;}
.y124{bottom:376.800000pt;}
.yb7{bottom:378.200000pt;}
.y5d{bottom:379.533333pt;}
.y1b{bottom:379.733333pt;}
.y2e{bottom:380.733333pt;}
.y25{bottom:381.360000pt;}
.yd4{bottom:383.533333pt;}
.y8b{bottom:384.266667pt;}
.ye5{bottom:384.893333pt;}
.y67{bottom:385.106667pt;}
.yc0{bottom:385.506667pt;}
.y38{bottom:387.733333pt;}
.y55{bottom:388.026667pt;}
.y117{bottom:389.173333pt;}
.yf0{bottom:395.560000pt;}
.yae{bottom:397.560000pt;}
.y75{bottom:399.400000pt;}
.yc9{bottom:399.773333pt;}
.yfe{bottom:400.773333pt;}
.y3{bottom:401.800000pt;}
.y10c{bottom:403.000000pt;}
.y9b{bottom:403.333333pt;}
.ya7{bottom:404.560000pt;}
.ya{bottom:406.773333pt;}
.yb6{bottom:411.226667pt;}
.y5c{bottom:411.600000pt;}
.y4f{bottom:412.066667pt;}
.yd3{bottom:412.600000pt;}
.y3b{bottom:412.773333pt;}
.y8a{bottom:417.333333pt;}
.ye4{bottom:417.933333pt;}
.y66{bottom:418.133333pt;}
.ybf{bottom:418.533333pt;}
.y2d{bottom:419.800000pt;}
.y53{bottom:421.106667pt;}
.y7c{bottom:426.266667pt;}
.y114{bottom:428.133333pt;}
.yef{bottom:428.600000pt;}
.yad{bottom:429.600000pt;}
.y49{bottom:430.600000pt;}
.y74{bottom:432.466667pt;}
.y20{bottom:432.666667pt;}
.y9{bottom:432.800000pt;}
.y9a{bottom:435.400000pt;}
.ya6{bottom:436.626667pt;}
.yd2{bottom:441.640000pt;}
.y109{bottom:442.000000pt;}
.y11f{bottom:442.306667pt;}
.y4e{bottom:445.133333pt;}
.y50{bottom:445.266667pt;}
.y2c{bottom:445.840000pt;}
.y89{bottom:449.360000pt;}
.ye3{bottom:449.973333pt;}
.y65{bottom:450.173333pt;}
.yb5{bottom:450.293333pt;}
.ybe{bottom:450.600000pt;}
.y5b{bottom:450.640000pt;}
.y37{bottom:452.840000pt;}
.y1f{bottom:453.693333pt;}
.y52{bottom:455.133333pt;}
.y7b{bottom:458.306667pt;}
.y2{bottom:459.866667pt;}
.yac{bottom:462.666667pt;}
.y73{bottom:464.506667pt;}
.y47{bottom:464.626667pt;}
.y111{bottom:466.400000pt;}
.y99{bottom:468.440000pt;}
.yfd{bottom:468.866667pt;}
.ya5{bottom:469.666667pt;}
.y11e{bottom:471.333333pt;}
.y8{bottom:471.866667pt;}
.y1e{bottom:478.733333pt;}
.y3a{bottom:478.866667pt;}
.y4d{bottom:479.173333pt;}
.y106{bottom:481.000000pt;}
.y80{bottom:482.400000pt;}
.ye2{bottom:483.026667pt;}
.y64{bottom:483.226667pt;}
.yb4{bottom:483.333333pt;}
.ybd{bottom:483.640000pt;}
.y5a{bottom:483.693333pt;}
.y2b{bottom:484.866667pt;}
.y51{bottom:489.200000pt;}
.y10d{bottom:495.440000pt;}
.yab{bottom:495.693333pt;}
.y72{bottom:497.533333pt;}
.y7a{bottom:498.360000pt;}
.yd1{bottom:498.693333pt;}
.y11d{bottom:500.360000pt;}
.y98{bottom:500.466667pt;}
.ya4{bottom:501.693333pt;}
.yee{bottom:506.706667pt;}
.yfc{bottom:507.893333pt;}
.y7{bottom:510.893333pt;}
.y4c{bottom:513.226667pt;}
.y14{bottom:514.173333pt;}
.y7f{bottom:514.466667pt;}
.ye1{bottom:515.066667pt;}
.y63{bottom:515.266667pt;}
.yb3{bottom:515.360000pt;}
.ybc{bottom:515.706667pt;}
.y59{bottom:516.733333pt;}
.y1{bottom:516.960000pt;}
.y36{bottom:517.933333pt;}
.y21{bottom:520.000000pt;}
.y2a{bottom:524.933333pt;}
.y1a{bottom:525.840000pt;}
.yd0{bottom:527.733333pt;}
.y71{bottom:529.600000pt;}
.y79{bottom:530.400000pt;}
.y97{bottom:533.533333pt;}
.y10b{bottom:534.440000pt;}
.ya3{bottom:534.773333pt;}
.y13{bottom:537.200000pt;}
.y43{bottom:540.360000pt;}
.y90{bottom:540.506667pt;}
.yed{bottom:545.773333pt;}
.y7e{bottom:547.506667pt;}
.yfb{bottom:547.973333pt;}
.ye0{bottom:548.106667pt;}
.y62{bottom:548.306667pt;}
.yb2{bottom:548.440000pt;}
.ybb{bottom:548.733333pt;}
.y6{bottom:549.973333pt;}
.y58{bottom:555.773333pt;}
.y46{bottom:556.800000pt;}
.y96{bottom:565.560000pt;}
.ya2{bottom:566.800000pt;}
.y78{bottom:569.466667pt;}
.y108{bottom:573.400000pt;}
.y7d{bottom:579.533333pt;}
.ydf{bottom:580.173333pt;}
.y61{bottom:580.360000pt;}
.yb1{bottom:580.466667pt;}
.yba{bottom:580.773333pt;}
.y45{bottom:585.840000pt;}
.y57{bottom:587.840000pt;}
.y12{bottom:597.466667pt;}
.y105{bottom:630.400000pt;}
.y5{bottom:630.733333pt;}
.y88{bottom:655.173333pt;}
.hc{height:34.066667pt;}
.he{height:35.033333pt;}
.hd{height:39.785156pt;}
.hb{height:58.558594pt;}
.ha{height:60.891797pt;}
.h8{height:63.984375pt;}
.h7{height:64.091016pt;}
.h11{height:64.722656pt;}
.h12{height:64.825391pt;}
.h13{height:67.183594pt;}
.h10{height:67.290234pt;}
.h15{height:69.987695pt;}
.h1a{height:72.710221pt;}
.h9{height:74.071484pt;}
.h5{height:76.887891pt;}
.h14{height:81.046143pt;}
.h6{height:86.485547pt;}
.h3{height:86.592188pt;}
.h19{height:102.481641pt;}
.hf{height:148.040234pt;}
.h2{height:163.553125pt;}
.h1{height:163.655859pt;}
.h4{height:169.771875pt;}
.h18{height:202.000000pt;}
.h16{height:203.000000pt;}
.h1b{height:222.214453pt;}
.h17{height:404.000000pt;}
.h0{height:720.000000pt;}
.w2{width:49.033333pt;}
.w3{width:77.066667pt;}
.w5{width:408.000000pt;}
.w4{width:600.000000pt;}
.w6{width:800.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:9.666667pt;}
.x30{left:10.566667pt;}
.x2f{left:36.000000pt;}
.x39{left:37.000000pt;}
.x5{left:46.666648pt;}
.x38{left:47.899981pt;}
.x24{left:50.199981pt;}
.x3e{left:68.866648pt;}
.x6{left:70.666648pt;}
.x15{left:73.199981pt;}
.x17{left:74.699981pt;}
.x31{left:76.566648pt;}
.x16{left:85.199981pt;}
.x1f{left:93.166648pt;}
.x7{left:94.666648pt;}
.x2e{left:99.633314pt;}
.x20{left:115.766648pt;}
.x18{left:118.699981pt;}
.x37{left:124.699981pt;}
.x1c{left:142.693314pt;}
.x2d{left:146.933314pt;}
.x2b{left:166.773314pt;}
.x28{left:190.733314pt;}
.x2{left:220.773314pt;}
.x1{left:307.173314pt;}
.x36{left:323.559981pt;}
.x29{left:374.399981pt;}
.x3{left:417.906648pt;}
.x3b{left:444.000000pt;}
.x3f{left:462.026648pt;}
.x47{left:478.066648pt;}
.x3d{left:491.573314pt;}
.x21{left:499.959981pt;}
.x40{left:508.066648pt;}
.x3c{left:511.599981pt;}
.x22{left:522.559981pt;}
.x41{left:556.306648pt;}
.x42{left:583.399981pt;}
.x11{left:590.293314pt;}
.x19{left:606.066648pt;}
.x10{left:624.773314pt;}
.x32{left:635.000000pt;}
.xf{left:649.106648pt;}
.x1a{left:654.106648pt;}
.x44{left:657.733314pt;}
.x12{left:667.039981pt;}
.x33{left:676.066648pt;}
.x34{left:694.066648pt;}
.x1b{left:702.133314pt;}
.x43{left:713.666648pt;}
.x45{left:718.439981pt;}
.x35{left:724.106648pt;}
.x46{left:726.599981pt;}
.x14{left:807.933314pt;}
.x13{left:812.506648pt;}
.x27{left:841.599981pt;}
.xe{left:843.799981pt;}
.x9{left:857.799981pt;}
.x23{left:906.773314pt;}
.x1e{left:928.706667pt;}
.xb{left:998.599981pt;}
.xd{left:1005.373314pt;}
.xa{left:1039.959981pt;}
.x1d{left:1046.800000pt;}
.xc{left:1076.733314pt;}
.x2a{left:1203.733314pt;}
.x2c{left:1205.399981pt;}
.x26{left:1210.399981pt;}
.x25{left:1211.733314pt;}
.x8{left:1218.573314pt;}
.x4{left:1219.893314pt;}
}




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