
    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_81ae5e87ba06ef930a3efeef.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e24d42bf6de36afffddd5cd2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_46cf765915215ce91890e591.woff')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_8961532c14e4f73e7d07400a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_16498919754b3132762a8842.woff')format("woff");}.ff5{font-family:ff5;line-height:0.903809;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_756b4d9ddaf7b22cd5eb51fb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a740e24558ea85719e0cadd4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_1aa870b4ab79037041b6c512.woff')format("woff");}.ff8{font-family:ff8;line-height:0.762207;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_016d803225918ee610807647.woff')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_f5674574bda085a99977a0d6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_74553961def8b19f8085ecb6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_93368d5fbdad09b76332c6a4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.689453;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_103bd7f28c0ab33f258df35d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_02219b0252e9dec58a5f4f3e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.689453;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_2ffbbf9ae5dc45251a0d30b2.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;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_d5816853a618c35b1ede610a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7c0595e51e2af3c23cbbd255.woff')format("woff");}.ff11{font-family:ff11;line-height:0.687500;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:ff12;src:url('chunks/assets/font_7ca7f9fd4a62134f328492fd.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_04ab5b315912e11ac4f1fe88.woff')format("woff");}.ff13{font-family:ff13;line-height:0.802246;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:ff14;src:url('chunks/assets/font_7893a415dde4e3fbd57fc1ab.woff')format("woff");}.ff14{font-family:ff14;line-height:0.746094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v3{vertical-align:27.360000px;}
