
    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_6cd7713deba71dff2709c704.woff')format("woff");}.ff1{font-family:ff1;line-height:0.717285;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_3d8c9b9db59ab1f225a38516.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e18f3091c9de661a03a30996.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_09fe16f6ea44f9cfac24041a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105000;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_84b6a771602f0b21a96d1785.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_59770fa62c1aa42e82679eac.woff')format("woff");}.ff6{font-family:ff6;line-height:0.917000;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_9f01a6bd353859d839393a59.woff')format("woff");}.ff7{font-family:ff7;line-height:0.924053;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_a0f370105911e52ceea47d98.woff')format("woff");}.ff8{font-family:ff8;line-height:1.127000;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_f794710da03fa587c9c661d6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_6c1fdc16694eaccc2bf651e6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.918000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.855000px;}
.ls7{letter-spacing:-1.887000px;}
.lsf{letter-spacing:-0.570000px;}
.lse{letter-spacing:-0.285000px;}
.ls10{letter-spacing:-0.171000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000252px;}
.ls4{letter-spacing:0.165981px;}
.ls0{letter-spacing:0.285000px;}
.ls6{letter-spacing:0.561000px;}
.ls1{letter-spacing:0.570000px;}
.ls5{letter-spacing:0.855000px;}
.lsc{letter-spacing:1.377000px;}
.ls3{letter-spacing:1.680000px;}
.lsa{letter-spacing:1.836000px;}
.ls8{letter-spacing:15.300000px;}
.lsd{letter-spacing:16.677000px;}
.lsb{letter-spacing:17.136000px;}
.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;}
}
.wsa9{word-spacing:-14.718000px;}
.ws76{word-spacing:-12.036000px;}
.ws15{word-spacing:-11.685000px;}
.ws2{word-spacing:-11.628000px;}
.ws77{word-spacing:-11.577000px;}
.wsa8{word-spacing:-11.400000px;}
.ws1{word-spacing:-11.343000px;}
.ws0{word-spacing:-11.058000px;}
.wsaa{word-spacing:-10.887000px;}
.ws16{word-spacing:-10.761000px;}
.ws3e{word-spacing:-10.200000px;}
.ws2b{word-spacing:-8.007000px;}
.ws2a{word-spacing:-6.646200px;}
.wsb1{word-spacing:-3.135000px;}
.wsa3{word-spacing:-3.078000px;}
.wsae{word-spacing:-3.021000px;}
.ws6e{word-spacing:-2.565000px;}
.ws6b{word-spacing:-2.394000px;}
.ws2f{word-spacing:-2.109000px;}
.ws51{word-spacing:-2.052000px;}
.ws98{word-spacing:-1.995000px;}
.ws25{word-spacing:-1.938000px;}
.ws57{word-spacing:-1.881000px;}
.ws3f{word-spacing:-1.824000px;}
.ws78{word-spacing:-1.710000px;}
.ws74{word-spacing:-1.653000px;}
.ws17{word-spacing:-1.596000px;}
.ws1a{word-spacing:-1.425000px;}
.ws97{word-spacing:-1.368000px;}
.ws79{word-spacing:-1.311000px;}
.ws95{word-spacing:-1.254000px;}
.ws71{word-spacing:-1.197000px;}
.ws13{word-spacing:-1.083000px;}
.ws6c{word-spacing:-1.026000px;}
.ws48{word-spacing:-0.969000px;}
.ws39{word-spacing:-0.918000px;}
.ws27{word-spacing:-0.855000px;}
.ws54{word-spacing:-0.798000px;}
.ws7e{word-spacing:-0.741000px;}
.ws6{word-spacing:-0.684000px;}
.ws75{word-spacing:-0.627000px;}
.ws8{word-spacing:-0.570000px;}
.ws52{word-spacing:-0.513000px;}
.ws4f{word-spacing:-0.456000px;}
.ws4e{word-spacing:-0.408000px;}
.ws10{word-spacing:-0.399000px;}
.ws4c{word-spacing:-0.342000px;}
.wsa{word-spacing:-0.285000px;}
.ws64{word-spacing:-0.228000px;}
.ws38{word-spacing:-0.114000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:0.114000px;}
.ws7{word-spacing:0.228000px;}
.ws8e{word-spacing:0.285000px;}
.ws2c{word-spacing:0.342000px;}
.ws37{word-spacing:0.399000px;}
.ws43{word-spacing:0.456000px;}
.wsa1{word-spacing:0.513000px;}
.ws92{word-spacing:0.570000px;}
.ws56{word-spacing:0.627000px;}
.ws1d{word-spacing:0.684000px;}
.ws53{word-spacing:0.741000px;}
.ws81{word-spacing:0.798000px;}
.ws90{word-spacing:0.855000px;}
.ws2d{word-spacing:0.912000px;}
.ws5e{word-spacing:0.969000px;}
.ws34{word-spacing:1.026000px;}
.ws86{word-spacing:1.083000px;}
.ws1e{word-spacing:1.140000px;}
.ws85{word-spacing:1.197000px;}
.ws36{word-spacing:1.254000px;}
.ws67{word-spacing:1.311000px;}
.ws70{word-spacing:1.368000px;}
.ws11{word-spacing:1.425000px;}
.ws4{word-spacing:1.482000px;}
.ws63{word-spacing:1.539000px;}
.ws9{word-spacing:1.653000px;}
.ws6f{word-spacing:1.710000px;}
.ws8f{word-spacing:1.767000px;}
.ws3d{word-spacing:1.785000px;}
.ws82{word-spacing:1.824000px;}
.ws3c{word-spacing:1.836000px;}
.ws7f{word-spacing:1.881000px;}
.ws3a{word-spacing:1.887000px;}
.ws35{word-spacing:1.938000px;}
.ws1c{word-spacing:1.995000px;}
.ws6d{word-spacing:2.052000px;}
.ws12{word-spacing:2.109000px;}
.ws8d{word-spacing:2.166000px;}
.ws96{word-spacing:2.223000px;}
.wsf{word-spacing:2.280000px;}
.ws31{word-spacing:2.337000px;}
.ws2e{word-spacing:2.394000px;}
.ws91{word-spacing:2.451000px;}
.ws60{word-spacing:2.508000px;}
.ws26{word-spacing:2.565000px;}
.wsa0{word-spacing:2.622000px;}
.ws80{word-spacing:2.736000px;}
.ws58{word-spacing:2.793000px;}
.ws49{word-spacing:2.850000px;}
.ws69{word-spacing:2.907000px;}
.ws68{word-spacing:2.964000px;}
.wse{word-spacing:3.021000px;}
.ws42{word-spacing:3.078000px;}
.ws45{word-spacing:3.135000px;}
.ws9a{word-spacing:3.306000px;}
.ws8b{word-spacing:3.363000px;}
.ws22{word-spacing:3.477000px;}
.ws18{word-spacing:3.534000px;}
.wsb6{word-spacing:3.591000px;}
.ws5f{word-spacing:3.648000px;}
.ws73{word-spacing:3.762000px;}
.ws33{word-spacing:3.819000px;}
.ws19{word-spacing:3.933000px;}
.ws32{word-spacing:3.990000px;}
.ws84{word-spacing:4.047000px;}
.ws23{word-spacing:4.104000px;}
.ws55{word-spacing:4.161000px;}
.ws9b{word-spacing:4.218000px;}
.ws89{word-spacing:4.275000px;}
.ws62{word-spacing:4.332000px;}
.ws4b{word-spacing:4.389000px;}
.ws99{word-spacing:4.446000px;}
.ws94{word-spacing:4.503000px;}
.wsa2{word-spacing:4.560000px;}
.ws7b{word-spacing:4.617000px;}
.wsb0{word-spacing:4.731000px;}
.ws4d{word-spacing:4.788000px;}
.ws5{word-spacing:4.902000px;}
.ws46{word-spacing:5.016000px;}
.ws40{word-spacing:5.073000px;}
.ws20{word-spacing:5.130000px;}
.ws66{word-spacing:5.187000px;}
.wsb{word-spacing:5.244000px;}
.ws5a{word-spacing:5.358000px;}
.ws28{word-spacing:5.415000px;}
.ws4a{word-spacing:5.472000px;}
.ws83{word-spacing:5.529000px;}
.ws8a{word-spacing:5.586000px;}
.ws5d{word-spacing:5.643000px;}
.ws44{word-spacing:5.700000px;}
.ws3b{word-spacing:5.712000px;}
.wsd{word-spacing:5.871000px;}
.wsab{word-spacing:5.985000px;}
.ws50{word-spacing:6.099000px;}
.ws9c{word-spacing:6.156000px;}
.ws30{word-spacing:6.213000px;}
.ws72{word-spacing:6.270000px;}
.ws7d{word-spacing:6.327000px;}
.wsb5{word-spacing:6.384000px;}
.ws59{word-spacing:6.498000px;}
.ws21{word-spacing:6.669000px;}
.wsad{word-spacing:6.783000px;}
.ws41{word-spacing:6.840000px;}
.ws1f{word-spacing:6.954000px;}
.wsac{word-spacing:7.011000px;}
.ws24{word-spacing:7.467000px;}
.ws65{word-spacing:7.581000px;}
.wsa7{word-spacing:7.638000px;}
.wsa5{word-spacing:7.695000px;}
.ws7c{word-spacing:7.752000px;}
.ws87{word-spacing:7.809000px;}
.ws93{word-spacing:7.923000px;}
.ws5c{word-spacing:8.208000px;}
.wsa6{word-spacing:8.265000px;}
.wsc{word-spacing:8.607000px;}
.ws5b{word-spacing:8.778000px;}
.ws8c{word-spacing:8.892000px;}
.ws9f{word-spacing:8.949000px;}
.ws29{word-spacing:8.976000px;}
.ws6a{word-spacing:9.405000px;}
.ws88{word-spacing:9.576000px;}
.wsaf{word-spacing:10.146000px;}
.ws9e{word-spacing:10.602000px;}
.wsa4{word-spacing:10.659000px;}
.ws9d{word-spacing:11.172000px;}
.ws7a{word-spacing:12.027000px;}
.wsb2{word-spacing:12.483000px;}
.ws14{word-spacing:14.763000px;}
.ws61{word-spacing:18.012000px;}
.wsb3{word-spacing:22.686000px;}
.wsb4{word-spacing:27.075000px;}
.ws47{word-spacing:95.982000px;}
._b{margin-left:-15.222000px;}
._8{margin-left:-11.745000px;}
._15{margin-left:-4.878900px;}
._4{margin-left:-3.762000px;}
._a{margin-left:-2.682000px;}
._0{margin-left:-1.680000px;}
._5{width:1.587300px;}
._9{width:2.716500px;}
._2{width:3.801900px;}
._6{width:5.192700px;}
._7{width:6.555000px;}
._1{width:7.991400px;}
._3{width:9.450600px;}
._16{width:12.882000px;}
._d{width:16.218000px;}
._c{width:18.282000px;}
._13{width:44.778000px;}
._14{width:72.903000px;}
._f{width:104.688000px;}
._e{width:199.053000px;}
._12{width:201.804000px;}
._10{width:250.104000px;}
._11{width:262.188000px;}
.fc2{color:rgb(240,131,0);}
.fc1{color:rgb(247,171,90);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.231000px;}
.fs3{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:36.654600px;}
.y1{bottom:36.795300px;}
.y47{bottom:85.039350px;}
.y6b{bottom:85.039500px;}
.ydb{bottom:85.039650px;}
.y21{bottom:85.097850px;}
.yf5{bottom:86.431050px;}
.y119{bottom:87.724050px;}
.y100{bottom:88.378050px;}
.yb8{bottom:89.462550px;}
.y8a{bottom:90.032250px;}
.yd6{bottom:90.267900px;}
.y46{bottom:100.339350px;}
.y6a{bottom:100.339500px;}
.yda{bottom:100.339650px;}
.y20{bottom:103.095600px;}
.yf4{bottom:104.428800px;}
.y118{bottom:104.980800px;}
.yff{bottom:106.375800px;}
.yb7{bottom:107.460300px;}
.y89{bottom:108.030000px;}
.yd5{bottom:108.265650px;}
.y45{bottom:115.639350px;}
.y69{bottom:115.639500px;}
.yd9{bottom:115.639650px;}
.y1f{bottom:121.093350px;}
.y117{bottom:122.237550px;}
.yf3{bottom:122.426550px;}
.yfe{bottom:124.373550px;}
.yb6{bottom:125.458050px;}
.y88{bottom:126.027750px;}
.yd4{bottom:126.263400px;}
.y68{bottom:130.939500px;}
.yd8{bottom:130.939650px;}
.y1e{bottom:139.091100px;}
.y116{bottom:139.494300px;}
.yf2{bottom:140.424300px;}
.yfd{bottom:142.371300px;}
.yb5{bottom:143.455800px;}
.y87{bottom:144.025500px;}
.yd3{bottom:144.261150px;}
.y67{bottom:146.239500px;}
.y115{bottom:156.751050px;}
.y1d{bottom:157.088850px;}
.yf1{bottom:158.422050px;}
.yfc{bottom:160.369050px;}
.yb4{bottom:161.453550px;}
.y86{bottom:162.023250px;}
.yd2{bottom:162.258900px;}
.y114{bottom:174.007800px;}
.y1c{bottom:175.086600px;}
.yf0{bottom:176.419800px;}
.yfb{bottom:178.366800px;}
.y44{bottom:179.419800px;}
.yb3{bottom:179.451300px;}
.y85{bottom:180.021000px;}
.yd1{bottom:180.256650px;}
.y113{bottom:191.264550px;}
.ya1{bottom:192.300600px;}
.y1b{bottom:193.084350px;}
.yef{bottom:194.417550px;}
.yfa{bottom:196.364550px;}
.yd7{bottom:197.381550px;}
.y43{bottom:197.417550px;}
.yb2{bottom:197.449050px;}
.y84{bottom:198.018750px;}
.yd0{bottom:198.254400px;}
.y112{bottom:208.521300px;}
.y1a{bottom:211.082100px;}
.yc4{bottom:212.401200px;}
.yee{bottom:212.415300px;}
.y66{bottom:214.308300px;}
.yf9{bottom:214.362300px;}
.y42{bottom:215.415300px;}
.yb1{bottom:215.446800px;}
.y83{bottom:216.016500px;}
.ycf{bottom:216.252150px;}
.ya0{bottom:218.931000px;}
.y111{bottom:225.778050px;}
.y19{bottom:229.079850px;}
.yc3{bottom:230.398950px;}
.yed{bottom:230.413050px;}
.y65{bottom:232.306050px;}
.yf8{bottom:232.360050px;}
.y41{bottom:233.413050px;}
.yb0{bottom:233.444550px;}
.y82{bottom:234.014250px;}
.yce{bottom:234.249900px;}
.y110{bottom:243.034800px;}
.y18{bottom:247.077600px;}
.yc2{bottom:248.396700px;}
.yec{bottom:248.410800px;}
.y9f{bottom:248.689500px;}
.y64{bottom:250.303800px;}
.yf7{bottom:250.357800px;}
.y40{bottom:251.410800px;}
.yaf{bottom:251.442300px;}
.y81{bottom:252.012000px;}
.ycd{bottom:252.247650px;}
.y10f{bottom:260.291550px;}
.y17{bottom:265.075350px;}
.yc1{bottom:266.394450px;}
.yeb{bottom:266.408550px;}
.y63{bottom:268.301550px;}
.yf6{bottom:268.355550px;}
.y3f{bottom:269.408550px;}
.yae{bottom:269.440050px;}
.y80{bottom:270.009750px;}
.ycc{bottom:270.245400px;}
.y10e{bottom:277.548300px;}
.y9e{bottom:278.448000px;}
.y16{bottom:283.073100px;}
.yc0{bottom:284.392200px;}
.yea{bottom:284.406300px;}
.y62{bottom:286.353300px;}
.y3e{bottom:287.406300px;}
.yad{bottom:287.437800px;}
.y7f{bottom:288.007500px;}
.ycb{bottom:288.243150px;}
.y10d{bottom:294.805050px;}
.y15{bottom:301.070850px;}
.ybf{bottom:302.389950px;}
.ye9{bottom:302.404050px;}
.y61{bottom:304.351050px;}
.y3d{bottom:305.404050px;}
.yac{bottom:305.435550px;}
.y7e{bottom:306.005250px;}
.yca{bottom:306.240900px;}
.y9d{bottom:308.206500px;}
.y10c{bottom:312.061800px;}
.y14{bottom:319.068600px;}
.ybe{bottom:320.387700px;}
.ye8{bottom:320.401800px;}
.y60{bottom:322.348800px;}
.y3c{bottom:323.401800px;}
.yab{bottom:323.433300px;}
.yc9{bottom:324.238650px;}
.y9c{bottom:324.705000px;}
.y10b{bottom:329.318550px;}
.y13{bottom:337.066350px;}
.ybd{bottom:338.385450px;}
.ye7{bottom:338.399550px;}
.y5f{bottom:340.346550px;}
.y3b{bottom:341.399550px;}
.yaa{bottom:341.431050px;}
.y7d{bottom:342.005250px;}
.yc8{bottom:342.236400px;}
.y10a{bottom:346.575300px;}
.y9b{bottom:354.463500px;}
.y12{bottom:355.064100px;}
.ybc{bottom:356.383200px;}
.ye6{bottom:356.397300px;}
.y5e{bottom:358.344300px;}
.y3a{bottom:359.397300px;}
.ya9{bottom:359.428800px;}
.yc7{bottom:360.234150px;}
.y109{bottom:363.832050px;}
.y9a{bottom:370.962000px;}
.y7c{bottom:372.021300px;}
.y11{bottom:373.061850px;}
.ybb{bottom:374.380950px;}
.ye5{bottom:374.395050px;}
.y5d{bottom:376.342050px;}
.y39{bottom:377.395050px;}
.ya8{bottom:377.426550px;}
.yc6{bottom:378.231900px;}
.y108{bottom:381.088800px;}
.y7b{bottom:388.519800px;}
.y10{bottom:391.059600px;}
.yba{bottom:392.378700px;}
.ye4{bottom:392.392800px;}
.y5c{bottom:394.339800px;}
.y38{bottom:395.392800px;}
.ya7{bottom:395.424300px;}
.yc5{bottom:396.229650px;}
.y107{bottom:398.345550px;}
.y99{bottom:400.720500px;}
.yf{bottom:409.057350px;}
.ye3{bottom:410.390550px;}
.y5b{bottom:412.337550px;}
.y37{bottom:413.390550px;}
.ya6{bottom:413.422050px;}
.y106{bottom:415.602300px;}
.y7a{bottom:425.086800px;}
.ye{bottom:427.055100px;}
.yb9{bottom:428.378700px;}
.ye2{bottom:428.388300px;}
.y5a{bottom:430.335300px;}
.y98{bottom:430.479000px;}
.y36{bottom:431.388300px;}
.ya5{bottom:431.419800px;}
.y105{bottom:432.859050px;}
.y79{bottom:441.585300px;}
.yd{bottom:445.052850px;}
.ye1{bottom:446.386050px;}
.y97{bottom:446.977500px;}
.y59{bottom:448.333050px;}
.y35{bottom:449.386050px;}
.ya4{bottom:449.417550px;}
.y104{bottom:450.115800px;}
.yc{bottom:463.050600px;}
.ye0{bottom:464.383800px;}
.y58{bottom:466.330800px;}
.y103{bottom:467.372550px;}
.y34{bottom:467.383800px;}
.ya3{bottom:467.415300px;}
.y96{bottom:476.736000px;}
.y78{bottom:478.152300px;}
.yb{bottom:481.048350px;}
.ydf{bottom:482.381550px;}
.y57{bottom:484.328550px;}
.y102{bottom:484.629300px;}
.y33{bottom:485.381550px;}
.ya2{bottom:485.413050px;}
.y77{bottom:494.650800px;}
.ya{bottom:499.046100px;}
.yde{bottom:500.379300px;}
.y56{bottom:502.326300px;}
.y32{bottom:503.410800px;}
.y95{bottom:506.494500px;}
.y76{bottom:511.149300px;}
.y9{bottom:517.043850px;}
.y101{bottom:519.879300px;}
.y55{bottom:520.324050px;}
.y31{bottom:521.408550px;}
.y75{bottom:527.647800px;}
.y8{bottom:535.041600px;}
.ydd{bottom:536.376300px;}
.y54{bottom:538.321800px;}
.y30{bottom:539.406300px;}
.y94{bottom:540.879300px;}
.y74{bottom:544.146300px;}
.y7{bottom:553.039350px;}
.ydc{bottom:555.879300px;}
.y53{bottom:556.319550px;}
.y2f{bottom:557.404050px;}
.y52{bottom:574.317300px;}
.y93{bottom:575.399550px;}
.y2e{bottom:575.401800px;}
.y73{bottom:580.713300px;}
.y6{bottom:590.539350px;}
.y51{bottom:592.315050px;}
.y92{bottom:593.397300px;}
.y2d{bottom:593.399550px;}
.y72{bottom:597.211800px;}
.y5{bottom:608.539350px;}
.y50{bottom:610.312800px;}
.y91{bottom:611.395050px;}
.y2c{bottom:611.397300px;}
.y71{bottom:613.710300px;}
.y4f{bottom:628.310550px;}
.y90{bottom:629.392800px;}
.y2b{bottom:629.395050px;}
.y120{bottom:634.582050px;}
.y4e{bottom:646.308300px;}
.y8f{bottom:647.390550px;}
.y2a{bottom:647.392800px;}
.y70{bottom:650.277300px;}
.y11f{bottom:651.838800px;}
.y4d{bottom:664.306050px;}
.y8e{bottom:665.388300px;}
.y29{bottom:665.390550px;}
.y6f{bottom:666.775800px;}
.y11e{bottom:669.095550px;}
.y4c{bottom:682.303800px;}
.y8d{bottom:683.386050px;}
.y28{bottom:683.388300px;}
.y11d{bottom:686.352300px;}
.y4b{bottom:700.301550px;}
.y8c{bottom:701.383800px;}
.y27{bottom:701.386050px;}
.y6e{bottom:703.342800px;}
.y11c{bottom:703.609050px;}
.y4a{bottom:718.299300px;}
.y6d{bottom:718.642800px;}
.y8b{bottom:719.381550px;}
.y26{bottom:719.383800px;}
.y11b{bottom:720.865800px;}
.y4{bottom:733.365150px;}
.y25{bottom:737.381550px;}
.y11a{bottom:738.122550px;}
.y49{bottom:754.299300px;}
.y24{bottom:755.379300px;}
.y6c{bottom:756.429300px;}
.y3{bottom:761.862150px;}
.y2{bottom:790.359150px;}
.y48{bottom:832.687200px;}
.y23{bottom:833.325000px;}
.h2{height:33.991699px;}
.hc{height:36.567000px;}
.h7{height:37.485000px;}
.h8{height:37.632000px;}
.ha{height:38.913000px;}
.hb{height:43.008000px;}
.h6{height:45.696000px;}
.h5{height:51.072000px;}
.h9{height:57.222000px;}
.h3{height:61.740000px;}
.h4{height:62.160000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:637.500000px;}
.w0{width:637.795500px;}
.x0{left:0.000000px;}
.x8{left:85.039350px;}
.xf{left:89.683200px;}
.x5{left:93.543300px;}
.x18{left:97.795350px;}
.x9{left:102.053850px;}
.x6{left:110.557800px;}
.xc{left:113.772450px;}
.x14{left:116.214750px;}
.x15{left:119.044200px;}
.x7{left:122.031450px;}
.xd{left:129.131700px;}
.x16{left:144.551700px;}
.x2{left:165.826800px;}
.xb{left:172.198500px;}
.x12{left:182.073150px;}
.x13{left:219.400500px;}
.x10{left:242.759700px;}
.x1{left:315.180150px;}
.x11{left:395.848950px;}
.x3{left:409.744650px;}
.xe{left:426.066450px;}
.x4{left:433.455750px;}
.xa{left:500.846550px;}
.x17{left:502.376400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.760000pt;}
.ls7{letter-spacing:-1.677333pt;}
.lsf{letter-spacing:-0.506667pt;}
.lse{letter-spacing:-0.253333pt;}
.ls10{letter-spacing:-0.152000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000224pt;}
.ls4{letter-spacing:0.147539pt;}
.ls0{letter-spacing:0.253333pt;}
.ls6{letter-spacing:0.498667pt;}
.ls1{letter-spacing:0.506667pt;}
.ls5{letter-spacing:0.760000pt;}
.lsc{letter-spacing:1.224000pt;}
.ls3{letter-spacing:1.493333pt;}
.lsa{letter-spacing:1.632000pt;}
.ls8{letter-spacing:13.600000pt;}
.lsd{letter-spacing:14.824000pt;}
.lsb{letter-spacing:15.232000pt;}
.wsa9{word-spacing:-13.082667pt;}
.ws76{word-spacing:-10.698667pt;}
.ws15{word-spacing:-10.386667pt;}
.ws2{word-spacing:-10.336000pt;}
.ws77{word-spacing:-10.290667pt;}
.wsa8{word-spacing:-10.133333pt;}
.ws1{word-spacing:-10.082667pt;}
.ws0{word-spacing:-9.829333pt;}
.wsaa{word-spacing:-9.677333pt;}
.ws16{word-spacing:-9.565333pt;}
.ws3e{word-spacing:-9.066667pt;}
.ws2b{word-spacing:-7.117333pt;}
.ws2a{word-spacing:-5.907733pt;}
.wsb1{word-spacing:-2.786667pt;}
.wsa3{word-spacing:-2.736000pt;}
.wsae{word-spacing:-2.685333pt;}
.ws6e{word-spacing:-2.280000pt;}
.ws6b{word-spacing:-2.128000pt;}
.ws2f{word-spacing:-1.874667pt;}
.ws51{word-spacing:-1.824000pt;}
.ws98{word-spacing:-1.773333pt;}
.ws25{word-spacing:-1.722667pt;}
.ws57{word-spacing:-1.672000pt;}
.ws3f{word-spacing:-1.621333pt;}
.ws78{word-spacing:-1.520000pt;}
.ws74{word-spacing:-1.469333pt;}
.ws17{word-spacing:-1.418667pt;}
.ws1a{word-spacing:-1.266667pt;}
.ws97{word-spacing:-1.216000pt;}
.ws79{word-spacing:-1.165333pt;}
.ws95{word-spacing:-1.114667pt;}
.ws71{word-spacing:-1.064000pt;}
.ws13{word-spacing:-0.962667pt;}
.ws6c{word-spacing:-0.912000pt;}
.ws48{word-spacing:-0.861333pt;}
.ws39{word-spacing:-0.816000pt;}
.ws27{word-spacing:-0.760000pt;}
.ws54{word-spacing:-0.709333pt;}
.ws7e{word-spacing:-0.658667pt;}
.ws6{word-spacing:-0.608000pt;}
.ws75{word-spacing:-0.557333pt;}
.ws8{word-spacing:-0.506667pt;}
.ws52{word-spacing:-0.456000pt;}
.ws4f{word-spacing:-0.405333pt;}
.ws4e{word-spacing:-0.362667pt;}
.ws10{word-spacing:-0.354667pt;}
.ws4c{word-spacing:-0.304000pt;}
.wsa{word-spacing:-0.253333pt;}
.ws64{word-spacing:-0.202667pt;}
.ws38{word-spacing:-0.101333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.101333pt;}
.ws7{word-spacing:0.202667pt;}
.ws8e{word-spacing:0.253333pt;}
.ws2c{word-spacing:0.304000pt;}
.ws37{word-spacing:0.354667pt;}
.ws43{word-spacing:0.405333pt;}
.wsa1{word-spacing:0.456000pt;}
.ws92{word-spacing:0.506667pt;}
.ws56{word-spacing:0.557333pt;}
.ws1d{word-spacing:0.608000pt;}
.ws53{word-spacing:0.658667pt;}
.ws81{word-spacing:0.709333pt;}
.ws90{word-spacing:0.760000pt;}
.ws2d{word-spacing:0.810667pt;}
.ws5e{word-spacing:0.861333pt;}
.ws34{word-spacing:0.912000pt;}
.ws86{word-spacing:0.962667pt;}
.ws1e{word-spacing:1.013333pt;}
.ws85{word-spacing:1.064000pt;}
.ws36{word-spacing:1.114667pt;}
.ws67{word-spacing:1.165333pt;}
.ws70{word-spacing:1.216000pt;}
.ws11{word-spacing:1.266667pt;}
.ws4{word-spacing:1.317333pt;}
.ws63{word-spacing:1.368000pt;}
.ws9{word-spacing:1.469333pt;}
.ws6f{word-spacing:1.520000pt;}
.ws8f{word-spacing:1.570667pt;}
.ws3d{word-spacing:1.586667pt;}
.ws82{word-spacing:1.621333pt;}
.ws3c{word-spacing:1.632000pt;}
.ws7f{word-spacing:1.672000pt;}
.ws3a{word-spacing:1.677333pt;}
.ws35{word-spacing:1.722667pt;}
.ws1c{word-spacing:1.773333pt;}
.ws6d{word-spacing:1.824000pt;}
.ws12{word-spacing:1.874667pt;}
.ws8d{word-spacing:1.925333pt;}
.ws96{word-spacing:1.976000pt;}
.wsf{word-spacing:2.026667pt;}
.ws31{word-spacing:2.077333pt;}
.ws2e{word-spacing:2.128000pt;}
.ws91{word-spacing:2.178667pt;}
.ws60{word-spacing:2.229333pt;}
.ws26{word-spacing:2.280000pt;}
.wsa0{word-spacing:2.330667pt;}
.ws80{word-spacing:2.432000pt;}
.ws58{word-spacing:2.482667pt;}
.ws49{word-spacing:2.533333pt;}
.ws69{word-spacing:2.584000pt;}
.ws68{word-spacing:2.634667pt;}
.wse{word-spacing:2.685333pt;}
.ws42{word-spacing:2.736000pt;}
.ws45{word-spacing:2.786667pt;}
.ws9a{word-spacing:2.938667pt;}
.ws8b{word-spacing:2.989333pt;}
.ws22{word-spacing:3.090667pt;}
.ws18{word-spacing:3.141333pt;}
.wsb6{word-spacing:3.192000pt;}
.ws5f{word-spacing:3.242667pt;}
.ws73{word-spacing:3.344000pt;}
.ws33{word-spacing:3.394667pt;}
.ws19{word-spacing:3.496000pt;}
.ws32{word-spacing:3.546667pt;}
.ws84{word-spacing:3.597333pt;}
.ws23{word-spacing:3.648000pt;}
.ws55{word-spacing:3.698667pt;}
.ws9b{word-spacing:3.749333pt;}
.ws89{word-spacing:3.800000pt;}
.ws62{word-spacing:3.850667pt;}
.ws4b{word-spacing:3.901333pt;}
.ws99{word-spacing:3.952000pt;}
.ws94{word-spacing:4.002667pt;}
.wsa2{word-spacing:4.053333pt;}
.ws7b{word-spacing:4.104000pt;}
.wsb0{word-spacing:4.205333pt;}
.ws4d{word-spacing:4.256000pt;}
.ws5{word-spacing:4.357333pt;}
.ws46{word-spacing:4.458667pt;}
.ws40{word-spacing:4.509333pt;}
.ws20{word-spacing:4.560000pt;}
.ws66{word-spacing:4.610667pt;}
.wsb{word-spacing:4.661333pt;}
.ws5a{word-spacing:4.762667pt;}
.ws28{word-spacing:4.813333pt;}
.ws4a{word-spacing:4.864000pt;}
.ws83{word-spacing:4.914667pt;}
.ws8a{word-spacing:4.965333pt;}
.ws5d{word-spacing:5.016000pt;}
.ws44{word-spacing:5.066667pt;}
.ws3b{word-spacing:5.077333pt;}
.wsd{word-spacing:5.218667pt;}
.wsab{word-spacing:5.320000pt;}
.ws50{word-spacing:5.421333pt;}
.ws9c{word-spacing:5.472000pt;}
.ws30{word-spacing:5.522667pt;}
.ws72{word-spacing:5.573333pt;}
.ws7d{word-spacing:5.624000pt;}
.wsb5{word-spacing:5.674667pt;}
.ws59{word-spacing:5.776000pt;}
.ws21{word-spacing:5.928000pt;}
.wsad{word-spacing:6.029333pt;}
.ws41{word-spacing:6.080000pt;}
.ws1f{word-spacing:6.181333pt;}
.wsac{word-spacing:6.232000pt;}
.ws24{word-spacing:6.637333pt;}
.ws65{word-spacing:6.738667pt;}
.wsa7{word-spacing:6.789333pt;}
.wsa5{word-spacing:6.840000pt;}
.ws7c{word-spacing:6.890667pt;}
.ws87{word-spacing:6.941333pt;}
.ws93{word-spacing:7.042667pt;}
.ws5c{word-spacing:7.296000pt;}
.wsa6{word-spacing:7.346667pt;}
.wsc{word-spacing:7.650667pt;}
.ws5b{word-spacing:7.802667pt;}
.ws8c{word-spacing:7.904000pt;}
.ws9f{word-spacing:7.954667pt;}
.ws29{word-spacing:7.978667pt;}
.ws6a{word-spacing:8.360000pt;}
.ws88{word-spacing:8.512000pt;}
.wsaf{word-spacing:9.018667pt;}
.ws9e{word-spacing:9.424000pt;}
.wsa4{word-spacing:9.474667pt;}
.ws9d{word-spacing:9.930667pt;}
.ws7a{word-spacing:10.690667pt;}
.wsb2{word-spacing:11.096000pt;}
.ws14{word-spacing:13.122667pt;}
.ws61{word-spacing:16.010667pt;}
.wsb3{word-spacing:20.165333pt;}
.wsb4{word-spacing:24.066667pt;}
.ws47{word-spacing:85.317333pt;}
._b{margin-left:-13.530667pt;}
._8{margin-left:-10.440000pt;}
._15{margin-left:-4.336800pt;}
._4{margin-left:-3.344000pt;}
._a{margin-left:-2.384000pt;}
._0{margin-left:-1.493333pt;}
._5{width:1.410933pt;}
._9{width:2.414667pt;}
._2{width:3.379467pt;}
._6{width:4.615733pt;}
._7{width:5.826667pt;}
._1{width:7.103467pt;}
._3{width:8.400533pt;}
._16{width:11.450667pt;}
._d{width:14.416000pt;}
._c{width:16.250667pt;}
._13{width:39.802667pt;}
._14{width:64.802667pt;}
._f{width:93.056000pt;}
._e{width:176.936000pt;}
._12{width:179.381333pt;}
._10{width:222.314667pt;}
._11{width:233.056000pt;}
.fs4{font-size:29.538667pt;}
.fs3{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:32.581867pt;}
.y1{bottom:32.706933pt;}
.y47{bottom:75.590533pt;}
.y6b{bottom:75.590667pt;}
.ydb{bottom:75.590800pt;}
.y21{bottom:75.642533pt;}
.yf5{bottom:76.827600pt;}
.y119{bottom:77.976933pt;}
.y100{bottom:78.558267pt;}
.yb8{bottom:79.522267pt;}
.y8a{bottom:80.028667pt;}
.yd6{bottom:80.238133pt;}
.y46{bottom:89.190533pt;}
.y6a{bottom:89.190667pt;}
.yda{bottom:89.190800pt;}
.y20{bottom:91.640533pt;}
.yf4{bottom:92.825600pt;}
.y118{bottom:93.316267pt;}
.yff{bottom:94.556267pt;}
.yb7{bottom:95.520267pt;}
.y89{bottom:96.026667pt;}
.yd5{bottom:96.236133pt;}
.y45{bottom:102.790533pt;}
.y69{bottom:102.790667pt;}
.yd9{bottom:102.790800pt;}
.y1f{bottom:107.638533pt;}
.y117{bottom:108.655600pt;}
.yf3{bottom:108.823600pt;}
.yfe{bottom:110.554267pt;}
.yb6{bottom:111.518267pt;}
.y88{bottom:112.024667pt;}
.yd4{bottom:112.234133pt;}
.y68{bottom:116.390667pt;}
.yd8{bottom:116.390800pt;}
.y1e{bottom:123.636533pt;}
.y116{bottom:123.994933pt;}
.yf2{bottom:124.821600pt;}
.yfd{bottom:126.552267pt;}
.yb5{bottom:127.516267pt;}
.y87{bottom:128.022667pt;}
.yd3{bottom:128.232133pt;}
.y67{bottom:129.990667pt;}
.y115{bottom:139.334267pt;}
.y1d{bottom:139.634533pt;}
.yf1{bottom:140.819600pt;}
.yfc{bottom:142.550267pt;}
.yb4{bottom:143.514267pt;}
.y86{bottom:144.020667pt;}
.yd2{bottom:144.230133pt;}
.y114{bottom:154.673600pt;}
.y1c{bottom:155.632533pt;}
.yf0{bottom:156.817600pt;}
.yfb{bottom:158.548267pt;}
.y44{bottom:159.484267pt;}
.yb3{bottom:159.512267pt;}
.y85{bottom:160.018667pt;}
.yd1{bottom:160.228133pt;}
.y113{bottom:170.012933pt;}
.ya1{bottom:170.933867pt;}
.y1b{bottom:171.630533pt;}
.yef{bottom:172.815600pt;}
.yfa{bottom:174.546267pt;}
.yd7{bottom:175.450267pt;}
.y43{bottom:175.482267pt;}
.yb2{bottom:175.510267pt;}
.y84{bottom:176.016667pt;}
.yd0{bottom:176.226133pt;}
.y112{bottom:185.352267pt;}
.y1a{bottom:187.628533pt;}
.yc4{bottom:188.801067pt;}
.yee{bottom:188.813600pt;}
.y66{bottom:190.496267pt;}
.yf9{bottom:190.544267pt;}
.y42{bottom:191.480267pt;}
.yb1{bottom:191.508267pt;}
.y83{bottom:192.014667pt;}
.ycf{bottom:192.224133pt;}
.ya0{bottom:194.605333pt;}
.y111{bottom:200.691600pt;}
.y19{bottom:203.626533pt;}
.yc3{bottom:204.799067pt;}
.yed{bottom:204.811600pt;}
.y65{bottom:206.494267pt;}
.yf8{bottom:206.542267pt;}
.y41{bottom:207.478267pt;}
.yb0{bottom:207.506267pt;}
.y82{bottom:208.012667pt;}
.yce{bottom:208.222133pt;}
.y110{bottom:216.030933pt;}
.y18{bottom:219.624533pt;}
.yc2{bottom:220.797067pt;}
.yec{bottom:220.809600pt;}
.y9f{bottom:221.057333pt;}
.y64{bottom:222.492267pt;}
.yf7{bottom:222.540267pt;}
.y40{bottom:223.476267pt;}
.yaf{bottom:223.504267pt;}
.y81{bottom:224.010667pt;}
.ycd{bottom:224.220133pt;}
.y10f{bottom:231.370267pt;}
.y17{bottom:235.622533pt;}
.yc1{bottom:236.795067pt;}
.yeb{bottom:236.807600pt;}
.y63{bottom:238.490267pt;}
.yf6{bottom:238.538267pt;}
.y3f{bottom:239.474267pt;}
.yae{bottom:239.502267pt;}
.y80{bottom:240.008667pt;}
.ycc{bottom:240.218133pt;}
.y10e{bottom:246.709600pt;}
.y9e{bottom:247.509333pt;}
.y16{bottom:251.620533pt;}
.yc0{bottom:252.793067pt;}
.yea{bottom:252.805600pt;}
.y62{bottom:254.536267pt;}
.y3e{bottom:255.472267pt;}
.yad{bottom:255.500267pt;}
.y7f{bottom:256.006667pt;}
.ycb{bottom:256.216133pt;}
.y10d{bottom:262.048933pt;}
.y15{bottom:267.618533pt;}
.ybf{bottom:268.791067pt;}
.ye9{bottom:268.803600pt;}
.y61{bottom:270.534267pt;}
.y3d{bottom:271.470267pt;}
.yac{bottom:271.498267pt;}
.y7e{bottom:272.004667pt;}
.yca{bottom:272.214133pt;}
.y9d{bottom:273.961333pt;}
.y10c{bottom:277.388267pt;}
.y14{bottom:283.616533pt;}
.ybe{bottom:284.789067pt;}
.ye8{bottom:284.801600pt;}
.y60{bottom:286.532267pt;}
.y3c{bottom:287.468267pt;}
.yab{bottom:287.496267pt;}
.yc9{bottom:288.212133pt;}
.y9c{bottom:288.626667pt;}
.y10b{bottom:292.727600pt;}
.y13{bottom:299.614533pt;}
.ybd{bottom:300.787067pt;}
.ye7{bottom:300.799600pt;}
.y5f{bottom:302.530267pt;}
.y3b{bottom:303.466267pt;}
.yaa{bottom:303.494267pt;}
.y7d{bottom:304.004667pt;}
.yc8{bottom:304.210133pt;}
.y10a{bottom:308.066933pt;}
.y9b{bottom:315.078667pt;}
.y12{bottom:315.612533pt;}
.ybc{bottom:316.785067pt;}
.ye6{bottom:316.797600pt;}
.y5e{bottom:318.528267pt;}
.y3a{bottom:319.464267pt;}
.ya9{bottom:319.492267pt;}
.yc7{bottom:320.208133pt;}
.y109{bottom:323.406267pt;}
.y9a{bottom:329.744000pt;}
.y7c{bottom:330.685600pt;}
.y11{bottom:331.610533pt;}
.ybb{bottom:332.783067pt;}
.ye5{bottom:332.795600pt;}
.y5d{bottom:334.526267pt;}
.y39{bottom:335.462267pt;}
.ya8{bottom:335.490267pt;}
.yc6{bottom:336.206133pt;}
.y108{bottom:338.745600pt;}
.y7b{bottom:345.350933pt;}
.y10{bottom:347.608533pt;}
.yba{bottom:348.781067pt;}
.ye4{bottom:348.793600pt;}
.y5c{bottom:350.524267pt;}
.y38{bottom:351.460267pt;}
.ya7{bottom:351.488267pt;}
.yc5{bottom:352.204133pt;}
.y107{bottom:354.084933pt;}
.y99{bottom:356.196000pt;}
.yf{bottom:363.606533pt;}
.ye3{bottom:364.791600pt;}
.y5b{bottom:366.522267pt;}
.y37{bottom:367.458267pt;}
.ya6{bottom:367.486267pt;}
.y106{bottom:369.424267pt;}
.y7a{bottom:377.854933pt;}
.ye{bottom:379.604533pt;}
.yb9{bottom:380.781067pt;}
.ye2{bottom:380.789600pt;}
.y5a{bottom:382.520267pt;}
.y98{bottom:382.648000pt;}
.y36{bottom:383.456267pt;}
.ya5{bottom:383.484267pt;}
.y105{bottom:384.763600pt;}
.y79{bottom:392.520267pt;}
.yd{bottom:395.602533pt;}
.ye1{bottom:396.787600pt;}
.y97{bottom:397.313333pt;}
.y59{bottom:398.518267pt;}
.y35{bottom:399.454267pt;}
.ya4{bottom:399.482267pt;}
.y104{bottom:400.102933pt;}
.yc{bottom:411.600533pt;}
.ye0{bottom:412.785600pt;}
.y58{bottom:414.516267pt;}
.y103{bottom:415.442267pt;}
.y34{bottom:415.452267pt;}
.ya3{bottom:415.480267pt;}
.y96{bottom:423.765333pt;}
.y78{bottom:425.024267pt;}
.yb{bottom:427.598533pt;}
.ydf{bottom:428.783600pt;}
.y57{bottom:430.514267pt;}
.y102{bottom:430.781600pt;}
.y33{bottom:431.450267pt;}
.ya2{bottom:431.478267pt;}
.y77{bottom:439.689600pt;}
.ya{bottom:443.596533pt;}
.yde{bottom:444.781600pt;}
.y56{bottom:446.512267pt;}
.y32{bottom:447.476267pt;}
.y95{bottom:450.217333pt;}
.y76{bottom:454.354933pt;}
.y9{bottom:459.594533pt;}
.y101{bottom:462.114933pt;}
.y55{bottom:462.510267pt;}
.y31{bottom:463.474267pt;}
.y75{bottom:469.020267pt;}
.y8{bottom:475.592533pt;}
.ydd{bottom:476.778933pt;}
.y54{bottom:478.508267pt;}
.y30{bottom:479.472267pt;}
.y94{bottom:480.781600pt;}
.y74{bottom:483.685600pt;}
.y7{bottom:491.590533pt;}
.ydc{bottom:494.114933pt;}
.y53{bottom:494.506267pt;}
.y2f{bottom:495.470267pt;}
.y52{bottom:510.504267pt;}
.y93{bottom:511.466267pt;}
.y2e{bottom:511.468267pt;}
.y73{bottom:516.189600pt;}
.y6{bottom:524.923867pt;}
.y51{bottom:526.502267pt;}
.y92{bottom:527.464267pt;}
.y2d{bottom:527.466267pt;}
.y72{bottom:530.854933pt;}
.y5{bottom:540.923867pt;}
.y50{bottom:542.500267pt;}
.y91{bottom:543.462267pt;}
.y2c{bottom:543.464267pt;}
.y71{bottom:545.520267pt;}
.y4f{bottom:558.498267pt;}
.y90{bottom:559.460267pt;}
.y2b{bottom:559.462267pt;}
.y120{bottom:564.072933pt;}
.y4e{bottom:574.496267pt;}
.y8f{bottom:575.458267pt;}
.y2a{bottom:575.460267pt;}
.y70{bottom:578.024267pt;}
.y11f{bottom:579.412267pt;}
.y4d{bottom:590.494267pt;}
.y8e{bottom:591.456267pt;}
.y29{bottom:591.458267pt;}
.y6f{bottom:592.689600pt;}
.y11e{bottom:594.751600pt;}
.y4c{bottom:606.492267pt;}
.y8d{bottom:607.454267pt;}
.y28{bottom:607.456267pt;}
.y11d{bottom:610.090933pt;}
.y4b{bottom:622.490267pt;}
.y8c{bottom:623.452267pt;}
.y27{bottom:623.454267pt;}
.y6e{bottom:625.193600pt;}
.y11c{bottom:625.430267pt;}
.y4a{bottom:638.488267pt;}
.y6d{bottom:638.793600pt;}
.y8b{bottom:639.450267pt;}
.y26{bottom:639.452267pt;}
.y11b{bottom:640.769600pt;}
.y4{bottom:651.880133pt;}
.y25{bottom:655.450267pt;}
.y11a{bottom:656.108933pt;}
.y49{bottom:670.488267pt;}
.y24{bottom:671.448267pt;}
.y6c{bottom:672.381600pt;}
.y3{bottom:677.210800pt;}
.y2{bottom:702.541467pt;}
.y48{bottom:740.166400pt;}
.y23{bottom:740.733333pt;}
.h2{height:30.214844pt;}
.hc{height:32.504000pt;}
.h7{height:33.320000pt;}
.h8{height:33.450667pt;}
.ha{height:34.589333pt;}
.hb{height:38.229333pt;}
.h6{height:40.618667pt;}
.h5{height:45.397333pt;}
.h9{height:50.864000pt;}
.h3{height:54.880000pt;}
.h4{height:55.253333pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:566.666667pt;}
.w0{width:566.929333pt;}
.x0{left:0.000000pt;}
.x8{left:75.590533pt;}
.xf{left:79.718400pt;}
.x5{left:83.149600pt;}
.x18{left:86.929200pt;}
.x9{left:90.714533pt;}
.x6{left:98.273600pt;}
.xc{left:101.131067pt;}
.x14{left:103.302000pt;}
.x15{left:105.817067pt;}
.x7{left:108.472400pt;}
.xd{left:114.783733pt;}
.x16{left:128.490400pt;}
.x2{left:147.401600pt;}
.xb{left:153.065333pt;}
.x12{left:161.842800pt;}
.x13{left:195.022667pt;}
.x10{left:215.786400pt;}
.x1{left:280.160133pt;}
.x11{left:351.865733pt;}
.x3{left:364.217467pt;}
.xe{left:378.725733pt;}
.x4{left:385.294000pt;}
.xa{left:445.196933pt;}
.x17{left:446.556800pt;}
}




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