
    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_97572b84903a05faaaedf791.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_91873dadcbfdbd7900fb4509.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_109767ba44c540174f49f1cc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_d595adca965095a63802bf66.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_44bd13555d95bfdfe4ec84d1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_569f1b2ae53ea23e8f228319.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_c5f6680c425ac5145525d3e7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_4a230e675aab05948ff31e95.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_74971985d1c74609dbfe6478.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffd{font-family:ffd;line-height:1.035156;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.003906;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_c35d11cf06a612b0a5b76f7d.woff')format("woff");}.fff{font-family:fff;line-height:1.435059;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b5ed69fb4bf1a6793e4aa15f.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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_6a1d6eb71ec44d7d25320f08.woff')format("woff");}.ff12{font-family:ff12;line-height:0.859375;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_855619b5ff0b9d040ea0e934.woff')format("woff");}.ff13{font-family:ff13;line-height:0.933594;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_5832bc052232843ffd4faeaf.woff')format("woff");}.ff14{font-family:ff14;line-height:0.682617;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;}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls24{letter-spacing:-2.424000px;}
.ls17{letter-spacing:-1.176000px;}
.ls22{letter-spacing:-1.026000px;}
.ls19{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.414600px;}
.ls1f{letter-spacing:-0.305400px;}
.ls1c{letter-spacing:-0.262200px;}
.ls9{letter-spacing:-0.190200px;}
.lsb{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.114000px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.078000px;}
.ls18{letter-spacing:0.109200px;}
.lse{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls16{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.305400px;}
.ls21{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.870000px;}
.ls14{letter-spacing:9.360000px;}
.ls15{letter-spacing:10.944000px;}
.lsf{letter-spacing:13.265280px;}
.ls10{letter-spacing:16.865280px;}
.ls1d{letter-spacing:33.960000px;}
.ls1e{letter-spacing:33.984000px;}
.ls11{letter-spacing:63.360000px;}
.ls1a{letter-spacing:66.521280px;}
.ls1b{letter-spacing:66.545280px;}
.ls12{letter-spacing:71.280000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-37.359360px;}
.ws0{word-spacing:-24.062880px;}
.ws1{word-spacing:-19.010880px;}
.ws3{word-spacing:-18.532800px;}
.ws2{word-spacing:-18.342600px;}
.ws12{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.430000px;}
.ws18{word-spacing:-17.127600px;}
.ws16{word-spacing:-16.894200px;}
.wsa{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.297800px;}
.ws14{word-spacing:-16.254600px;}
.ws9{word-spacing:-16.145400px;}
.wsb{word-spacing:-15.948000px;}
.ws5{word-spacing:-15.912000px;}
.ws10{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.696000px;}
.ws17{word-spacing:-15.534000px;}
.wse{word-spacing:-15.384000px;}
.ws4{word-spacing:-14.650800px;}
.ws19{word-spacing:-14.136000px;}
.ws7{word-spacing:-11.340000px;}
.wsc{word-spacing:0.000000px;}
._4c{margin-left:-11.171280px;}
._31{margin-left:-5.650560px;}
._30{margin-left:-4.559040px;}
._2c{margin-left:-3.228480px;}
._2{margin-left:-2.178000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._5{width:2.294640px;}
._8{width:3.596400px;}
._9{width:4.785360px;}
._7{width:6.096720px;}
._6{width:7.146000px;}
._a{width:8.704800px;}
._b{width:9.996960px;}
._e{width:11.062080px;}
._4{width:12.897360px;}
._3{width:13.902480px;}
._12{width:15.162240px;}
._3a{width:17.930880px;}
._23{width:19.661040px;}
._c{width:20.900880px;}
._18{width:22.689360px;}
._1d{width:23.709600px;}
._1a{width:25.876800px;}
._35{width:26.976240px;}
._27{width:28.281600px;}
._f{width:30.404160px;}
._d{width:31.530240px;}
._19{width:32.951520px;}
._29{width:34.340160px;}
._2a{width:36.380640px;}
._1c{width:38.329920px;}
._1b{width:39.611520px;}
._24{width:41.863680px;}
._25{width:44.049600px;}
._10{width:45.241920px;}
._11{width:46.271280px;}
._13{width:47.566440px;}
._28{width:48.699720px;}
._41{width:50.143680px;}
._26{width:51.162240px;}
._14{width:52.395840px;}
._3d{width:53.413440px;}
._16{width:55.236240px;}
._15{width:56.311920px;}
._3b{width:59.673600px;}
._44{width:62.291520px;}
._42{width:64.232640px;}
._43{width:65.268720px;}
._38{width:67.320720px;}
._21{width:68.823360px;}
._22{width:70.023600px;}
._39{width:71.236800px;}
._17{width:73.327680px;}
._40{width:74.652480px;}
._2d{width:76.320000px;}
._2e{width:77.614560px;}
._2f{width:81.543360px;}
._3c{width:84.196800px;}
._45{width:88.434000px;}
._2b{width:91.375920px;}
._36{width:98.749440px;}
._37{width:101.631600px;}
._34{width:103.679280px;}
._33{width:105.502320px;}
._4a{width:112.383360px;}
._46{width:115.004160px;}
._4b{width:119.110320px;}
._32{width:123.315840px;}
._3e{width:126.783360px;}
._3f{width:128.497680px;}
._20{width:152.893440px;}
._48{width:188.360640px;}
._1e{width:189.617520px;}
._1f{width:197.647200px;}
._47{width:258.709680px;}
._49{width:378.506160px;}
._4d{width:846.876000px;}
.fc4{color:rgb(36,64,97);}
.fc3{color:rgb(192,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:5.760000px;}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y17{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.y15{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y14{bottom:70.785000px;}
.y40{bottom:75.240000px;}
.y13{bottom:101.025000px;}
.ye6{bottom:115.740000px;}
.y12{bottom:116.145000px;}
.y9d{bottom:131.580000px;}
.y3b{bottom:134.460000px;}
.ye5{bottom:135.540000px;}
.y9c{bottom:156.240000px;}
.y82{bottom:157.320000px;}
.y3a{bottom:159.120000px;}
.y9b{bottom:180.900000px;}
.y81{bottom:181.980000px;}
.y74{bottom:183.420000px;}
.y39{bottom:183.780000px;}
.ye4{bottom:201.060000px;}
.ydc{bottom:202.500000px;}
.y9a{bottom:205.560000px;}
.y80{bottom:206.670000px;}
.y73{bottom:208.110000px;}
.y38{bottom:208.470000px;}
.ye3{bottom:225.750000px;}
.ydb{bottom:227.190000px;}
.y99{bottom:230.250000px;}
.y7f{bottom:231.330000px;}
.y72{bottom:232.770000px;}
.y37{bottom:233.130000px;}
.ye2{bottom:250.590000px;}
.yda{bottom:251.850000px;}
.y98{bottom:254.910000px;}
.y7e{bottom:255.990000px;}
.yb8{bottom:256.350000px;}
.y71{bottom:257.430000px;}
.y36{bottom:257.790000px;}
.yd9{bottom:276.510000px;}
.y97{bottom:279.570000px;}
.y7d{bottom:280.650000px;}
.yb7{bottom:281.010000px;}
.y70{bottom:282.090000px;}
.y35{bottom:282.450000px;}
.yd8{bottom:301.170000px;}
.y96{bottom:304.230000px;}
.y7c{bottom:305.490000px;}
.yb6{bottom:305.670000px;}
.y6f{bottom:306.750000px;}
.y34{bottom:307.110000px;}
.ye1{bottom:325.830000px;}
.yd7{bottom:326.010000px;}
.y95{bottom:328.890000px;}
.y7b{bottom:330.150000px;}
.yb5{bottom:330.330000px;}
.y6e{bottom:331.410000px;}
.y33{bottom:331.770000px;}
.ye0{bottom:350.670000px;}
.yd6{bottom:351.930000px;}
.y94{bottom:353.190000px;}
.y7a{bottom:354.810000px;}
.yb4{bottom:354.990000px;}
.y6d{bottom:356.070000px;}
.y32{bottom:356.430000px;}
.yd5{bottom:376.590000px;}
.y93{bottom:377.850000px;}
.y79{bottom:379.470000px;}
.yb3{bottom:379.650000px;}
.y6c{bottom:380.730000px;}
.y31{bottom:381.090000px;}
.y92{bottom:399.090000px;}
.yd4{bottom:401.250000px;}
.y78{bottom:404.130000px;}
.yb2{bottom:404.310000px;}
.y3d{bottom:405.390000px;}
.y30{bottom:405.750000px;}
.yd3{bottom:425.910000px;}
.y77{bottom:428.790000px;}
.yb1{bottom:428.970000px;}
.y6b{bottom:430.050000px;}
.y2f{bottom:430.410000px;}
.yd2{bottom:451.875000px;}
.yb0{bottom:453.315000px;}
.ybe{bottom:453.675000px;}
.y76{bottom:454.395000px;}
.y6a{bottom:454.755000px;}
.y2e{bottom:455.115000px;}
.yd1{bottom:476.535000px;}
.yaf{bottom:478.335000px;}
.y69{bottom:479.235000px;}
.y75{bottom:479.595000px;}
.y2d{bottom:479.775000px;}
.yd0{bottom:501.195000px;}
.yae{bottom:502.995000px;}
.y5f{bottom:504.255000px;}
.y2c{bottom:504.435000px;}
.y68{bottom:515.415000px;}
.ycf{bottom:526.035000px;}
.yad{bottom:527.655000px;}
.y5e{bottom:528.915000px;}
.y2b{bottom:529.095000px;}
.y67{bottom:540.075000px;}
.yce{bottom:551.955000px;}
.yac{bottom:552.315000px;}
.y2a{bottom:553.395000px;}
.y5d{bottom:553.575000px;}
.y3c{bottom:553.755000px;}
.y66{bottom:566.355000px;}
.ycd{bottom:576.615000px;}
.yab{bottom:577.155000px;}
.y29{bottom:578.055000px;}
.y5c{bottom:578.235000px;}
.y65{bottom:592.455000px;}
.y28{bottom:596.055000px;}
.y27{bottom:599.295000px;}
.ydf{bottom:601.275000px;}
.ycc{bottom:601.455000px;}
.yaa{bottom:601.815000px;}
.y5b{bottom:602.895000px;}
.y26{bottom:609.915000px;}
.y64{bottom:617.115000px;}
.yde{bottom:625.935000px;}
.ya9{bottom:626.475000px;}
.ycb{bottom:627.015000px;}
.y5a{bottom:627.555000px;}
.y25{bottom:634.215000px;}
.y63{bottom:643.575000px;}
.ydd{bottom:650.775000px;}
.ya8{bottom:651.135000px;}
.yca{bottom:651.675000px;}
.y59{bottom:652.215000px;}
.y24{bottom:656.175000px;}
.y62{bottom:669.315000px;}
.ybd{bottom:675.435000px;}
.ya7{bottom:675.825000px;}
.yc9{bottom:676.365000px;}
.yc6{bottom:676.725000px;}
.y58{bottom:676.905000px;}
.y23{bottom:677.985000px;}
.y61{bottom:690.585000px;}
.y91{bottom:694.905000px;}
.y22{bottom:699.765000px;}
.ybc{bottom:700.125000px;}
.ya6{bottom:700.485000px;}
.yc5{bottom:701.385000px;}
.y57{bottom:701.565000px;}
.y90{bottom:719.565000px;}
.y21{bottom:721.545000px;}
.ya5{bottom:725.145000px;}
.yc4{bottom:726.045000px;}
.y56{bottom:726.225000px;}
.y20{bottom:743.505000px;}
.y8f{bottom:744.225000px;}
.ya4{bottom:749.445000px;}
.ybb{bottom:749.805000px;}
.yc3{bottom:750.705000px;}
.y55{bottom:750.885000px;}
.y1f{bottom:765.285000px;}
.y8e{bottom:768.885000px;}
.ya3{bottom:774.465000px;}
.y54{bottom:775.185000px;}
.yc2{bottom:775.365000px;}
.y1e{bottom:787.065000px;}
.y8d{bottom:793.545000px;}
.ya2{bottom:799.125000px;}
.y53{bottom:799.845000px;}
.yc1{bottom:800.025000px;}
.y60{bottom:800.205000px;}
.y1d{bottom:808.845000px;}
.y87{bottom:818.205000px;}
.y8c{bottom:818.925000px;}
.ya1{bottom:823.785000px;}
.yc0{bottom:824.325000px;}
.yc8{bottom:824.685000px;}
.y4f{bottom:824.865000px;}
.y1c{bottom:830.625000px;}
.y86{bottom:842.865000px;}
.y8b{bottom:843.945000px;}
.yba{bottom:848.085000px;}
.ya0{bottom:848.445000px;}
.ybf{bottom:848.985000px;}
.yc7{bottom:849.345000px;}
.y4e{bottom:849.525000px;}
.y1b{bottom:852.225000px;}
.y52{bottom:857.445000px;}
.y85{bottom:867.525000px;}
.y8a{bottom:868.965000px;}
.y1a{bottom:871.485000px;}
.y4d{bottom:874.185000px;}
.y51{bottom:878.325000px;}
.y18{bottom:880.125000px;}
.y11{bottom:887.325000px;}
.y84{bottom:892.185000px;}
.y89{bottom:893.625000px;}
.y9f{bottom:898.485000px;}
.y4c{bottom:898.845000px;}
.y83{bottom:916.710000px;}
.y88{bottom:918.330000px;}
.y4b{bottom:923.550000px;}
.y4a{bottom:948.210000px;}
.y49{bottom:972.870000px;}
.y48{bottom:997.530000px;}
.y47{bottom:1021.830000px;}
.y50{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.y46{bottom:1046.850000px;}
.y45{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y44{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.yb9{bottom:1120.470000px;}
.y43{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y42{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y9e{bottom:1169.820000px;}
.y41{bottom:1170.180000px;}
.y3f{bottom:1187.280000px;}
.y3e{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h1e{height:5.650313px;}
.h10{height:6.285000px;}
.h18{height:7.200000px;}
.hd{height:13.324219px;}
.h19{height:17.587969px;}
.h1d{height:17.657227px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h21{height:30.480469px;}
.h1a{height:36.861328px;}
.h26{height:39.830273px;}
.he{height:41.025000px;}
.h23{height:41.493516px;}
.h14{height:44.496211px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h24{height:61.423863px;}
.h2{height:62.275078px;}
.h16{height:63.492188px;}
.h1c{height:64.978594px;}
.h20{height:65.010937px;}
.h1b{height:65.884219px;}
.h1f{height:66.757500px;}
.h15{height:67.803750px;}
.h27{height:68.084282px;}
.h22{height:68.956875px;}
.h28{height:69.660000px;}
.h6{height:71.324297px;}
.h17{height:72.562500px;}
.h25{height:74.004654px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:141.862500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.x13{left:40.843500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x14{left:59.743500px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x17{left:88.183500px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x2b{left:123.516000px;}
.x1f{left:129.276000px;}
.x25{left:134.136000px;}
.x20{left:139.896000px;}
.x18{left:143.263500px;}
.x21{left:146.736000px;}
.x2a{left:148.716000px;}
.x2c{left:150.510000px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x6{left:209.010000px;}
.x19{left:214.048500px;}
.x16{left:218.008500px;}
.x15{left:256.528500px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1c{left:473.505000px;}
.x2d{left:488.985000px;}
.x29{left:494.745000px;}
.x26{left:499.605000px;}
.x23{left:505.365000px;}
.x27{left:512.205000px;}
.x24{left:514.185000px;}
.x2e{left:515.985000px;}
.x1d{left:527.505000px;}
.x31{left:579.345000px;}
.x32{left:600.585000px;}
.x2f{left:652.110000px;}
.x33{left:655.710000px;}
.x34{left:677.130000px;}
.x35{left:682.710000px;}
.x36{left:703.950000px;}
.x7{left:722.490000px;}
.x30{left:727.890000px;}
.x37{left:745.350000px;}
.x1{left:761.010000px;}
.x38{left:766.590000px;}
.x28{left:771.090000px;}
.x1e{left:776.670000px;}
.x22{left:811.260000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls24{letter-spacing:-2.154667pt;}
.ls17{letter-spacing:-1.045333pt;}
.ls22{letter-spacing:-0.912000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls1f{letter-spacing:-0.271467pt;}
.ls1c{letter-spacing:-0.233067pt;}
.ls9{letter-spacing:-0.169067pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.101333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.069333pt;}
.ls18{letter-spacing:0.097067pt;}
.lse{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls16{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.271467pt;}
.ls21{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.773333pt;}
.ls14{letter-spacing:8.320000pt;}
.ls15{letter-spacing:9.728000pt;}
.lsf{letter-spacing:11.791360pt;}
.ls10{letter-spacing:14.991360pt;}
.ls1d{letter-spacing:30.186667pt;}
.ls1e{letter-spacing:30.208000pt;}
.ls11{letter-spacing:56.320000pt;}
.ls1a{letter-spacing:59.130027pt;}
.ls1b{letter-spacing:59.151360pt;}
.ls12{letter-spacing:63.360000pt;}
.ws11{word-spacing:-33.208320pt;}
.ws0{word-spacing:-21.389227pt;}
.ws1{word-spacing:-16.898560pt;}
.ws3{word-spacing:-16.473600pt;}
.ws2{word-spacing:-16.304533pt;}
.ws12{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.493333pt;}
.ws18{word-spacing:-15.224533pt;}
.ws16{word-spacing:-15.017067pt;}
.wsa{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.486933pt;}
.ws14{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.351467pt;}
.wsb{word-spacing:-14.176000pt;}
.ws5{word-spacing:-14.144000pt;}
.ws10{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws17{word-spacing:-13.808000pt;}
.wse{word-spacing:-13.674667pt;}
.ws4{word-spacing:-13.022933pt;}
.ws19{word-spacing:-12.565333pt;}
.ws7{word-spacing:-10.080000pt;}
.wsc{word-spacing:0.000000pt;}
._4c{margin-left:-9.930027pt;}
._31{margin-left:-5.022720pt;}
._30{margin-left:-4.052480pt;}
._2c{margin-left:-2.869760pt;}
._2{margin-left:-1.936000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._5{width:2.039680pt;}
._8{width:3.196800pt;}
._9{width:4.253653pt;}
._7{width:5.419307pt;}
._6{width:6.352000pt;}
._a{width:7.737600pt;}
._b{width:8.886187pt;}
._e{width:9.832960pt;}
._4{width:11.464320pt;}
._3{width:12.357760pt;}
._12{width:13.477547pt;}
._3a{width:15.938560pt;}
._23{width:17.476480pt;}
._c{width:18.578560pt;}
._18{width:20.168320pt;}
._1d{width:21.075200pt;}
._1a{width:23.001600pt;}
._35{width:23.978880pt;}
._27{width:25.139200pt;}
._f{width:27.025920pt;}
._d{width:28.026880pt;}
._19{width:29.290240pt;}
._29{width:30.524587pt;}
._2a{width:32.338347pt;}
._1c{width:34.071040pt;}
._1b{width:35.210240pt;}
._24{width:37.212160pt;}
._25{width:39.155200pt;}
._10{width:40.215040pt;}
._11{width:41.130027pt;}
._13{width:42.281280pt;}
._28{width:43.288640pt;}
._41{width:44.572160pt;}
._26{width:45.477547pt;}
._14{width:46.574080pt;}
._3d{width:47.478613pt;}
._16{width:49.098880pt;}
._15{width:50.055040pt;}
._3b{width:53.043200pt;}
._44{width:55.370240pt;}
._42{width:57.095680pt;}
._43{width:58.016640pt;}
._38{width:59.840640pt;}
._21{width:61.176320pt;}
._22{width:62.243200pt;}
._39{width:63.321600pt;}
._17{width:65.180160pt;}
._40{width:66.357760pt;}
._2d{width:67.840000pt;}
._2e{width:68.990720pt;}
._2f{width:72.482987pt;}
._3c{width:74.841600pt;}
._45{width:78.608000pt;}
._2b{width:81.223040pt;}
._36{width:87.777280pt;}
._37{width:90.339200pt;}
._34{width:92.159360pt;}
._33{width:93.779840pt;}
._4a{width:99.896320pt;}
._46{width:102.225920pt;}
._4b{width:105.875840pt;}
._32{width:109.614080pt;}
._3e{width:112.696320pt;}
._3f{width:114.220160pt;}
._20{width:135.905280pt;}
._48{width:167.431680pt;}
._1e{width:168.548907pt;}
._1f{width:175.686400pt;}
._47{width:229.964160pt;}
._49{width:336.449920pt;}
._4d{width:752.778667pt;}
.fsc{font-size:5.120000pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y17{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.y15{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:62.920000pt;}
.y40{bottom:66.880000pt;}
.y13{bottom:89.800000pt;}
.ye6{bottom:102.880000pt;}
.y12{bottom:103.240000pt;}
.y9d{bottom:116.960000pt;}
.y3b{bottom:119.520000pt;}
.ye5{bottom:120.480000pt;}
.y9c{bottom:138.880000pt;}
.y82{bottom:139.840000pt;}
.y3a{bottom:141.440000pt;}
.y9b{bottom:160.800000pt;}
.y81{bottom:161.760000pt;}
.y74{bottom:163.040000pt;}
.y39{bottom:163.360000pt;}
.ye4{bottom:178.720000pt;}
.ydc{bottom:180.000000pt;}
.y9a{bottom:182.720000pt;}
.y80{bottom:183.706667pt;}
.y73{bottom:184.986667pt;}
.y38{bottom:185.306667pt;}
.ye3{bottom:200.666667pt;}
.ydb{bottom:201.946667pt;}
.y99{bottom:204.666667pt;}
.y7f{bottom:205.626667pt;}
.y72{bottom:206.906667pt;}
.y37{bottom:207.226667pt;}
.ye2{bottom:222.746667pt;}
.yda{bottom:223.866667pt;}
.y98{bottom:226.586667pt;}
.y7e{bottom:227.546667pt;}
.yb8{bottom:227.866667pt;}
.y71{bottom:228.826667pt;}
.y36{bottom:229.146667pt;}
.yd9{bottom:245.786667pt;}
.y97{bottom:248.506667pt;}
.y7d{bottom:249.466667pt;}
.yb7{bottom:249.786667pt;}
.y70{bottom:250.746667pt;}
.y35{bottom:251.066667pt;}
.yd8{bottom:267.706667pt;}
.y96{bottom:270.426667pt;}
.y7c{bottom:271.546667pt;}
.yb6{bottom:271.706667pt;}
.y6f{bottom:272.666667pt;}
.y34{bottom:272.986667pt;}
.ye1{bottom:289.626667pt;}
.yd7{bottom:289.786667pt;}
.y95{bottom:292.346667pt;}
.y7b{bottom:293.466667pt;}
.yb5{bottom:293.626667pt;}
.y6e{bottom:294.586667pt;}
.y33{bottom:294.906667pt;}
.ye0{bottom:311.706667pt;}
.yd6{bottom:312.826667pt;}
.y94{bottom:313.946667pt;}
.y7a{bottom:315.386667pt;}
.yb4{bottom:315.546667pt;}
.y6d{bottom:316.506667pt;}
.y32{bottom:316.826667pt;}
.yd5{bottom:334.746667pt;}
.y93{bottom:335.866667pt;}
.y79{bottom:337.306667pt;}
.yb3{bottom:337.466667pt;}
.y6c{bottom:338.426667pt;}
.y31{bottom:338.746667pt;}
.y92{bottom:354.746667pt;}
.yd4{bottom:356.666667pt;}
.y78{bottom:359.226667pt;}
.yb2{bottom:359.386667pt;}
.y3d{bottom:360.346667pt;}
.y30{bottom:360.666667pt;}
.yd3{bottom:378.586667pt;}
.y77{bottom:381.146667pt;}
.yb1{bottom:381.306667pt;}
.y6b{bottom:382.266667pt;}
.y2f{bottom:382.586667pt;}
.yd2{bottom:401.666667pt;}
.yb0{bottom:402.946667pt;}
.ybe{bottom:403.266667pt;}
.y76{bottom:403.906667pt;}
.y6a{bottom:404.226667pt;}
.y2e{bottom:404.546667pt;}
.yd1{bottom:423.586667pt;}
.yaf{bottom:425.186667pt;}
.y69{bottom:425.986667pt;}
.y75{bottom:426.306667pt;}
.y2d{bottom:426.466667pt;}
.yd0{bottom:445.506667pt;}
.yae{bottom:447.106667pt;}
.y5f{bottom:448.226667pt;}
.y2c{bottom:448.386667pt;}
.y68{bottom:458.146667pt;}
.ycf{bottom:467.586667pt;}
.yad{bottom:469.026667pt;}
.y5e{bottom:470.146667pt;}
.y2b{bottom:470.306667pt;}
.y67{bottom:480.066667pt;}
.yce{bottom:490.626667pt;}
.yac{bottom:490.946667pt;}
.y2a{bottom:491.906667pt;}
.y5d{bottom:492.066667pt;}
.y3c{bottom:492.226667pt;}
.y66{bottom:503.426667pt;}
.ycd{bottom:512.546667pt;}
.yab{bottom:513.026667pt;}
.y29{bottom:513.826667pt;}
.y5c{bottom:513.986667pt;}
.y65{bottom:526.626667pt;}
.y28{bottom:529.826667pt;}
.y27{bottom:532.706667pt;}
.ydf{bottom:534.466667pt;}
.ycc{bottom:534.626667pt;}
.yaa{bottom:534.946667pt;}
.y5b{bottom:535.906667pt;}
.y26{bottom:542.146667pt;}
.y64{bottom:548.546667pt;}
.yde{bottom:556.386667pt;}
.ya9{bottom:556.866667pt;}
.ycb{bottom:557.346667pt;}
.y5a{bottom:557.826667pt;}
.y25{bottom:563.746667pt;}
.y63{bottom:572.066667pt;}
.ydd{bottom:578.466667pt;}
.ya8{bottom:578.786667pt;}
.yca{bottom:579.266667pt;}
.y59{bottom:579.746667pt;}
.y24{bottom:583.266667pt;}
.y62{bottom:594.946667pt;}
.ybd{bottom:600.386667pt;}
.ya7{bottom:600.733333pt;}
.yc9{bottom:601.213333pt;}
.yc6{bottom:601.533333pt;}
.y58{bottom:601.693333pt;}
.y23{bottom:602.653333pt;}
.y61{bottom:613.853333pt;}
.y91{bottom:617.693333pt;}
.y22{bottom:622.013333pt;}
.ybc{bottom:622.333333pt;}
.ya6{bottom:622.653333pt;}
.yc5{bottom:623.453333pt;}
.y57{bottom:623.613333pt;}
.y90{bottom:639.613333pt;}
.y21{bottom:641.373333pt;}
.ya5{bottom:644.573333pt;}
.yc4{bottom:645.373333pt;}
.y56{bottom:645.533333pt;}
.y20{bottom:660.893333pt;}
.y8f{bottom:661.533333pt;}
.ya4{bottom:666.173333pt;}
.ybb{bottom:666.493333pt;}
.yc3{bottom:667.293333pt;}
.y55{bottom:667.453333pt;}
.y1f{bottom:680.253333pt;}
.y8e{bottom:683.453333pt;}
.ya3{bottom:688.413333pt;}
.y54{bottom:689.053333pt;}
.yc2{bottom:689.213333pt;}
.y1e{bottom:699.613333pt;}
.y8d{bottom:705.373333pt;}
.ya2{bottom:710.333333pt;}
.y53{bottom:710.973333pt;}
.yc1{bottom:711.133333pt;}
.y60{bottom:711.293333pt;}
.y1d{bottom:718.973333pt;}
.y87{bottom:727.293333pt;}
.y8c{bottom:727.933333pt;}
.ya1{bottom:732.253333pt;}
.yc0{bottom:732.733333pt;}
.yc8{bottom:733.053333pt;}
.y4f{bottom:733.213333pt;}
.y1c{bottom:738.333333pt;}
.y86{bottom:749.213333pt;}
.y8b{bottom:750.173333pt;}
.yba{bottom:753.853333pt;}
.ya0{bottom:754.173333pt;}
.ybf{bottom:754.653333pt;}
.yc7{bottom:754.973333pt;}
.y4e{bottom:755.133333pt;}
.y1b{bottom:757.533333pt;}
.y52{bottom:762.173333pt;}
.y85{bottom:771.133333pt;}
.y8a{bottom:772.413333pt;}
.y1a{bottom:774.653333pt;}
.y4d{bottom:777.053333pt;}
.y51{bottom:780.733333pt;}
.y18{bottom:782.333333pt;}
.y11{bottom:788.733333pt;}
.y84{bottom:793.053333pt;}
.y89{bottom:794.333333pt;}
.y9f{bottom:798.653333pt;}
.y4c{bottom:798.973333pt;}
.y83{bottom:814.853333pt;}
.y88{bottom:816.293333pt;}
.y4b{bottom:820.933333pt;}
.y4a{bottom:842.853333pt;}
.y49{bottom:864.773333pt;}
.y48{bottom:886.693333pt;}
.y47{bottom:908.293333pt;}
.y50{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.y46{bottom:930.533333pt;}
.y45{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y44{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.yb9{bottom:995.973333pt;}
.y43{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y42{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y9e{bottom:1039.840000pt;}
.y41{bottom:1040.160000pt;}
.y3f{bottom:1055.360000pt;}
.y3e{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h1e{height:5.022500pt;}
.h10{height:5.586667pt;}
.h18{height:6.400000pt;}
.hd{height:11.843750pt;}
.h19{height:15.633750pt;}
.h1d{height:15.695312pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h21{height:27.093750pt;}
.h1a{height:32.765625pt;}
.h26{height:35.404688pt;}
.he{height:36.466667pt;}
.h23{height:36.883125pt;}
.h14{height:39.552188pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h24{height:54.598989pt;}
.h2{height:55.355625pt;}
.h16{height:56.437500pt;}
.h1c{height:57.758750pt;}
.h20{height:57.787500pt;}
.h1b{height:58.563750pt;}
.h1f{height:59.340000pt;}
.h15{height:60.270000pt;}
.h27{height:60.519362pt;}
.h22{height:61.295000pt;}
.h28{height:61.920000pt;}
.h6{height:63.399375pt;}
.h17{height:64.500000pt;}
.h25{height:65.781915pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:126.100000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.x13{left:36.305333pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x14{left:53.105333pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x17{left:78.385333pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x2b{left:109.792000pt;}
.x1f{left:114.912000pt;}
.x25{left:119.232000pt;}
.x20{left:124.352000pt;}
.x18{left:127.345333pt;}
.x21{left:130.432000pt;}
.x2a{left:132.192000pt;}
.x2c{left:133.786667pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x6{left:185.786667pt;}
.x19{left:190.265333pt;}
.x16{left:193.785333pt;}
.x15{left:228.025333pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1c{left:420.893333pt;}
.x2d{left:434.653333pt;}
.x29{left:439.773333pt;}
.x26{left:444.093333pt;}
.x23{left:449.213333pt;}
.x27{left:455.293333pt;}
.x24{left:457.053333pt;}
.x2e{left:458.653333pt;}
.x1d{left:468.893333pt;}
.x31{left:514.973333pt;}
.x32{left:533.853333pt;}
.x2f{left:579.653333pt;}
.x33{left:582.853333pt;}
.x34{left:601.893333pt;}
.x35{left:606.853333pt;}
.x36{left:625.733333pt;}
.x7{left:642.213333pt;}
.x30{left:647.013333pt;}
.x37{left:662.533333pt;}
.x1{left:676.453333pt;}
.x38{left:681.413333pt;}
.x28{left:685.413333pt;}
.x1e{left:690.373333pt;}
.x22{left:721.120000pt;}
}




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