.ls5{letter-spacing:-7.391520px;}
.ls1a{letter-spacing:-6.180192px;}
.ls3d{letter-spacing:-4.762656px;}
.ls39{letter-spacing:-3.974400px;}
.ls21{letter-spacing:-2.656800px;}
.ls2f{letter-spacing:-2.570112px;}
.ls30{letter-spacing:-2.530368px;}
.ls1b{letter-spacing:-0.205344px;}
.ls15{letter-spacing:-0.198720px;}
.ls11{letter-spacing:-0.158976px;}
.ls12{letter-spacing:-0.119232px;}
.ls14{letter-spacing:-0.079488px;}
.ls13{letter-spacing:-0.059616px;}
.ls10{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.007200px;}
.ls6{letter-spacing:0.014400px;}
.ls32{letter-spacing:0.090864px;}
.ls1d{letter-spacing:0.102240px;}
.ls35{letter-spacing:0.118800px;}
.ls22{letter-spacing:0.200160px;}
.ls2d{letter-spacing:0.259344px;}
.ls2e{letter-spacing:0.260928px;}
.ls37{letter-spacing:0.271152px;}
.ls38{letter-spacing:0.272448px;}
.ls0{letter-spacing:0.275616px;}
.ls3{letter-spacing:0.283968px;}
.ls2{letter-spacing:0.317376px;}
.ls4{letter-spacing:0.359136px;}
.ls27{letter-spacing:0.411840px;}
.ls1e{letter-spacing:0.451008px;}
.ls17{letter-spacing:0.506880px;}
.ls9{letter-spacing:0.656640px;}
.ls34{letter-spacing:0.718272px;}
.ls19{letter-spacing:0.720288px;}
.ls33{letter-spacing:0.722304px;}
.lsa{letter-spacing:0.900864px;}
.ls8{letter-spacing:0.928800px;}
.ls24{letter-spacing:1.172160px;}
.ls1c{letter-spacing:1.228320px;}
.ls23{letter-spacing:1.431360px;}
.ls16{letter-spacing:1.448784px;}
.ls29{letter-spacing:1.725696px;}
.ls2a{letter-spacing:1.728000px;}
.lsf{letter-spacing:2.514240px;}
.ls31{letter-spacing:4.799520px;}
.ls28{letter-spacing:4.822416px;}
.ls3c{letter-spacing:5.372928px;}
.ls3b{letter-spacing:5.985216px;}
.ls26{letter-spacing:6.161760px;}
.lse{letter-spacing:6.503904px;}
.ls3a{letter-spacing:7.531200px;}
.ls1f{letter-spacing:7.566048px;}
.lsb{letter-spacing:7.738848px;}
.ls2b{letter-spacing:11.096208px;}
.ls2c{letter-spacing:11.096640px;}
.lsc{letter-spacing:13.167360px;}
.lsd{letter-spacing:13.168800px;}
.ls20{letter-spacing:19.258416px;}
.ls18{letter-spacing:29.339712px;}
.ls7{letter-spacing:33.984000px;}
.ls36{letter-spacing:86.399568px;}
.ls25{letter-spacing:194.399568px;}
.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:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.985600px;}
.ws1{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.480512px;}
.ws5{word-spacing:-16.440768px;}
.ws7{word-spacing:-16.401024px;}
.wsc{word-spacing:-14.025600px;}
.ws8{word-spacing:-13.989888px;}
.ws9{word-spacing:-12.602304px;}
.wsd{word-spacing:-0.769824px;}
.wsa{word-spacing:-0.760032px;}
.wsb{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._6{margin-left:-17.711712px;}
._7{margin-left:-13.679712px;}
._8{margin-left:-11.663712px;}
._9{margin-left:-10.080000px;}
._4{margin-left:-8.705952px;}
._28{margin-left:-6.763392px;}
._a{margin-left:-5.759712px;}
._0{margin-left:-4.510080px;}
._5{margin-left:-2.585952px;}
._1{margin-left:-1.085760px;}
._16{width:1.012608px;}
._d{width:2.440800px;}
._b{width:3.657600px;}
._f{width:4.700160px;}
._3{width:6.681600px;}
._2{width:7.683840px;}
._15{width:8.712000px;}
._14{width:9.725760px;}
._1c{width:10.966608px;}
._11{width:12.027744px;}
._e{width:13.384800px;}
._1e{width:14.385600px;}
._13{width:15.408000px;}
._17{width:16.463232px;}
._24{width:18.187488px;}
._c{width:19.497600px;}
._20{width:20.527056px;}
._1b{width:22.320000px;}
._1f{width:24.166512px;}
._1d{width:25.225488px;}
._21{width:26.334000px;}
._26{width:28.059264px;}
._27{width:29.454336px;}
._2b{width:30.809664px;}
._2d{width:33.336000px;}
._23{width:34.531200px;}
._1a{width:36.412992px;}
._19{width:37.425600px;}
._25{width:38.701152px;}
._22{width:39.754080px;}
._18{width:40.919328px;}
._2c{width:46.974384px;}
._29{width:48.947472px;}
._2a{width:66.041712px;}
._10{width:86.399568px;}
._12{width:194.399568px;}
._2e{width:225.698400px;}
.fc5{color:rgb(70,120,134);}
.fc4{color:rgb(241,169,131);}
.fc3{color:rgb(216,109,203);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs8{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs5{font-size:119.520000px;}
.fs0{font-size:132.480000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:4.260000px;}
.y15{bottom:55.500000px;}
.y14{bottom:58.320000px;}
.y119{bottom:109.800000px;}
.y4f{bottom:112.680000px;}
.y143{bottom:113.040000px;}
.y123{bottom:114.840000px;}
.y9f{bottom:115.200000px;}
.y9b{bottom:128.160000px;}
.y118{bottom:128.880000px;}
.y4e{bottom:134.640000px;}
.ybf{bottom:137.160000px;}
.yf9{bottom:137.880000px;}
.ydd{bottom:138.600000px;}
.y142{bottom:144.360000px;}
.y122{bottom:145.800000px;}
.y9e{bottom:146.160000px;}
.y117{bottom:147.960000px;}
.y85{bottom:153.360000px;}
.y4d{bottom:156.240000px;}
.y9a{bottom:159.120000px;}
.ya9{bottom:163.080000px;}
.y13{bottom:163.800000px;}
.ybe{bottom:168.120000px;}
.yf8{bottom:169.200000px;}
.ydc{bottom:169.560000px;}
.y31{bottom:171.720000px;}
.y141{bottom:175.320000px;}
.ya8{bottom:176.760000px;}
.y9d{bottom:177.120000px;}
.y6d{bottom:178.200000px;}
.y84{bottom:184.320000px;}
.y4c{bottom:185.040000px;}
.y99{bottom:190.440000px;}
.y116{bottom:198.720000px;}
.ybd{bottom:199.440000px;}
.y12{bottom:199.800000px;}
.yf7{bottom:200.160000px;}
.ydb{bottom:200.520000px;}
.y140{bottom:206.280000px;}
.y121{bottom:208.080000px;}
.y30{bottom:208.440000px;}
.y83{bottom:215.280000px;}
.y12b{bottom:216.720000px;}
.y6c{bottom:220.320000px;}
.y98{bottom:221.400000px;}
.y4b{bottom:221.760000px;}
.ybc{bottom:230.400000px;}
.yf6{bottom:231.120000px;}
.yda{bottom:231.840000px;}
.y11{bottom:236.160000px;}
.y13f{bottom:237.240000px;}
.y120{bottom:239.040000px;}
.y9c{bottom:239.400000px;}
.yaa{bottom:242.280000px;}
.y4a{bottom:243.720000px;}
.y2f{bottom:245.160000px;}
.y82{bottom:246.600000px;}
.y12a{bottom:247.680000px;}
.y97{bottom:252.360000px;}
.ya7{bottom:256.320000px;}
.ybb{bottom:261.360000px;}
.yf5{bottom:262.080000px;}
.yd9{bottom:262.800000px;}
.y49{bottom:265.320000px;}
.y13e{bottom:268.560000px;}
.y11f{bottom:270.000000px;}
.y6b{bottom:270.360000px;}
.y10{bottom:272.520000px;}
.y115{bottom:274.680000px;}
.y81{bottom:277.560000px;}
.y129{bottom:278.640000px;}
.y2e{bottom:281.880000px;}
.y96{bottom:283.320000px;}
.y48{bottom:287.280000px;}
.yaf{bottom:289.440000px;}
.yba{bottom:292.320000px;}
.yf4{bottom:293.400000px;}
.yd8{bottom:293.760000px;}
.y13d{bottom:299.520000px;}
.y6a{bottom:301.320000px;}
.y114{bottom:305.640000px;}
.yf{bottom:308.520000px;}
.yae{bottom:308.880000px;}
.y128{bottom:309.960000px;}
.y95{bottom:314.280000px;}
.y47{bottom:315.720000px;}
.y2d{bottom:318.240000px;}
.ya6{bottom:318.600000px;}
.yb9{bottom:323.640000px;}
.yf3{bottom:324.360000px;}
.yd7{bottom:324.720000px;}
.y46{bottom:329.400000px;}
.y13c{bottom:330.480000px;}
.yad{bottom:330.840000px;}
.y69{bottom:332.280000px;}
.y113{bottom:336.960000px;}
.y80{bottom:339.480000px;}
.y127{bottom:340.920000px;}
.ye{bottom:344.880000px;}
.y94{bottom:345.600000px;}
.ya5{bottom:349.560000px;}
.yac{bottom:352.800000px;}
.yb8{bottom:354.600000px;}
.y2c{bottom:354.960000px;}
.yf2{bottom:355.320000px;}
.yd6{bottom:355.680000px;}
.y13b{bottom:361.440000px;}
.y11e{bottom:363.240000px;}
.y68{bottom:363.600000px;}
.y112{bottom:367.920000px;}
.y7f{bottom:370.800000px;}
.y126{bottom:371.880000px;}
.yab{bottom:373.320000px;}
.y93{bottom:376.560000px;}
.ya4{bottom:380.520000px;}
.yd{bottom:380.880000px;}
.yb7{bottom:385.560000px;}
.yf1{bottom:386.280000px;}
.yd5{bottom:387.000000px;}
.y45{bottom:388.440000px;}
.y2b{bottom:391.680000px;}
.y13a{bottom:392.760000px;}
.y11d{bottom:394.200000px;}
.y67{bottom:394.560000px;}
.y111{bottom:398.880000px;}
.y7e{bottom:401.760000px;}
.y125{bottom:402.840000px;}
.y92{bottom:407.520000px;}
.ya3{bottom:411.480000px;}
.yb6{bottom:416.520000px;}
.yc{bottom:417.240000px;}
.yf0{bottom:417.600000px;}
.yd4{bottom:417.960000px;}
.y44{bottom:419.760000px;}
.y139{bottom:423.720000px;}
.y66{bottom:425.520000px;}
.y2a{bottom:428.040000px;}
.y124{bottom:429.480000px;}
.y110{bottom:429.840000px;}
.y7d{bottom:432.720000px;}
.y91{bottom:438.480000px;}
.ya2{bottom:442.800000px;}
.yb5{bottom:447.840000px;}
.yef{bottom:448.560000px;}
.yd3{bottom:448.920000px;}
.yb{bottom:450.720000px;}
.y138{bottom:454.680000px;}
.y65{bottom:456.480000px;}
.y10f{bottom:461.160000px;}
.y7c{bottom:463.680000px;}
.y29{bottom:464.760000px;}
.y90{bottom:469.800000px;}
.yee{bottom:470.520000px;}
.y11c{bottom:478.440000px;}
.yb4{bottom:478.800000px;}
.ya1{bottom:479.520000px;}
.yd2{bottom:479.880000px;}
.ya{bottom:481.680000px;}
.y137{bottom:485.640000px;}
.y64{bottom:487.800000px;}
.y10e{bottom:492.120000px;}
.y7b{bottom:494.640000px;}
.yed{bottom:497.160000px;}
.y8f{bottom:500.760000px;}
.y28{bottom:501.480000px;}
.y11b{bottom:505.080000px;}
.yb3{bottom:509.760000px;}
.yd1{bottom:511.200000px;}
.y43{bottom:512.640000px;}
.y9{bottom:513.000000px;}
.y136{bottom:516.960000px;}
.y63{bottom:518.760000px;}
.ya0{bottom:522.720000px;}
.y10d{bottom:523.080000px;}
.y7a{bottom:525.960000px;}
.yec{bottom:529.920000px;}
.y8e{bottom:531.720000px;}
.y11a{bottom:537.840000px;}
.y8{bottom:540.720000px;}
.yd0{bottom:542.160000px;}
.y27{bottom:543.960000px;}
.y135{bottom:547.920000px;}
.y62{bottom:549.720000px;}
.y10c{bottom:554.040000px;}
.y79{bottom:556.920000px;}
.y8d{bottom:562.680000px;}
.yb2{bottom:572.040000px;}
.yeb{bottom:572.760000px;}
.ycf{bottom:573.120000px;}
.y26{bottom:574.920000px;}
.y134{bottom:578.880000px;}
.y61{bottom:580.680000px;}
.y10b{bottom:585.360000px;}
.y78{bottom:587.880000px;}
.y8c{bottom:594.000000px;}
.yb1{bottom:603.000000px;}
.yce{bottom:604.080000px;}
.y42{bottom:605.880000px;}
.y133{bottom:609.840000px;}
.y60{bottom:612.000000px;}
.y25{bottom:614.880000px;}
.y10a{bottom:616.320000px;}
.y77{bottom:618.840000px;}
.y8b{bottom:624.960000px;}
.yea{bottom:635.040000px;}
.ycd{bottom:635.400000px;}
.y41{bottom:636.840000px;}
.y132{bottom:640.800000px;}
.y5f{bottom:642.960000px;}
.y109{bottom:647.280000px;}
.y76{bottom:650.160000px;}
.y24{bottom:655.200000px;}
.y8a{bottom:655.920000px;}
.yb0{bottom:662.040000px;}
.ye9{bottom:666.000000px;}
.ycc{bottom:666.360000px;}
.y40{bottom:667.800000px;}
.y131{bottom:672.120000px;}
.y5e{bottom:673.920000px;}
.y108{bottom:678.240000px;}
.y75{bottom:681.120000px;}
.y23{bottom:686.160000px;}
.y89{bottom:686.880000px;}
.ye8{bottom:696.960000px;}
.ycb{bottom:697.320000px;}
.y3f{bottom:699.120000px;}
.y130{bottom:703.080000px;}
.y5d{bottom:704.880000px;}
.y107{bottom:709.200000px;}
.y74{bottom:712.080000px;}
.y22{bottom:717.120000px;}
.y88{bottom:718.200000px;}
.yca{bottom:728.280000px;}
.y3e{bottom:730.080000px;}
.y12f{bottom:734.040000px;}
.y5c{bottom:736.200000px;}
.y106{bottom:740.520000px;}
.y73{bottom:743.040000px;}
.y87{bottom:749.160000px;}
.y21{bottom:757.080000px;}
.ye7{bottom:759.240000px;}
.yc9{bottom:759.600000px;}
.y3d{bottom:761.040000px;}
.y12e{bottom:765.000000px;}
.y5b{bottom:767.160000px;}
.y105{bottom:771.480000px;}
.y72{bottom:774.360000px;}
.y86{bottom:786.240000px;}
.y20{bottom:788.400000px;}
.ye6{bottom:790.200000px;}
.yc8{bottom:790.560000px;}
.y3c{bottom:792.000000px;}
.y12d{bottom:796.320000px;}
.y5a{bottom:798.120000px;}
.y104{bottom:802.440000px;}
.y71{bottom:805.320000px;}
.y1f{bottom:819.360000px;}
.ye5{bottom:821.160000px;}
.yc7{bottom:821.520000px;}
.y3b{bottom:823.320000px;}
.y12c{bottom:827.280000px;}
.y59{bottom:829.080000px;}
.y103{bottom:833.400000px;}
.y70{bottom:836.280000px;}
.yc6{bottom:852.480000px;}
.y3a{bottom:854.280000px;}
.y6f{bottom:858.240000px;}
.y1e{bottom:859.320000px;}
.y58{bottom:860.400000px;}
.y102{bottom:864.720000px;}
.y7{bottom:865.440000px;}
.ye4{bottom:883.440000px;}
.yc5{bottom:883.800000px;}
.y39{bottom:885.240000px;}
.y57{bottom:891.360000px;}
.y6e{bottom:895.320000px;}
.y101{bottom:895.680000px;}
.y6{bottom:896.400000px;}
.y1d{bottom:899.280000px;}
.ye3{bottom:914.400000px;}
.yc4{bottom:914.760000px;}
.y38{bottom:916.200000px;}
.y56{bottom:922.320000px;}
.y100{bottom:926.640000px;}
.y5{bottom:927.360000px;}
.y1c{bottom:939.600000px;}
.ye2{bottom:945.360000px;}
.yc3{bottom:945.720000px;}
.y37{bottom:947.520000px;}
.y55{bottom:953.280000px;}
.yff{bottom:957.600000px;}
.y4{bottom:958.680000px;}
.yc2{bottom:976.680000px;}
.y36{bottom:978.480000px;}
.y1b{bottom:979.560000px;}
.y54{bottom:984.600000px;}
.yfe{bottom:988.920000px;}
.y3{bottom:1004.040000px;}
.ye1{bottom:1007.640000px;}
.yc1{bottom:1008.000000px;}
.y35{bottom:1009.440000px;}
.y53{bottom:1015.560000px;}
.y1a{bottom:1019.520000px;}
.yfd{bottom:1019.880000px;}
.yc0{bottom:1034.640000px;}
.ye0{bottom:1038.600000px;}
.y34{bottom:1040.400000px;}
.y52{bottom:1046.520000px;}
.yfc{bottom:1050.840000px;}
.y19{bottom:1059.480000px;}
.y2{bottom:1066.320000px;}
.y33{bottom:1071.720000px;}
.ydf{bottom:1072.080000px;}
.y51{bottom:1077.480000px;}
.yfb{bottom:1081.800000px;}
.y18{bottom:1099.800000px;}
.y32{bottom:1102.680000px;}
.yde{bottom:1107.360000px;}
.y50{bottom:1108.800000px;}
.yfa{bottom:1113.120000px;}
.y1{bottom:1125.720000px;}
.y17{bottom:1139.760000px;}
.h7{height:19.500000px;}
.ha{height:28.220625px;}
.hb{height:46.025156px;}
.h6{height:47.988281px;}
.hd{height:49.992188px;}
.hc{height:55.580625px;}
.h8{height:63.175781px;}
.h4{height:63.949219px;}
.h5{height:74.181094px;}
.h9{height:79.660547px;}
.h2{height:88.298438px;}
.h3{height:98.578125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:10.500000px;}
.w3{width:18.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xc{left:1.080000px;}
.x11{left:115.920000px;}
.xa{left:127.439928px;}
.x14{left:138.960000px;}
.xd{left:145.439928px;}
.x2{left:149.831928px;}
.xf{left:154.439928px;}
.xe{left:163.439928px;}
.x12{left:181.439928px;}
.x5{left:299.329488px;}
.x8{left:302.744016px;}
.x9{left:319.263084px;}
.x6{left:324.692496px;}
.x3{left:342.356328px;}
.x10{left:343.439928px;}
.x7{left:362.042280px;}
.x1{left:446.339880px;}
.x4{left:621.839880px;}
.x13{left:748.500000px;}
.xb{left:756.000000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v3{vertical-align:24.320000pt;}
.ls5{letter-spacing:-6.570240pt;}
.ls1a{letter-spacing:-5.493504pt;}
.ls3d{letter-spacing:-4.233472pt;}
.ls39{letter-spacing:-3.532800pt;}
.ls21{letter-spacing:-2.361600pt;}
.ls2f{letter-spacing:-2.284544pt;}
.ls30{letter-spacing:-2.249216pt;}
.ls1b{letter-spacing:-0.182528pt;}
.ls15{letter-spacing:-0.176640pt;}
.ls11{letter-spacing:-0.141312pt;}
.ls12{letter-spacing:-0.105984pt;}
.ls14{letter-spacing:-0.070656pt;}
.ls13{letter-spacing:-0.052992pt;}
.ls10{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.006400pt;}
.ls6{letter-spacing:0.012800pt;}
.ls32{letter-spacing:0.080768pt;}
.ls1d{letter-spacing:0.090880pt;}
.ls35{letter-spacing:0.105600pt;}
.ls22{letter-spacing:0.177920pt;}
.ls2d{letter-spacing:0.230528pt;}
.ls2e{letter-spacing:0.231936pt;}
.ls37{letter-spacing:0.241024pt;}
.ls38{letter-spacing:0.242176pt;}
.ls0{letter-spacing:0.244992pt;}
.ls3{letter-spacing:0.252416pt;}
.ls2{letter-spacing:0.282112pt;}
.ls4{letter-spacing:0.319232pt;}
.ls27{letter-spacing:0.366080pt;}
.ls1e{letter-spacing:0.400896pt;}
.ls17{letter-spacing:0.450560pt;}
.ls9{letter-spacing:0.583680pt;}
.ls34{letter-spacing:0.638464pt;}
.ls19{letter-spacing:0.640256pt;}
.ls33{letter-spacing:0.642048pt;}
.lsa{letter-spacing:0.800768pt;}
.ls8{letter-spacing:0.825600pt;}
.ls24{letter-spacing:1.041920pt;}
.ls1c{letter-spacing:1.091840pt;}
.ls23{letter-spacing:1.272320pt;}
.ls16{letter-spacing:1.287808pt;}
.ls29{letter-spacing:1.533952pt;}
.ls2a{letter-spacing:1.536000pt;}
.lsf{letter-spacing:2.234880pt;}
.ls31{letter-spacing:4.266240pt;}
.ls28{letter-spacing:4.286592pt;}
.ls3c{letter-spacing:4.775936pt;}
.ls3b{letter-spacing:5.320192pt;}
.ls26{letter-spacing:5.477120pt;}
.lse{letter-spacing:5.781248pt;}
.ls3a{letter-spacing:6.694400pt;}
.ls1f{letter-spacing:6.725376pt;}
.lsb{letter-spacing:6.878976pt;}
.ls2b{letter-spacing:9.863296pt;}
.ls2c{letter-spacing:9.863680pt;}
.lsc{letter-spacing:11.704320pt;}
.lsd{letter-spacing:11.705600pt;}
.ls20{letter-spacing:17.118592pt;}
.ls18{letter-spacing:26.079744pt;}
.ls7{letter-spacing:30.208000pt;}
.ls36{letter-spacing:76.799616pt;}
.ls25{letter-spacing:172.799616pt;}
.ws2{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.987200pt;}
.ws1{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.649344pt;}
.ws5{word-spacing:-14.614016pt;}
.ws7{word-spacing:-14.578688pt;}
.wsc{word-spacing:-12.467200pt;}
.ws8{word-spacing:-12.435456pt;}
.ws9{word-spacing:-11.202048pt;}
.wsd{word-spacing:-0.684288pt;}
.wsa{word-spacing:-0.675584pt;}
.wsb{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._6{margin-left:-15.743744pt;}
._7{margin-left:-12.159744pt;}
._8{margin-left:-10.367744pt;}
._9{margin-left:-8.960000pt;}
._4{margin-left:-7.738624pt;}
._28{margin-left:-6.011904pt;}
._a{margin-left:-5.119744pt;}
._0{margin-left:-4.008960pt;}
._5{margin-left:-2.298624pt;}
._1{margin-left:-0.965120pt;}
._16{width:0.900096pt;}
._d{width:2.169600pt;}
._b{width:3.251200pt;}
._f{width:4.177920pt;}
._3{width:5.939200pt;}
._2{width:6.830080pt;}
._15{width:7.744000pt;}
._14{width:8.645120pt;}
._1c{width:9.748096pt;}
._11{width:10.691328pt;}
._e{width:11.897600pt;}
._1e{width:12.787200pt;}
._13{width:13.696000pt;}
._17{width:14.633984pt;}
._24{width:16.166656pt;}
._c{width:17.331200pt;}
._20{width:18.246272pt;}
._1b{width:19.840000pt;}
._1f{width:21.481344pt;}
._1d{width:22.422656pt;}
._21{width:23.408000pt;}
._26{width:24.941568pt;}
._27{width:26.181632pt;}
._2b{width:27.386368pt;}
._2d{width:29.632000pt;}
._23{width:30.694400pt;}
._1a{width:32.367104pt;}
._19{width:33.267200pt;}
._25{width:34.401024pt;}
._22{width:35.336960pt;}
._18{width:36.372736pt;}
._2c{width:41.755008pt;}
._29{width:43.508864pt;}
._2a{width:58.703744pt;}
._10{width:76.799616pt;}
._12{width:172.799616pt;}
._2e{width:200.620800pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs8{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs5{font-size:106.240000pt;}
.fs0{font-size:117.760000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.786667pt;}
.y15{bottom:49.333333pt;}
.y14{bottom:51.840000pt;}
.y119{bottom:97.600000pt;}
.y4f{bottom:100.160000pt;}
.y143{bottom:100.480000pt;}
.y123{bottom:102.080000pt;}
.y9f{bottom:102.400000pt;}
.y9b{bottom:113.920000pt;}
.y118{bottom:114.560000pt;}
.y4e{bottom:119.680000pt;}
.ybf{bottom:121.920000pt;}
.yf9{bottom:122.560000pt;}
.ydd{bottom:123.200000pt;}
.y142{bottom:128.320000pt;}
.y122{bottom:129.600000pt;}
.y9e{bottom:129.920000pt;}
.y117{bottom:131.520000pt;}
.y85{bottom:136.320000pt;}
.y4d{bottom:138.880000pt;}
.y9a{bottom:141.440000pt;}
.ya9{bottom:144.960000pt;}
.y13{bottom:145.600000pt;}
.ybe{bottom:149.440000pt;}
.yf8{bottom:150.400000pt;}
.ydc{bottom:150.720000pt;}
.y31{bottom:152.640000pt;}
.y141{bottom:155.840000pt;}
.ya8{bottom:157.120000pt;}
.y9d{bottom:157.440000pt;}
.y6d{bottom:158.400000pt;}
.y84{bottom:163.840000pt;}
.y4c{bottom:164.480000pt;}
.y99{bottom:169.280000pt;}
.y116{bottom:176.640000pt;}
.ybd{bottom:177.280000pt;}
.y12{bottom:177.600000pt;}
.yf7{bottom:177.920000pt;}
.ydb{bottom:178.240000pt;}
.y140{bottom:183.360000pt;}
.y121{bottom:184.960000pt;}
.y30{bottom:185.280000pt;}
.y83{bottom:191.360000pt;}
.y12b{bottom:192.640000pt;}
.y6c{bottom:195.840000pt;}
.y98{bottom:196.800000pt;}
.y4b{bottom:197.120000pt;}
.ybc{bottom:204.800000pt;}
.yf6{bottom:205.440000pt;}
.yda{bottom:206.080000pt;}
.y11{bottom:209.920000pt;}
.y13f{bottom:210.880000pt;}
.y120{bottom:212.480000pt;}
.y9c{bottom:212.800000pt;}
.yaa{bottom:215.360000pt;}
.y4a{bottom:216.640000pt;}
.y2f{bottom:217.920000pt;}
.y82{bottom:219.200000pt;}
.y12a{bottom:220.160000pt;}
.y97{bottom:224.320000pt;}
.ya7{bottom:227.840000pt;}
.ybb{bottom:232.320000pt;}
.yf5{bottom:232.960000pt;}
.yd9{bottom:233.600000pt;}
.y49{bottom:235.840000pt;}
.y13e{bottom:238.720000pt;}
.y11f{bottom:240.000000pt;}
.y6b{bottom:240.320000pt;}
.y10{bottom:242.240000pt;}
.y115{bottom:244.160000pt;}
.y81{bottom:246.720000pt;}
.y129{bottom:247.680000pt;}
.y2e{bottom:250.560000pt;}
.y96{bottom:251.840000pt;}
.y48{bottom:255.360000pt;}
.yaf{bottom:257.280000pt;}
.yba{bottom:259.840000pt;}
.yf4{bottom:260.800000pt;}
.yd8{bottom:261.120000pt;}
.y13d{bottom:266.240000pt;}
.y6a{bottom:267.840000pt;}
.y114{bottom:271.680000pt;}
.yf{bottom:274.240000pt;}
.yae{bottom:274.560000pt;}
.y128{bottom:275.520000pt;}
.y95{bottom:279.360000pt;}
.y47{bottom:280.640000pt;}
.y2d{bottom:282.880000pt;}
.ya6{bottom:283.200000pt;}
.yb9{bottom:287.680000pt;}
.yf3{bottom:288.320000pt;}
.yd7{bottom:288.640000pt;}
.y46{bottom:292.800000pt;}
.y13c{bottom:293.760000pt;}
.yad{bottom:294.080000pt;}
.y69{bottom:295.360000pt;}
.y113{bottom:299.520000pt;}
.y80{bottom:301.760000pt;}
.y127{bottom:303.040000pt;}
.ye{bottom:306.560000pt;}
.y94{bottom:307.200000pt;}
.ya5{bottom:310.720000pt;}
.yac{bottom:313.600000pt;}
.yb8{bottom:315.200000pt;}
.y2c{bottom:315.520000pt;}
.yf2{bottom:315.840000pt;}
.yd6{bottom:316.160000pt;}
.y13b{bottom:321.280000pt;}
.y11e{bottom:322.880000pt;}
.y68{bottom:323.200000pt;}
.y112{bottom:327.040000pt;}
.y7f{bottom:329.600000pt;}
.y126{bottom:330.560000pt;}
.yab{bottom:331.840000pt;}
.y93{bottom:334.720000pt;}
.ya4{bottom:338.240000pt;}
.yd{bottom:338.560000pt;}
.yb7{bottom:342.720000pt;}
.yf1{bottom:343.360000pt;}
.yd5{bottom:344.000000pt;}
.y45{bottom:345.280000pt;}
.y2b{bottom:348.160000pt;}
.y13a{bottom:349.120000pt;}
.y11d{bottom:350.400000pt;}
.y67{bottom:350.720000pt;}
.y111{bottom:354.560000pt;}
.y7e{bottom:357.120000pt;}
.y125{bottom:358.080000pt;}
.y92{bottom:362.240000pt;}
.ya3{bottom:365.760000pt;}
.yb6{bottom:370.240000pt;}
.yc{bottom:370.880000pt;}
.yf0{bottom:371.200000pt;}
.yd4{bottom:371.520000pt;}
.y44{bottom:373.120000pt;}
.y139{bottom:376.640000pt;}
.y66{bottom:378.240000pt;}
.y2a{bottom:380.480000pt;}
.y124{bottom:381.760000pt;}
.y110{bottom:382.080000pt;}
.y7d{bottom:384.640000pt;}
.y91{bottom:389.760000pt;}
.ya2{bottom:393.600000pt;}
.yb5{bottom:398.080000pt;}
.yef{bottom:398.720000pt;}
.yd3{bottom:399.040000pt;}
.yb{bottom:400.640000pt;}
.y138{bottom:404.160000pt;}
.y65{bottom:405.760000pt;}
.y10f{bottom:409.920000pt;}
.y7c{bottom:412.160000pt;}
.y29{bottom:413.120000pt;}
.y90{bottom:417.600000pt;}
.yee{bottom:418.240000pt;}
.y11c{bottom:425.280000pt;}
.yb4{bottom:425.600000pt;}
.ya1{bottom:426.240000pt;}
.yd2{bottom:426.560000pt;}
.ya{bottom:428.160000pt;}
.y137{bottom:431.680000pt;}
.y64{bottom:433.600000pt;}
.y10e{bottom:437.440000pt;}
.y7b{bottom:439.680000pt;}
.yed{bottom:441.920000pt;}
.y8f{bottom:445.120000pt;}
.y28{bottom:445.760000pt;}
.y11b{bottom:448.960000pt;}
.yb3{bottom:453.120000pt;}
.yd1{bottom:454.400000pt;}
.y43{bottom:455.680000pt;}
.y9{bottom:456.000000pt;}
.y136{bottom:459.520000pt;}
.y63{bottom:461.120000pt;}
.ya0{bottom:464.640000pt;}
.y10d{bottom:464.960000pt;}
.y7a{bottom:467.520000pt;}
.yec{bottom:471.040000pt;}
.y8e{bottom:472.640000pt;}
.y11a{bottom:478.080000pt;}
.y8{bottom:480.640000pt;}
.yd0{bottom:481.920000pt;}
.y27{bottom:483.520000pt;}
.y135{bottom:487.040000pt;}
.y62{bottom:488.640000pt;}
.y10c{bottom:492.480000pt;}
.y79{bottom:495.040000pt;}
.y8d{bottom:500.160000pt;}
.yb2{bottom:508.480000pt;}
.yeb{bottom:509.120000pt;}
.ycf{bottom:509.440000pt;}
.y26{bottom:511.040000pt;}
.y134{bottom:514.560000pt;}
.y61{bottom:516.160000pt;}
.y10b{bottom:520.320000pt;}
.y78{bottom:522.560000pt;}
.y8c{bottom:528.000000pt;}
.yb1{bottom:536.000000pt;}
.yce{bottom:536.960000pt;}
.y42{bottom:538.560000pt;}
.y133{bottom:542.080000pt;}
.y60{bottom:544.000000pt;}
.y25{bottom:546.560000pt;}
.y10a{bottom:547.840000pt;}
.y77{bottom:550.080000pt;}
.y8b{bottom:555.520000pt;}
.yea{bottom:564.480000pt;}
.ycd{bottom:564.800000pt;}
.y41{bottom:566.080000pt;}
.y132{bottom:569.600000pt;}
.y5f{bottom:571.520000pt;}
.y109{bottom:575.360000pt;}
.y76{bottom:577.920000pt;}
.y24{bottom:582.400000pt;}
.y8a{bottom:583.040000pt;}
.yb0{bottom:588.480000pt;}
.ye9{bottom:592.000000pt;}
.ycc{bottom:592.320000pt;}
.y40{bottom:593.600000pt;}
.y131{bottom:597.440000pt;}
.y5e{bottom:599.040000pt;}
.y108{bottom:602.880000pt;}
.y75{bottom:605.440000pt;}
.y23{bottom:609.920000pt;}
.y89{bottom:610.560000pt;}
.ye8{bottom:619.520000pt;}
.ycb{bottom:619.840000pt;}
.y3f{bottom:621.440000pt;}
.y130{bottom:624.960000pt;}
.y5d{bottom:626.560000pt;}
.y107{bottom:630.400000pt;}
.y74{bottom:632.960000pt;}
.y22{bottom:637.440000pt;}
.y88{bottom:638.400000pt;}
.yca{bottom:647.360000pt;}
.y3e{bottom:648.960000pt;}
.y12f{bottom:652.480000pt;}
.y5c{bottom:654.400000pt;}
.y106{bottom:658.240000pt;}
.y73{bottom:660.480000pt;}
.y87{bottom:665.920000pt;}
.y21{bottom:672.960000pt;}
.ye7{bottom:674.880000pt;}
.yc9{bottom:675.200000pt;}
.y3d{bottom:676.480000pt;}
.y12e{bottom:680.000000pt;}
.y5b{bottom:681.920000pt;}
.y105{bottom:685.760000pt;}
.y72{bottom:688.320000pt;}
.y86{bottom:698.880000pt;}
.y20{bottom:700.800000pt;}
.ye6{bottom:702.400000pt;}
.yc8{bottom:702.720000pt;}
.y3c{bottom:704.000000pt;}
.y12d{bottom:707.840000pt;}
.y5a{bottom:709.440000pt;}
.y104{bottom:713.280000pt;}
.y71{bottom:715.840000pt;}
.y1f{bottom:728.320000pt;}
.ye5{bottom:729.920000pt;}
.yc7{bottom:730.240000pt;}
.y3b{bottom:731.840000pt;}
.y12c{bottom:735.360000pt;}
.y59{bottom:736.960000pt;}
.y103{bottom:740.800000pt;}
.y70{bottom:743.360000pt;}
.yc6{bottom:757.760000pt;}
.y3a{bottom:759.360000pt;}
.y6f{bottom:762.880000pt;}
.y1e{bottom:763.840000pt;}
.y58{bottom:764.800000pt;}
.y102{bottom:768.640000pt;}
.y7{bottom:769.280000pt;}
.ye4{bottom:785.280000pt;}
.yc5{bottom:785.600000pt;}
.y39{bottom:786.880000pt;}
.y57{bottom:792.320000pt;}
.y6e{bottom:795.840000pt;}
.y101{bottom:796.160000pt;}
.y6{bottom:796.800000pt;}
.y1d{bottom:799.360000pt;}
.ye3{bottom:812.800000pt;}
.yc4{bottom:813.120000pt;}
.y38{bottom:814.400000pt;}
.y56{bottom:819.840000pt;}
.y100{bottom:823.680000pt;}
.y5{bottom:824.320000pt;}
.y1c{bottom:835.200000pt;}
.ye2{bottom:840.320000pt;}
.yc3{bottom:840.640000pt;}
.y37{bottom:842.240000pt;}
.y55{bottom:847.360000pt;}
.yff{bottom:851.200000pt;}
.y4{bottom:852.160000pt;}
.yc2{bottom:868.160000pt;}
.y36{bottom:869.760000pt;}
.y1b{bottom:870.720000pt;}
.y54{bottom:875.200000pt;}
.yfe{bottom:879.040000pt;}
.y3{bottom:892.480000pt;}
.ye1{bottom:895.680000pt;}
.yc1{bottom:896.000000pt;}
.y35{bottom:897.280000pt;}
.y53{bottom:902.720000pt;}
.y1a{bottom:906.240000pt;}
.yfd{bottom:906.560000pt;}
.yc0{bottom:919.680000pt;}
.ye0{bottom:923.200000pt;}
.y34{bottom:924.800000pt;}
.y52{bottom:930.240000pt;}
.yfc{bottom:934.080000pt;}
.y19{bottom:941.760000pt;}
.y2{bottom:947.840000pt;}
.y33{bottom:952.640000pt;}
.ydf{bottom:952.960000pt;}
.y51{bottom:957.760000pt;}
.yfb{bottom:961.600000pt;}
.y18{bottom:977.600000pt;}
.y32{bottom:980.160000pt;}
.yde{bottom:984.320000pt;}
.y50{bottom:985.600000pt;}
.yfa{bottom:989.440000pt;}
.y1{bottom:1000.640000pt;}
.y17{bottom:1013.120000pt;}
.h7{height:17.333333pt;}
.ha{height:25.085000pt;}
.hb{height:40.911250pt;}
.h6{height:42.656250pt;}
.hd{height:44.437500pt;}
.hc{height:49.405000pt;}
.h8{height:56.156250pt;}
.h4{height:56.843750pt;}
.h5{height:65.938750pt;}
.h9{height:70.809375pt;}
.h2{height:78.487500pt;}
.h3{height:87.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w3{width:16.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xc{left:0.960000pt;}
.x11{left:103.040000pt;}
.xa{left:113.279936pt;}
.x14{left:123.520000pt;}
.xd{left:129.279936pt;}
.x2{left:133.183936pt;}
.xf{left:137.279936pt;}
.xe{left:145.279936pt;}
.x12{left:161.279936pt;}
.x5{left:266.070656pt;}
.x8{left:269.105792pt;}
.x9{left:283.789408pt;}
.x6{left:288.615552pt;}
.x3{left:304.316736pt;}
.x10{left:305.279936pt;}
.x7{left:321.815360pt;}
.x1{left:396.746560pt;}
.x4{left:552.746560pt;}
.x13{left:665.333333pt;}
.xb{left:672.000000pt;}
}




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