
    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_cbdea1ae465dbe0641159e6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_5f1e93ea0e1547fb6b900cb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_28dc21f08b7362de21dfb328.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962000;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_e59113576bd05b458a0872ef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_3a99a00334bdb2243f9d219d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980000;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_7b11fda75b7a74c99b26caec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995000;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_1355cd6d16597b598358bc2e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_e4c81c0b985b9a763fba9303.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_73baea57376b45f913504f0d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.780762;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_aa53242059fcbb0011811512.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1418d10b1fbd97a141331490.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.980469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7da2d70c76a0845132939c40.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.681641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f583585404a0151db991e430.woff2')format("woff");}.fff{font-family:fff;line-height:0.697266;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bf4ee8d2fa7648ca4b23ac21.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938000;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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:16.588353px;}
.ls2{letter-spacing:16.594353px;}
.ls4{letter-spacing:34.150879px;}
.ls3{letter-spacing:36.682879px;}
.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;}
}
.ws1{word-spacing:-427.176183px;}
.ws3{word-spacing:-50.115989px;}
.ws5{word-spacing:-47.820600px;}
.ws12{word-spacing:-38.816599px;}
.ws13{word-spacing:-37.478095px;}
.wsd{word-spacing:-32.727300px;}
.ws3d{word-spacing:-29.887800px;}
.ws40{word-spacing:-24.218202px;}
.ws2{word-spacing:-22.416000px;}
.ws42{word-spacing:-22.123655px;}
.ws38{word-spacing:-21.730927px;}
.ws33{word-spacing:-21.665473px;}
.ws17{word-spacing:-21.605377px;}
.ws8{word-spacing:-19.440016px;}
.ws16{word-spacing:-19.047289px;}
.ws15{word-spacing:-18.981834px;}
.ws31{word-spacing:-18.523652px;}
.ws2f{word-spacing:-17.607287px;}
.wsb{word-spacing:-17.214560px;}
.ws10{word-spacing:-17.083651px;}
.wsa{word-spacing:-17.018196px;}
.ws18{word-spacing:-16.821832px;}
.ws49{word-spacing:-16.756378px;}
.ws6{word-spacing:-16.504103px;}
.ws9{word-spacing:-16.429105px;}
.ws14{word-spacing:-16.364300px;}
.wsc{word-spacing:-16.363650px;}
.ws2c{word-spacing:-16.363193px;}
.ws27{word-spacing:-16.232741px;}
.ws28{word-spacing:-16.167286px;}
.ws30{word-spacing:-16.101832px;}
.ws2d{word-spacing:-15.774559px;}
.ws37{word-spacing:-15.003676px;}
.ws7{word-spacing:-14.989103px;}
.ws3a{word-spacing:-14.943900px;}
.ws2e{word-spacing:-14.007284px;}
.ws1a{word-spacing:-12.150852px;}
.ws29{word-spacing:-11.389100px;}
.ws2a{word-spacing:-11.323646px;}
.wsf{word-spacing:-11.061827px;}
.ws11{word-spacing:-10.996373px;}
.ws19{word-spacing:-10.808834px;}
.ws2b{word-spacing:-10.276372px;}
.wse{word-spacing:-9.818190px;}
.ws23{word-spacing:-0.047827px;}
.ws0{word-spacing:0.000000px;}
.ws5a{word-spacing:3.954463px;}
.ws45{word-spacing:3.955552px;}
.ws61{word-spacing:3.956645px;}
.ws58{word-spacing:3.957736px;}
.ws32{word-spacing:3.958802px;}
.ws54{word-spacing:3.959372px;}
.ws52{word-spacing:3.959920px;}
.ws48{word-spacing:8.885369px;}
.ws1f{word-spacing:12.254090px;}
.ws25{word-spacing:12.463562px;}
.ws1d{word-spacing:12.515930px;}
.ws1c{word-spacing:12.568298px;}
.ws22{word-spacing:13.039609px;}
.ws1e{word-spacing:13.091977px;}
.ws4{word-spacing:18.554393px;}
.ws24{word-spacing:29.453657px;}
.ws1b{word-spacing:29.549527px;}
.ws60{word-spacing:41.783128px;}
.ws4c{word-spacing:41.784074px;}
.ws3e{word-spacing:41.784358px;}
.ws53{word-spacing:41.785030px;}
.ws59{word-spacing:41.785537px;}
.ws51{word-spacing:41.786045px;}
.ws57{word-spacing:41.786210px;}
.ws47{word-spacing:41.786858px;}
.ws44{word-spacing:41.787108px;}
.ws62{word-spacing:41.787557px;}
.ws4f{word-spacing:41.842577px;}
.ws36{word-spacing:41.843538px;}
.ws39{word-spacing:41.845655px;}
.ws4e{word-spacing:41.849335px;}
.ws3f{word-spacing:43.577626px;}
.ws3c{word-spacing:45.430669px;}
.ws26{word-spacing:46.619713px;}
.ws34{word-spacing:59.701460px;}
.ws35{word-spacing:114.617870px;}
.ws5e{word-spacing:224.715062px;}
.ws5f{word-spacing:232.896887px;}
.ws5d{word-spacing:237.020527px;}
.ws20{word-spacing:244.521529px;}
.ws21{word-spacing:251.015141px;}
.ws4a{word-spacing:286.833164px;}
.ws5c{word-spacing:290.169662px;}
.ws5b{word-spacing:293.573302px;}
.ws4b{word-spacing:298.942265px;}
.ws55{word-spacing:312.621164px;}
.ws56{word-spacing:324.730265px;}
.ws46{word-spacing:1002.382265px;}
.ws50{word-spacing:1317.938017px;}
.ws4d{word-spacing:1425.676265px;}
.ws3b{word-spacing:1496.236265px;}
.ws41{word-spacing:1967.768017px;}
.ws43{word-spacing:2110.496017px;}
._0{margin-left:-28.674477px;}
._6{margin-left:-8.798990px;}
._4{margin-left:-7.651296px;}
._11{margin-left:-5.694550px;}
._7{margin-left:-3.825648px;}
._1{margin-left:-2.779584px;}
._b{margin-left:-1.047274px;}
._e{width:1.057429px;}
._44{width:2.079252px;}
._9{width:3.660985px;}
._17{width:12.100733px;}
._20{width:13.930994px;}
._c{width:15.054558px;}
._a{width:16.831988px;}
._27{width:19.458158px;}
._8{width:20.804407px;}
._d{width:22.415964px;}
._1b{width:23.760020px;}
._10{width:29.323661px;}
._f{width:31.549117px;}
._12{width:37.283227px;}
._1a{width:40.058215px;}
._2{width:47.348383px;}
._13{width:49.524626px;}
._19{width:57.392039px;}
._3{width:63.697039px;}
._3a{width:70.792514px;}
._18{width:71.864094px;}
._28{width:73.935347px;}
._26{width:75.906742px;}
._1e{width:97.538035px;}
._3f{width:104.148752px;}
._2c{width:109.249879px;}
._1d{width:112.330775px;}
._5{width:115.917134px;}
._3b{width:130.591550px;}
._49{width:132.227713px;}
._45{width:170.647715px;}
._4d{width:183.737987px;}
._37{width:187.472495px;}
._1c{width:201.676304px;}
._38{width:209.857969px;}
._48{width:230.278703px;}
._30{width:329.112106px;}
._22{width:348.356299px;}
._46{width:350.844229px;}
._2b{width:353.133718px;}
._47{width:385.469713px;}
._2a{width:424.806505px;}
._23{width:471.672765px;}
._3e{width:506.628227px;}
._2f{width:543.737739px;}
._40{width:546.556394px;}
._43{width:630.543963px;}
._1f{width:635.051210px;}
._42{width:645.195638px;}
._24{width:740.431999px;}
._3c{width:788.933917px;}
._2e{width:800.777953px;}
._39{width:801.793198px;}
._2d{width:829.839796px;}
._33{width:840.022231px;}
._3d{width:861.588523px;}
._4c{width:881.484023px;}
._21{width:893.331298px;}
._4b{width:965.396821px;}
._35{width:1120.102464px;}
._34{width:1123.506103px;}
._41{width:1137.937867px;}
._36{width:1299.709886px;}
._31{width:1339.702647px;}
._25{width:1344.708866px;}
._32{width:1370.008127px;}
._14{width:1445.541566px;}
._15{width:1464.030084px;}
._16{width:1785.022831px;}
._29{width:1788.424831px;}
._4a{width:1789.798831px;}
.fc8{color:rgb(10,146,141);}
.fc5{color:rgb(10,146,141);}
.fc4{color:rgb(79,117,144);}
.fc3{color:rgb(161,49,87);}
.fc2{color:rgb(77,198,244);}
.fc6{color:rgb(16,106,175);}
.fc1{color:rgb(16,106,175);}
.fc7{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsd{font-size:47.826699px;}
.fsf{font-size:52.367907px;}
.fse{font-size:53.764830px;}
.fs10{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:86.077200px;}
.fs7{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:125.529000px;}
.fsb{font-size:148.722600px;}
.fs8{font-size:191.282400px;}
.fs5{font-size:735.243000px;}
.y0{bottom:0.000000px;}
.y67{bottom:21.945977px;}
.y66{bottom:35.387184px;}
.y73{bottom:36.025906px;}
.y65{bottom:48.828392px;}
.y53{bottom:61.507500px;}
.y64{bottom:62.269599px;}
.y72{bottom:63.532343px;}
.y5{bottom:66.525004px;}
.y48{bottom:67.196167px;}
.y5d{bottom:77.905989px;}
.y71{bottom:79.793804px;}
.y63{bottom:81.471501px;}
.y5c{bottom:91.347197px;}
.y62{bottom:94.912708px;}
.y55{bottom:96.092716px;}
.y4{bottom:97.125005px;}
.y5b{bottom:104.788404px;}
.y47{bottom:107.843167px;}
.y61{bottom:108.353916px;}
.y5a{bottom:118.229612px;}
.y60{bottom:125.635644px;}
.y46{bottom:128.166667px;}
.y70{bottom:137.915030px;}
.y76{bottom:138.038008px;}
.y5f{bottom:139.076851px;}
.y20{bottom:139.264499px;}
.y4f{bottom:147.883521px;}
.y45{bottom:148.490167px;}
.y5e{bottom:152.518059px;}
.y6f{bottom:154.044469px;}
.y27{bottom:154.584022px;}
.y4e{bottom:168.207021px;}
.y44{bottom:168.813667px;}
.y6e{bottom:170.845983px;}
.y59{bottom:175.560246px;}
.y6d{bottom:187.707492px;}
.y58{bottom:189.001454px;}
.y43{bottom:189.138667px;}
.y17{bottom:196.933500px;}
.y6c{bottom:204.004958px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y6b{bottom:220.266423px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y57{bottom:225.484907px;}
.y42{bottom:229.160167px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y6a{bottom:236.527888px;}
.y56{bottom:238.926114px;}
.y69{bottom:252.777362px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y75{bottom:260.048012px;}
.y26{bottom:264.628524px;}
.y41{bottom:269.826067px;}
.ya5{bottom:270.366000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y74{bottom:273.489219px;}
.y68{bottom:280.371029px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.ya4{bottom:288.298500px;}
.y40{bottom:290.149567px;}
.ye7{bottom:291.462000px;}
.yc7{bottom:303.208500px;}
.ya3{bottom:306.232500px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.ye6{bottom:311.607000px;}
.y25{bottom:312.448524px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yc6{bottom:323.353500px;}
.ya2{bottom:324.165000px;}
.ye5{bottom:333.102000px;}
.ya1{bottom:342.097500px;}
.yc5{bottom:344.848500px;}
.ye{bottom:348.133500px;}
.ye4{bottom:354.597000px;}
.y24{bottom:360.268524px;}
.ya0{bottom:362.241000px;}
.yc4{bottom:366.343500px;}
.ye3{bottom:376.353000px;}
.y9f{bottom:383.998500px;}
.yd{bottom:386.785499px;}
.yc3{bottom:388.099500px;}
.ye2{bottom:398.110500px;}
.yff{bottom:399.484500px;}
.y9e{bottom:405.754500px;}
.yc{bottom:408.044999px;}
.yc2{bottom:409.857000px;}
.yfe{bottom:419.628000px;}
.ye1{bottom:421.360500px;}
.y3f{bottom:426.206999px;}
.y9d{bottom:427.512000px;}
.yc1{bottom:433.107000px;}
.yfd{bottom:441.385500px;}
.ye0{bottom:441.685500px;}
.y3e{bottom:446.530499px;}
.y9c{bottom:450.763500px;}
.yc0{bottom:453.430500px;}
.yfc{bottom:462.880500px;}
.y3d{bottom:466.855499px;}
.yfb{bottom:484.653000px;}
.ydf{bottom:495.244500px;}
.y84{bottom:501.048000px;}
.yfa{bottom:506.148000px;}
.ybf{bottom:506.377500px;}
.y9b{bottom:509.499000px;}
.yde{bottom:515.388000px;}
.yb{bottom:520.864502px;}
.y83{bottom:521.371500px;}
.ybe{bottom:526.522500px;}
.yf9{bottom:527.643000px;}
.y9a{bottom:529.642500px;}
.ydd{bottom:537.145500px;}
.ya{bottom:538.864499px;}
.y82{bottom:541.695000px;}
.ybd{bottom:548.278500px;}
.yf8{bottom:549.399000px;}
.y99{bottom:551.137500px;}
.y3c{bottom:556.326022px;}
.y9{bottom:556.864499px;}
.ydc{bottom:558.901500px;}
.y81{bottom:562.018500px;}
.ybc{bottom:569.773500px;}
.yf7{bottom:571.156500px;}
.y98{bottom:572.895000px;}
.y3b{bottom:576.649522px;}
.ydb{bottom:582.153000px;}
.y80{bottom:582.342000px;}
.ybb{bottom:590.097000px;}
.yf6{bottom:594.408000px;}
.y97{bottom:594.651000px;}
.y3a{bottom:596.974522px;}
.yda{bottom:602.476500px;}
.y7f{bottom:602.667000px;}
.yba{bottom:611.871000px;}
.yf5{bottom:614.731500px;}
.y39{bottom:617.298022px;}
.y96{bottom:617.902500px;}
.y7e{bottom:622.990500px;}
.yb9{bottom:633.366000px;}
.y38{bottom:637.621522px;}
.y7d{bottom:643.314000px;}
.y8{bottom:645.510000px;}
.yb8{bottom:654.861000px;}
.yd9{bottom:655.917000px;}
.y37{bottom:657.945022px;}
.y7c{bottom:663.637500px;}
.y7{bottom:666.771000px;}
.yf4{bottom:668.290500px;}
.yd8{bottom:676.060500px;}
.yb7{bottom:676.617000px;}
.y95{bottom:676.932000px;}
.y36{bottom:678.268522px;}
.y7b{bottom:683.961000px;}
.yf3{bottom:688.435500px;}
.y94{bottom:697.077000px;}
.yd7{bottom:697.818000px;}
.yb6{bottom:698.374500px;}
.y35{bottom:698.593522px;}
.y7a{bottom:704.284500px;}
.yf2{bottom:709.930500px;}
.y4d{bottom:716.395521px;}
.y93{bottom:718.572000px;}
.yd6{bottom:719.574000px;}
.yb5{bottom:721.624500px;}
.y79{bottom:724.609500px;}
.y6{bottom:726.298500px;}
.yf1{bottom:731.686500px;}
.y92{bottom:740.328000px;}
.yd5{bottom:742.825500px;}
.y78{bottom:744.933000px;}
.y3{bottom:752.599495px;}
.yf0{bottom:753.444000px;}
.y4c{bottom:757.042470px;}
.y91{bottom:762.085500px;}
.y77{bottom:765.256500px;}
.yef{bottom:776.694000px;}
.yb4{bottom:780.360000px;}
.y90{bottom:785.335500px;}
.y54{bottom:785.580090px;}
.yee{bottom:797.019000px;}
.yb3{bottom:800.505000px;}
.yd4{bottom:801.838500px;}
.y34{bottom:814.896646px;}
.y4b{bottom:818.014470px;}
.yd3{bottom:821.983500px;}
.yb2{bottom:822.277500px;}
.yd2{bottom:843.756000px;}
.yb1{bottom:843.772500px;}
.y8f{bottom:844.350000px;}
.yed{bottom:850.578000px;}
.y33{bottom:855.545146px;}
.y4a{bottom:862.844970px;}
.yb0{bottom:864.096000px;}
.y8e{bottom:864.493500px;}
.yd1{bottom:865.251000px;}
.y23{bottom:867.889522px;}
.yec{bottom:870.721500px;}
.y32{bottom:875.870146px;}
.y2{bottom:879.369000px;}
.yaf{bottom:885.591000px;}
.y8d{bottom:885.988500px;}
.yd0{bottom:886.746000px;}
.yeb{bottom:892.479000px;}
.y31{bottom:896.193646px;}
.yae{bottom:907.348500px;}
.y8c{bottom:907.746000px;}
.ycf{bottom:908.503500px;}
.yea{bottom:914.235000px;}
.y30{bottom:916.517146px;}
.yad{bottom:929.104500px;}
.y8b{bottom:929.502000px;}
.yce{bottom:930.259500px;}
.y2f{bottom:936.840646px;}
.ye9{bottom:937.486500px;}
.yac{bottom:952.356000px;}
.y8a{bottom:952.753500px;}
.ycd{bottom:953.511000px;}
.y2e{bottom:957.164146px;}
.ye8{bottom:957.810000px;}
.y1{bottom:966.726000px;}
.y2d{bottom:977.489146px;}
.y101{bottom:989.874000px;}
.y21{bottom:1006.609522px;}
.y100{bottom:1010.019000px;}
.yab{bottom:1011.369000px;}
.y89{bottom:1011.750000px;}
.ycc{bottom:1012.540500px;}
.y22{bottom:1015.113001px;}
.y2c{bottom:1018.155046px;}
.yaa{bottom:1031.514000px;}
.y88{bottom:1031.895000px;}
.ycb{bottom:1032.685500px;}
.y2b{bottom:1038.478546px;}
.ya9{bottom:1053.009000px;}
.y87{bottom:1053.652500px;}
.yca{bottom:1054.441500px;}
.ya8{bottom:1074.766500px;}
.yc9{bottom:1076.199000px;}
.y86{bottom:1076.902500px;}
.ya7{bottom:1096.522500px;}
.y2a{bottom:1099.431604px;}
.yc8{bottom:1099.450500px;}
.y52{bottom:1101.406500px;}
.ya6{bottom:1119.774000px;}
.y29{bottom:1119.774004px;}
.y49{bottom:1120.276519px;}
.y85{bottom:1137.706500px;}
.y51{bottom:1140.097500px;}
.y28{bottom:1140.097504px;}
.y50{bottom:1193.145000px;}
.h7{height:32.130000px;}
.h14{height:32.694033px;}
.h19{height:35.798374px;}
.h15{height:36.753302px;}
.h16{height:36.779554px;}
.h18{height:38.508822px;}
.h17{height:38.534393px;}
.h1a{height:43.576412px;}
.h6{height:45.900000px;}
.he{height:47.716403px;}
.hd{height:47.934229px;}
.h3{height:48.195000px;}
.h10{height:48.240040px;}
.h12{height:48.370949px;}
.h2{height:55.080000px;}
.h11{height:63.438896px;}
.hb{height:66.082368px;}
.h5{height:78.030000px;}
.ha{height:92.514873px;}
.hf{height:109.608556px;}
.h4{height:119.055004px;}
.hc{height:140.975129px;}
.h13{height:310.831674px;}
.h9{height:543.344577px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:625.057754px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:5.104377px;}
.x7{left:85.039500px;}
.x8{left:87.165002px;}
.xb{left:99.514571px;}
.x1{left:102.045000px;}
.xe{left:103.626313px;}
.x2{left:106.297500px;}
.x9{left:133.938000px;}
.x10{left:139.020000px;}
.x12{left:155.197500px;}
.xf{left:160.199384px;}
.x4{left:203.484001px;}
.xd{left:384.750153px;}
.x11{left:396.025500px;}
.xa{left:417.351013px;}
.x3{left:454.959000px;}
.x5{left:484.266000px;}
.x13{left:675.445500px;}
.x14{left:711.127500px;}
.x6{left:832.946991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:14.745203pt;}
.ls2{letter-spacing:14.750536pt;}
.ls4{letter-spacing:30.356337pt;}
.ls3{letter-spacing:32.607004pt;}
.ws1{word-spacing:-379.712163pt;}
.ws3{word-spacing:-44.547546pt;}
.ws5{word-spacing:-42.507200pt;}
.ws12{word-spacing:-34.503643pt;}
.ws13{word-spacing:-33.313862pt;}
.wsd{word-spacing:-29.090933pt;}
.ws3d{word-spacing:-26.566933pt;}
.ws40{word-spacing:-21.527291pt;}
.ws2{word-spacing:-19.925333pt;}
.ws42{word-spacing:-19.665471pt;}
.ws38{word-spacing:-19.316380pt;}
.ws33{word-spacing:-19.258198pt;}
.ws17{word-spacing:-19.204780pt;}
.ws8{word-spacing:-17.280014pt;}
.ws16{word-spacing:-16.930923pt;}
.ws15{word-spacing:-16.872741pt;}
.ws31{word-spacing:-16.465468pt;}
.ws2f{word-spacing:-15.650922pt;}
.wsb{word-spacing:-15.301831pt;}
.ws10{word-spacing:-15.185467pt;}
.wsa{word-spacing:-15.127285pt;}
.ws18{word-spacing:-14.952740pt;}
.ws49{word-spacing:-14.894558pt;}
.ws6{word-spacing:-14.670314pt;}
.ws9{word-spacing:-14.603649pt;}
.ws14{word-spacing:-14.546044pt;}
.wsc{word-spacing:-14.545467pt;}
.ws2c{word-spacing:-14.545061pt;}
.ws27{word-spacing:-14.429103pt;}
.ws28{word-spacing:-14.370921pt;}
.ws30{word-spacing:-14.312739pt;}
.ws2d{word-spacing:-14.021830pt;}
.ws37{word-spacing:-13.336601pt;}
.ws7{word-spacing:-13.323647pt;}
.ws3a{word-spacing:-13.283467pt;}
.ws2e{word-spacing:-12.450919pt;}
.ws1a{word-spacing:-10.800757pt;}
.ws29{word-spacing:-10.123645pt;}
.ws2a{word-spacing:-10.065463pt;}
.wsf{word-spacing:-9.832735pt;}
.ws11{word-spacing:-9.774554pt;}
.ws19{word-spacing:-9.607852pt;}
.ws2b{word-spacing:-9.134553pt;}
.wse{word-spacing:-8.727280pt;}
.ws23{word-spacing:-0.042513pt;}
.ws0{word-spacing:0.000000pt;}
.ws5a{word-spacing:3.515078pt;}
.ws45{word-spacing:3.516046pt;}
.ws61{word-spacing:3.517018pt;}
.ws58{word-spacing:3.517988pt;}
.ws32{word-spacing:3.518935pt;}
.ws54{word-spacing:3.519442pt;}
.ws52{word-spacing:3.519929pt;}
.ws48{word-spacing:7.898106pt;}
.ws1f{word-spacing:10.892525pt;}
.ws25{word-spacing:11.078722pt;}
.ws1d{word-spacing:11.125271pt;}
.ws1c{word-spacing:11.171820pt;}
.ws22{word-spacing:11.590763pt;}
.ws1e{word-spacing:11.637313pt;}
.ws4{word-spacing:16.492794pt;}
.ws24{word-spacing:26.181028pt;}
.ws1b{word-spacing:26.266247pt;}
.ws60{word-spacing:37.140558pt;}
.ws4c{word-spacing:37.141399pt;}
.ws3e{word-spacing:37.141651pt;}
.ws53{word-spacing:37.142249pt;}
.ws59{word-spacing:37.142700pt;}
.ws51{word-spacing:37.143151pt;}
.ws57{word-spacing:37.143298pt;}
.ws47{word-spacing:37.143874pt;}
.ws44{word-spacing:37.144096pt;}
.ws62{word-spacing:37.144495pt;}
.ws4f{word-spacing:37.193402pt;}
.ws36{word-spacing:37.194256pt;}
.ws39{word-spacing:37.196138pt;}
.ws4e{word-spacing:37.199409pt;}
.ws3f{word-spacing:38.735667pt;}
.ws3c{word-spacing:40.382817pt;}
.ws26{word-spacing:41.439745pt;}
.ws34{word-spacing:53.067965pt;}
.ws35{word-spacing:101.882551pt;}
.ws5e{word-spacing:199.746722pt;}
.ws5f{word-spacing:207.019455pt;}
.ws5d{word-spacing:210.684913pt;}
.ws20{word-spacing:217.352470pt;}
.ws21{word-spacing:223.124570pt;}
.ws4a{word-spacing:254.962813pt;}
.ws5c{word-spacing:257.928589pt;}
.ws5b{word-spacing:260.954046pt;}
.ws4b{word-spacing:265.726458pt;}
.ws55{word-spacing:277.885479pt;}
.ws56{word-spacing:288.649125pt;}
.ws46{word-spacing:891.006458pt;}
.ws50{word-spacing:1171.500459pt;}
.ws4d{word-spacing:1267.267791pt;}
.ws3b{word-spacing:1329.987791pt;}
.ws41{word-spacing:1749.127126pt;}
.ws43{word-spacing:1875.996459pt;}
._0{margin-left:-25.488424pt;}
._6{margin-left:-7.821325pt;}
._4{margin-left:-6.801152pt;}
._11{margin-left:-5.061822pt;}
._7{margin-left:-3.400576pt;}
._1{margin-left:-2.470741pt;}
._b{margin-left:-0.930910pt;}
._e{width:0.939937pt;}
._44{width:1.848224pt;}
._9{width:3.254209pt;}
._17{width:10.756207pt;}
._20{width:12.383106pt;}
._c{width:13.381829pt;}
._a{width:14.961767pt;}
._27{width:17.296141pt;}
._8{width:18.492806pt;}
._d{width:19.925301pt;}
._1b{width:21.120018pt;}
._10{width:26.065476pt;}
._f{width:28.043660pt;}
._12{width:33.140646pt;}
._1a{width:35.607302pt;}
._2{width:42.087452pt;}
._13{width:44.021890pt;}
._19{width:51.015146pt;}
._3{width:56.619590pt;}
._3a{width:62.926679pt;}
._18{width:63.879194pt;}
._28{width:65.720309pt;}
._26{width:67.472660pt;}
._1e{width:86.700476pt;}
._3f{width:92.576669pt;}
._2c{width:97.111003pt;}
._1d{width:99.849578pt;}
._5{width:103.037453pt;}
._3b{width:116.081378pt;}
._49{width:117.535745pt;}
._45{width:151.686858pt;}
._4d{width:163.322655pt;}
._37{width:166.642218pt;}
._1c{width:179.267826pt;}
._38{width:186.540417pt;}
._48{width:204.692181pt;}
._30{width:292.544094pt;}
._22{width:309.650043pt;}
._46{width:311.861537pt;}
._2b{width:313.896638pt;}
._47{width:342.639745pt;}
._2a{width:377.605782pt;}
._23{width:419.264680pt;}
._3e{width:450.336202pt;}
._2f{width:483.322435pt;}
._40{width:485.827906pt;}
._43{width:560.483523pt;}
._1f{width:564.489965pt;}
._42{width:573.507234pt;}
._24{width:658.161777pt;}
._3c{width:701.274593pt;}
._2e{width:711.802625pt;}
._39{width:712.705065pt;}
._2d{width:737.635374pt;}
._33{width:746.686427pt;}
._3d{width:765.856465pt;}
._4c{width:783.541354pt;}
._21{width:794.072265pt;}
._4b{width:858.130507pt;}
._35{width:995.646635pt;}
._34{width:998.672092pt;}
._41{width:1011.500326pt;}
._36{width:1155.297677pt;}
._31{width:1190.846797pt;}
._25{width:1195.296770pt;}
._32{width:1217.785002pt;}
._14{width:1284.925837pt;}
._15{width:1301.360075pt;}
._16{width:1586.686961pt;}
._29{width:1589.710961pt;}
._4a{width:1590.932294pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:42.512621pt;}
.fsf{font-size:46.549251pt;}
.fse{font-size:47.790960pt;}
.fs10{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:76.513067pt;}
.fs7{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:111.581333pt;}
.fsb{font-size:132.197867pt;}
.fs8{font-size:170.028800pt;}
.fs5{font-size:653.549333pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:19.507535pt;}
.y66{bottom:31.455275pt;}
.y73{bottom:32.023028pt;}
.y65{bottom:43.403015pt;}
.y53{bottom:54.673333pt;}
.y64{bottom:55.350755pt;}
.y72{bottom:56.473194pt;}
.y5{bottom:59.133337pt;}
.y48{bottom:59.729926pt;}
.y5d{bottom:69.249768pt;}
.y71{bottom:70.927826pt;}
.y63{bottom:72.419112pt;}
.y5c{bottom:81.197508pt;}
.y62{bottom:84.366852pt;}
.y55{bottom:85.415747pt;}
.y4{bottom:86.333337pt;}
.y5b{bottom:93.145248pt;}
.y47{bottom:95.860593pt;}
.y61{bottom:96.314592pt;}
.y5a{bottom:105.092988pt;}
.y60{bottom:111.676128pt;}
.y46{bottom:113.925926pt;}
.y70{bottom:122.591138pt;}
.y76{bottom:122.700452pt;}
.y5f{bottom:123.623868pt;}
.y20{bottom:123.790666pt;}
.y4f{bottom:131.452019pt;}
.y45{bottom:131.991259pt;}
.y5e{bottom:135.571608pt;}
.y6f{bottom:136.928417pt;}
.y27{bottom:137.408020pt;}
.y4e{bottom:149.517352pt;}
.y44{bottom:150.056593pt;}
.y6e{bottom:151.863096pt;}
.y59{bottom:156.053552pt;}
.y6d{bottom:166.851104pt;}
.y58{bottom:168.001292pt;}
.y43{bottom:168.123259pt;}
.y17{bottom:175.052000pt;}
.y6c{bottom:181.337740pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y6b{bottom:195.792376pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y57{bottom:200.431028pt;}
.y42{bottom:203.697926pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y6a{bottom:210.247012pt;}
.y56{bottom:212.378768pt;}
.y69{bottom:224.690988pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y75{bottom:231.153788pt;}
.y26{bottom:235.225355pt;}
.y41{bottom:239.845393pt;}
.ya5{bottom:240.325333pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y74{bottom:243.101528pt;}
.y68{bottom:249.218693pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.ya4{bottom:256.265333pt;}
.y40{bottom:257.910726pt;}
.ye7{bottom:259.077333pt;}
.yc7{bottom:269.518667pt;}
.ya3{bottom:272.206667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.ye6{bottom:276.984000pt;}
.y25{bottom:277.732021pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yc6{bottom:287.425333pt;}
.ya2{bottom:288.146667pt;}
.ye5{bottom:296.090667pt;}
.ya1{bottom:304.086667pt;}
.yc5{bottom:306.532000pt;}
.ye{bottom:309.452000pt;}
.ye4{bottom:315.197333pt;}
.y24{bottom:320.238688pt;}
.ya0{bottom:321.992000pt;}
.yc4{bottom:325.638667pt;}
.ye3{bottom:334.536000pt;}
.y9f{bottom:341.332000pt;}
.yd{bottom:343.809333pt;}
.yc3{bottom:344.977333pt;}
.ye2{bottom:353.876000pt;}
.yff{bottom:355.097333pt;}
.y9e{bottom:360.670667pt;}
.yc{bottom:362.706666pt;}
.yc2{bottom:364.317333pt;}
.yfe{bottom:373.002667pt;}
.ye1{bottom:374.542667pt;}
.y3f{bottom:378.850666pt;}
.y9d{bottom:380.010667pt;}
.yc1{bottom:384.984000pt;}
.yfd{bottom:392.342667pt;}
.ye0{bottom:392.609333pt;}
.y3e{bottom:396.915999pt;}
.y9c{bottom:400.678667pt;}
.yc0{bottom:403.049333pt;}
.yfc{bottom:411.449333pt;}
.y3d{bottom:414.982666pt;}
.yfb{bottom:430.802667pt;}
.ydf{bottom:440.217333pt;}
.y84{bottom:445.376000pt;}
.yfa{bottom:449.909333pt;}
.ybf{bottom:450.113333pt;}
.y9b{bottom:452.888000pt;}
.yde{bottom:458.122667pt;}
.yb{bottom:462.990669pt;}
.y83{bottom:463.441333pt;}
.ybe{bottom:468.020000pt;}
.yf9{bottom:469.016000pt;}
.y9a{bottom:470.793333pt;}
.ydd{bottom:477.462667pt;}
.ya{bottom:478.990666pt;}
.y82{bottom:481.506667pt;}
.ybd{bottom:487.358667pt;}
.yf8{bottom:488.354667pt;}
.y99{bottom:489.900000pt;}
.y3c{bottom:494.512019pt;}
.y9{bottom:494.990666pt;}
.ydc{bottom:496.801333pt;}
.y81{bottom:499.572000pt;}
.ybc{bottom:506.465333pt;}
.yf7{bottom:507.694667pt;}
.y98{bottom:509.240000pt;}
.y3b{bottom:512.577353pt;}
.ydb{bottom:517.469333pt;}
.y80{bottom:517.637333pt;}
.ybb{bottom:524.530667pt;}
.yf6{bottom:528.362667pt;}
.y97{bottom:528.578667pt;}
.y3a{bottom:530.644019pt;}
.yda{bottom:535.534667pt;}
.y7f{bottom:535.704000pt;}
.yba{bottom:543.885333pt;}
.yf5{bottom:546.428000pt;}
.y39{bottom:548.709353pt;}
.y96{bottom:549.246667pt;}
.y7e{bottom:553.769333pt;}
.yb9{bottom:562.992000pt;}
.y38{bottom:566.774686pt;}
.y7d{bottom:571.834667pt;}
.y8{bottom:573.786667pt;}
.yb8{bottom:582.098667pt;}
.yd9{bottom:583.037333pt;}
.y37{bottom:584.840019pt;}
.y7c{bottom:589.900000pt;}
.y7{bottom:592.685334pt;}
.yf4{bottom:594.036000pt;}
.yd8{bottom:600.942667pt;}
.yb7{bottom:601.437333pt;}
.y95{bottom:601.717333pt;}
.y36{bottom:602.905353pt;}
.y7b{bottom:607.965333pt;}
.yf3{bottom:611.942667pt;}
.y94{bottom:619.624000pt;}
.yd7{bottom:620.282667pt;}
.yb6{bottom:620.777333pt;}
.y35{bottom:620.972019pt;}
.y7a{bottom:626.030667pt;}
.yf2{bottom:631.049333pt;}
.y4d{bottom:636.796019pt;}
.y93{bottom:638.730667pt;}
.yd6{bottom:639.621333pt;}
.yb5{bottom:641.444000pt;}
.y79{bottom:644.097333pt;}
.y6{bottom:645.598667pt;}
.yf1{bottom:650.388000pt;}
.y92{bottom:658.069333pt;}
.yd5{bottom:660.289333pt;}
.y78{bottom:662.162667pt;}
.y3{bottom:668.977329pt;}
.yf0{bottom:669.728000pt;}
.y4c{bottom:672.926640pt;}
.y91{bottom:677.409333pt;}
.y77{bottom:680.228000pt;}
.yef{bottom:690.394667pt;}
.yb4{bottom:693.653333pt;}
.y90{bottom:698.076000pt;}
.y54{bottom:698.293414pt;}
.yee{bottom:708.461333pt;}
.yb3{bottom:711.560000pt;}
.yd4{bottom:712.745333pt;}
.y34{bottom:724.352574pt;}
.y4b{bottom:727.123973pt;}
.yd3{bottom:730.652000pt;}
.yb2{bottom:730.913333pt;}
.yd2{bottom:750.005333pt;}
.yb1{bottom:750.020000pt;}
.y8f{bottom:750.533333pt;}
.yed{bottom:756.069333pt;}
.y33{bottom:760.484574pt;}
.y4a{bottom:766.973307pt;}
.yb0{bottom:768.085333pt;}
.y8e{bottom:768.438667pt;}
.yd1{bottom:769.112000pt;}
.y23{bottom:771.457353pt;}
.yec{bottom:773.974667pt;}
.y32{bottom:778.551241pt;}
.y2{bottom:781.661334pt;}
.yaf{bottom:787.192000pt;}
.y8d{bottom:787.545333pt;}
.yd0{bottom:788.218667pt;}
.yeb{bottom:793.314667pt;}
.y31{bottom:796.616574pt;}
.yae{bottom:806.532000pt;}
.y8c{bottom:806.885333pt;}
.ycf{bottom:807.558667pt;}
.yea{bottom:812.653333pt;}
.y30{bottom:814.681907pt;}
.yad{bottom:825.870667pt;}
.y8b{bottom:826.224000pt;}
.yce{bottom:826.897333pt;}
.y2f{bottom:832.747241pt;}
.ye9{bottom:833.321333pt;}
.yac{bottom:846.538667pt;}
.y8a{bottom:846.892000pt;}
.ycd{bottom:847.565333pt;}
.y2e{bottom:850.812574pt;}
.ye8{bottom:851.386667pt;}
.y1{bottom:859.312000pt;}
.y2d{bottom:868.879241pt;}
.y101{bottom:879.888000pt;}
.y21{bottom:894.764020pt;}
.y100{bottom:897.794667pt;}
.yab{bottom:898.994667pt;}
.y89{bottom:899.333333pt;}
.ycc{bottom:900.036000pt;}
.y22{bottom:902.322668pt;}
.y2c{bottom:905.026707pt;}
.yaa{bottom:916.901333pt;}
.y88{bottom:917.240000pt;}
.ycb{bottom:917.942667pt;}
.y2b{bottom:923.092041pt;}
.ya9{bottom:936.008000pt;}
.y87{bottom:936.580000pt;}
.yca{bottom:937.281333pt;}
.ya8{bottom:955.348000pt;}
.yc9{bottom:956.621333pt;}
.y86{bottom:957.246667pt;}
.ya7{bottom:974.686667pt;}
.y2a{bottom:977.272537pt;}
.yc8{bottom:977.289333pt;}
.y52{bottom:979.028000pt;}
.ya6{bottom:995.354667pt;}
.y29{bottom:995.354670pt;}
.y49{bottom:995.801351pt;}
.y85{bottom:1011.294667pt;}
.y51{bottom:1013.420000pt;}
.y28{bottom:1013.420003pt;}
.y50{bottom:1060.573333pt;}
.h7{height:28.560000pt;}
.h14{height:29.061362pt;}
.h19{height:31.820777pt;}
.h15{height:32.669602pt;}
.h16{height:32.692937pt;}
.h18{height:34.230064pt;}
.h17{height:34.252793pt;}
.h1a{height:38.734589pt;}
.h6{height:40.800000pt;}
.he{height:42.414581pt;}
.hd{height:42.608203pt;}
.h3{height:42.840000pt;}
.h10{height:42.880036pt;}
.h12{height:42.996399pt;}
.h2{height:48.960000pt;}
.h11{height:56.390130pt;}
.hb{height:58.739883pt;}
.h5{height:69.360000pt;}
.ha{height:82.235443pt;}
.hf{height:97.429828pt;}
.h4{height:105.826671pt;}
.hc{height:125.311226pt;}
.h13{height:276.294821pt;}
.h9{height:482.972957pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:555.606892pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:4.537224pt;}
.x7{left:75.590667pt;}
.x8{left:77.480001pt;}
.xb{left:88.457396pt;}
.x1{left:90.706667pt;}
.xe{left:92.112278pt;}
.x2{left:94.486667pt;}
.x9{left:119.056000pt;}
.x10{left:123.573333pt;}
.x12{left:137.953333pt;}
.xf{left:142.399452pt;}
.x4{left:180.874667pt;}
.xd{left:342.000136pt;}
.x11{left:352.022667pt;}
.xa{left:370.978679pt;}
.x3{left:404.408000pt;}
.x5{left:430.458667pt;}
.x13{left:600.396000pt;}
.x14{left:632.113333pt;}
.x6{left:740.397325pt;}
}




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