
    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_5d30a199824bbc5718890673.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9dd4637ec588bace73b17f4c.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_4362451a95e522ef0ab68f60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.816406;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_12a1bd4d1350dc68439bf0a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a09800e044da2041f2dd3879.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_033ba036f42e2f0eae138f9c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_f4b16e7ac748a204b143bad7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7afce18a81a27b264116bce7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_bc8598febc539b755ee359e2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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_eab735055b02e9e03f20e7bb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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_7259245f50fce7ec9415e83f.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e1ae2ad470d6f75a09e8a6ea.woff')format("woff");}.ffd{font-family:ffd;line-height:1.088379;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_783acc7b483c4d724b8a33e4.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0db10e3baf026b46a55a3d7a.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;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_a238700a7e8324d120c32b2b.woff')format("woff");}.ff10{font-family:ff10;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff11{font-family:ff11;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-114.180000px;}
.v2{vertical-align:-57.060000px;}
.v1{vertical-align:-23.940000px;}
.v4{vertical-align:-11.820000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.940000px;}
.ls14{letter-spacing:-1.494000px;}
.ls10{letter-spacing:-0.518400px;}
.ls11{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.227400px;}
.lse{letter-spacing:-0.091200px;}
.lsb{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.011520px;}
.ls16{letter-spacing:0.023040px;}
.lsc{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.129600px;}
.ls15{letter-spacing:0.138000px;}
.lsd{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.195840px;}
.ls4{letter-spacing:0.201600px;}
.ls8{letter-spacing:0.264960px;}
.ls6{letter-spacing:0.276600px;}
.ls13{letter-spacing:0.391800px;}
.ls5{letter-spacing:2.943360px;}
.ls1{letter-spacing:13.852800px;}
.ls12{letter-spacing:36.642720px;}
.lsf{letter-spacing:252.702000px;}
.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;}
}
.wsb{word-spacing:-264.906000px;}
.ws12{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.617280px;}
.ws3{word-spacing:-20.816640px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.750200px;}
.ws7{word-spacing:-16.675200px;}
.ws14{word-spacing:-16.623600px;}
.ws1d{word-spacing:-16.611600px;}
.ws5{word-spacing:-16.473600px;}
.ws13{word-spacing:-14.979600px;}
.ws20{word-spacing:-14.595840px;}
.ws1f{word-spacing:-14.572800px;}
.ws1e{word-spacing:-14.345400px;}
.ws2{word-spacing:-13.276800px;}
.ws9{word-spacing:-12.236544px;}
.ws8{word-spacing:-12.204000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:64.272000px;}
.wsc{word-spacing:80.070000px;}
.ws11{word-spacing:87.168000px;}
.ws18{word-spacing:176.886000px;}
.ws1c{word-spacing:183.108000px;}
.wsf{word-spacing:341.706000px;}
.ws10{word-spacing:341.886000px;}
.ws17{word-spacing:428.224608px;}
.ws16{word-spacing:428.586000px;}
.ws1b{word-spacing:462.666000px;}
.ws19{word-spacing:462.726000px;}
.wsd{word-spacing:476.118000px;}
.wse{word-spacing:476.132448px;}
.ws1a{word-spacing:529.806000px;}
.ws15{word-spacing:562.878000px;}
._33{margin-left:-252.582000px;}
._30{margin-left:-10.698480px;}
._2c{margin-left:-9.506880px;}
._24{margin-left:-7.893600px;}
._18{margin-left:-6.201120px;}
._21{margin-left:-4.659360px;}
._8{margin-left:-3.330240px;}
._9{margin-left:-2.171520px;}
._6{margin-left:-1.066080px;}
._0{width:1.222560px;}
._4{width:2.888160px;}
._1e{width:4.193280px;}
._c{width:5.241600px;}
._d{width:6.589440px;}
._7{width:8.012160px;}
._a{width:9.584640px;}
._17{width:10.743360px;}
._1c{width:12.129600px;}
._5{width:13.327680px;}
._35{width:14.333520px;}
._23{width:15.350400px;}
._26{width:17.526720px;}
._13{width:18.981600px;}
._12{width:20.142720px;}
._b{width:21.939840px;}
._19{width:23.199360px;}
._22{width:25.084800px;}
._16{width:27.106560px;}
._11{width:28.753920px;}
._10{width:30.101760px;}
._1f{width:31.674240px;}
._20{width:32.698080px;}
._2a{width:33.913680px;}
._2b{width:35.118960px;}
._15{width:37.077600px;}
._14{width:38.245920px;}
._25{width:39.686400px;}
._27{width:41.184000px;}
._2d{width:42.756480px;}
._e{width:43.804800px;}
._f{width:45.152640px;}
._34{width:46.244640px;}
._1d{width:50.805120px;}
._1b{width:52.020000px;}
._2f{width:56.964960px;}
._2e{width:58.284480px;}
._29{width:61.077600px;}
._36{width:71.737920px;}
._37{width:73.195200px;}
._32{width:111.870000px;}
._31{width:118.398000px;}
._28{width:139.875840px;}
._1a{width:142.247520px;}
._3{width:180.120000px;}
._1{width:191.100000px;}
._2{width:198.000000px;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs2{font-size:54.000000px;}
.fsc{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:74.880000px;}
.fsa{font-size:77.760000px;}
.fsb{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.fs8{font-size:94.867381px;}
.fs4{font-size:144.000000px;}
.fs5{font-size:203.760000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:17.535000px;}
.yd1{bottom:17.610000px;}
.yd7{bottom:17.640000px;}
.ye9{bottom:17.670000px;}
.y147{bottom:17.676000px;}
.y3{bottom:23.400000px;}
.y16{bottom:24.300000px;}
.y2{bottom:41.400000px;}
.y15{bottom:44.280000px;}
.y3f{bottom:45.000000px;}
.yf3{bottom:47.445000px;}
.y119{bottom:47.550000px;}
.y146{bottom:47.595000px;}
.y118{bottom:64.050000px;}
.y145{bottom:64.080000px;}
.y117{bottom:80.535000px;}
.y144{bottom:80.565000px;}
.y12f{bottom:81.570000px;}
.yeb{bottom:83.085000px;}
.ye5{bottom:92.160000px;}
.y109{bottom:92.340000px;}
.ya8{bottom:96.300000px;}
.yef{bottom:96.405000px;}
.y116{bottom:96.990000px;}
.yf4{bottom:97.170000px;}
.y13c{bottom:98.100000px;}
.yd6{bottom:98.535000px;}
.y66{bottom:99.900000px;}
.y85{bottom:101.340000px;}
.y129{bottom:107.280000px;}
.y136{bottom:109.080000px;}
.y13b{bottom:112.245000px;}
.y115{bottom:113.475000px;}
.y3e{bottom:113.760000px;}
.y14{bottom:115.920000px;}
.y13d{bottom:115.995000px;}
.y12e{bottom:116.535000px;}
.y165{bottom:116.820000px;}
.ye4{bottom:117.360000px;}
.yce{bottom:118.620000px;}
.ya7{bottom:121.680000px;}
.y12d{bottom:123.690000px;}
.y130{bottom:124.410000px;}
.y65{bottom:125.100000px;}
.y84{bottom:126.720000px;}
.ye7{bottom:127.830000px;}
.ycb{bottom:129.600000px;}
.y10e{bottom:131.040000px;}
.y13e{bottom:133.845000px;}
.y3d{bottom:138.960000px;}
.y13{bottom:141.480000px;}
.y164{bottom:142.380000px;}
.y10d{bottom:145.230000px;}
.ycf{bottom:146.730000px;}
.ya6{bottom:146.880000px;}
.yec{bottom:147.390000px;}
.y64{bottom:150.480000px;}
.y138{bottom:150.945000px;}
.y13f{bottom:151.710000px;}
.y83{bottom:152.280000px;}
.ye3{bottom:154.620000px;}
.yca{bottom:154.980000px;}
.yf0{bottom:160.740000px;}
.yf5{bottom:161.460000px;}
.y3c{bottom:164.160000px;}
.y10f{bottom:166.890000px;}
.y12{bottom:167.040000px;}
.y131{bottom:167.250000px;}
.y139{bottom:168.840000px;}
.yd5{bottom:169.410000px;}
.y140{bottom:169.560000px;}
.y63{bottom:175.710000px;}
.y163{bottom:179.850000px;}
.ye2{bottom:180.030000px;}
.yc9{bottom:180.210000px;}
.y10c{bottom:184.110000px;}
.ya5{bottom:184.170000px;}
.y137{bottom:186.690000px;}
.y141{bottom:187.410000px;}
.ybb{bottom:189.030000px;}
.y3b{bottom:189.570000px;}
.y82{bottom:189.750000px;}
.y108{bottom:192.270000px;}
.y11{bottom:192.990000px;}
.ye8{bottom:199.830000px;}
.ycd{bottom:200.775000px;}
.y62{bottom:201.090000px;}
.y110{bottom:202.755000px;}
.y13a{bottom:204.555000px;}
.y162{bottom:205.230000px;}
.y142{bottom:205.305000px;}
.yc8{bottom:205.410000px;}
.y12c{bottom:209.370000px;}
.ya4{bottom:209.550000px;}
.y132{bottom:210.090000px;}
.yed{bottom:211.710000px;}
.ye1{bottom:214.590000px;}
.y3a{bottom:214.770000px;}
.y81{bottom:215.130000px;}
.yea{bottom:216.180000px;}
.y107{bottom:217.470000px;}
.y10b{bottom:219.960000px;}
.y143{bottom:223.170000px;}
.yf1{bottom:225.030000px;}
.yf6{bottom:225.795000px;}
.yba{bottom:228.090000px;}
.yc7{bottom:230.790000px;}
.y111{bottom:238.650000px;}
.y61{bottom:239.430000px;}
.y39{bottom:240.150000px;}
.yd4{bottom:240.300000px;}
.y106{bottom:242.850000px;}
.yd0{bottom:244.650000px;}
.y10{bottom:245.370000px;}
.ya3{bottom:248.070000px;}
.yc6{bottom:251.850000px;}
.y80{bottom:252.570000px;}
.y133{bottom:252.930000px;}
.yb9{bottom:253.290000px;}
.yd2{bottom:254.160000px;}
.y38{bottom:265.350000px;}
.y161{bottom:268.230000px;}
.y112{bottom:274.500000px;}
.yee{bottom:276.015000px;}
.y7f{bottom:278.130000px;}
.y60{bottom:278.670000px;}
.y105{bottom:280.110000px;}
.ya2{bottom:287.130000px;}
.yd3{bottom:287.565000px;}
.yf2{bottom:289.365000px;}
.yf7{bottom:290.085000px;}
.y37{bottom:290.730000px;}
.y12b{bottom:295.050000px;}
.y134{bottom:295.770000px;}
.y5f{bottom:303.870000px;}
.y104{bottom:305.310000px;}
.y160{bottom:305.670000px;}
.y113{bottom:310.350000px;}
.ya1{bottom:312.330000px;}
.y7e{bottom:315.570000px;}
.yf{bottom:317.370000px;}
.y5e{bottom:329.070000px;}
.y36{bottom:331.230000px;}
.ya0{bottom:337.710000px;}
.y135{bottom:338.610000px;}
.y7d{bottom:340.950000px;}
.y103{bottom:342.750000px;}
.y114{bottom:346.215000px;}
.y5d{bottom:354.450000px;}
.y9f{bottom:362.910000px;}
.y102{bottom:367.950000px;}
.y15f{bottom:368.670000px;}
.y128{bottom:371.910000px;}
.y7c{bottom:378.570000px;}
.y5c{bottom:379.650000px;}
.y9e{bottom:388.290000px;}
.ye{bottom:389.190000px;}
.yb8{bottom:391.710000px;}
.y101{bottom:393.150000px;}
.y15e{bottom:394.050000px;}
.y35{bottom:394.590000px;}
.y127{bottom:397.290000px;}
.y7b{bottom:403.950000px;}
.y5b{bottom:405.030000px;}
.y9d{bottom:413.535000px;}
.yb7{bottom:416.955000px;}
.y34{bottom:419.835000px;}
.y5a{bottom:430.275000px;}
.y100{bottom:430.635000px;}
.y15d{bottom:431.355000px;}
.y126{bottom:434.595000px;}
.y9c{bottom:438.735000px;}
.y7a{bottom:441.255000px;}
.yb6{bottom:442.335000px;}
.y33{bottom:445.215000px;}
.y59{bottom:455.655000px;}
.yff{bottom:455.835000px;}
.y15c{bottom:456.735000px;}
.y125{bottom:459.795000px;}
.yd{bottom:461.235000px;}
.yb5{bottom:467.535000px;}
.y32{bottom:470.415000px;}
.y9b{bottom:477.255000px;}
.y79{bottom:479.775000px;}
.y58{bottom:480.855000px;}
.yfe{bottom:481.035000px;}
.yb4{bottom:492.915000px;}
.y15b{bottom:493.995000px;}
.y31{bottom:495.795000px;}
.y124{bottom:497.235000px;}
.y57{bottom:506.235000px;}
.yfd{bottom:514.335000px;}
.y10a{bottom:514.440000px;}
.y9a{bottom:516.315000px;}
.yb3{bottom:518.115000px;}
.y78{bottom:519.015000px;}
.y15a{bottom:519.195000px;}
.y30{bottom:520.995000px;}
.y123{bottom:522.435000px;}
.y56{bottom:531.435000px;}
.yc{bottom:533.055000px;}
.y99{bottom:541.695000px;}
.yb2{bottom:543.495000px;}
.y77{bottom:544.575000px;}
.y2f{bottom:546.195000px;}
.y122{bottom:547.635000px;}
.y98{bottom:566.895000px;}
.y17a{bottom:567.795000px;}
.y159{bottom:569.775000px;}
.y55{bottom:569.955000px;}
.y2e{bottom:571.575000px;}
.yc5{bottom:576.615000px;}
.ye0{bottom:578.415000px;}
.yb1{bottom:580.755000px;}
.y76{bottom:582.015000px;}
.y121{bottom:585.255000px;}
.y179{bottom:589.935000px;}
.y97{bottom:592.275000px;}
.y158{bottom:595.155000px;}
.y2d{bottom:596.775000px;}
.yc4{bottom:601.815000px;}
.yb{bottom:605.055000px;}
.yb0{bottom:605.955000px;}
.y75{bottom:607.395000px;}
.y54{bottom:609.015000px;}
.y120{bottom:610.635000px;}
.y178{bottom:612.255000px;}
.ydf{bottom:614.955000px;}
.y96{bottom:617.475000px;}
.y2c{bottom:622.155000px;}
.yaf{bottom:631.335000px;}
.y157{bottom:632.415000px;}
.y53{bottom:634.215000px;}
.y177{bottom:634.395000px;}
.yc3{bottom:639.075000px;}
.y95{bottom:642.855000px;}
.y74{bottom:644.835000px;}
.y2b{bottom:647.355000px;}
.y11f{bottom:648.075000px;}
.yde{bottom:652.215000px;}
.yae{bottom:656.535000px;}
.y176{bottom:656.715000px;}
.y156{bottom:657.615000px;}
.y52{bottom:659.625000px;}
.yc2{bottom:664.485000px;}
.y73{bottom:670.425000px;}
.y2a{bottom:672.765000px;}
.y11e{bottom:673.665000px;}
.ya{bottom:676.905000px;}
.y175{bottom:678.885000px;}
.y94{bottom:681.405000px;}
.yad{bottom:681.945000px;}
.y155{bottom:683.025000px;}
.y51{bottom:684.825000px;}
.ydd{bottom:689.505000px;}
.yc1{bottom:689.685000px;}
.y29{bottom:697.965000px;}
.y11d{bottom:699.045000px;}
.y174{bottom:701.205000px;}
.yac{bottom:707.145000px;}
.y72{bottom:707.865000px;}
.y154{bottom:708.225000px;}
.y50{bottom:710.205000px;}
.ydc{bottom:714.885000px;}
.yc0{bottom:715.065000px;}
.y93{bottom:720.465000px;}
.y28{bottom:723.345000px;}
.y173{bottom:723.525000px;}
.yab{bottom:732.345000px;}
.y71{bottom:733.245000px;}
.y153{bottom:733.425000px;}
.y4f{bottom:735.405000px;}
.y11c{bottom:736.485000px;}
.ydb{bottom:740.085000px;}
.ybf{bottom:740.265000px;}
.y92{bottom:745.665000px;}
.y27{bottom:748.545000px;}
.y9{bottom:748.905000px;}
.yaa{bottom:757.725000px;}
.y152{bottom:758.805000px;}
.y4e{bottom:760.785000px;}
.ybe{bottom:761.505000px;}
.ycc{bottom:761.580000px;}
.y11b{bottom:762.045000px;}
.yda{bottom:765.465000px;}
.y172{bottom:767.985000px;}
.y70{bottom:770.865000px;}
.y91{bottom:771.045000px;}
.y26{bottom:773.745000px;}
.ya9{bottom:782.925000px;}
.y4d{bottom:785.985000px;}
.y171{bottom:790.125000px;}
.yd9{bottom:790.665000px;}
.y6f{bottom:796.245000px;}
.y11a{bottom:796.605000px;}
.y151{bottom:797.325000px;}
.y12a{bottom:797.580000px;}
.y25{bottom:799.305000px;}
.y90{bottom:808.305000px;}
.y4c{bottom:811.365000px;}
.y170{bottom:812.445000px;}
.y8{bottom:820.725000px;}
.yd8{bottom:825.405000px;}
.ye6{bottom:827.460000px;}
.y6e{bottom:833.505000px;}
.y16f{bottom:834.765000px;}
.y24{bottom:836.025000px;}
.y150{bottom:836.385000px;}
.y4b{bottom:848.625000px;}
.y23{bottom:848.985000px;}
.y16e{bottom:856.905000px;}
.y6d{bottom:858.885000px;}
.y14f{bottom:861.585000px;}
.y22{bottom:869.145000px;}
.y4a{bottom:873.825000px;}
.y16d{bottom:879.225000px;}
.y8f{bottom:884.085000px;}
.y14e{bottom:886.965000px;}
.y21{bottom:889.485000px;}
.y7{bottom:892.725000px;}
.y6c{bottom:897.405000px;}
.y49{bottom:899.205000px;}
.yfc{bottom:900.465000px;}
.y16c{bottom:901.365000px;}
.y20{bottom:912.750000px;}
.y8e{bottom:921.390000px;}
.y16b{bottom:923.730000px;}
.y48{bottom:924.450000px;}
.yfb{bottom:925.710000px;}
.y6b{bottom:936.510000px;}
.y1f{bottom:940.110000px;}
.y16a{bottom:945.870000px;}
.y8d{bottom:946.770000px;}
.y47{bottom:949.650000px;}
.y14d{bottom:949.830000px;}
.y6a{bottom:961.710000px;}
.yfa{bottom:962.970000px;}
.y1e{bottom:963.330000px;}
.y6{bottom:964.590000px;}
.y169{bottom:968.190000px;}
.y8c{bottom:971.970000px;}
.y46{bottom:975.030000px;}
.y69{bottom:987.090000px;}
.y14c{bottom:987.450000px;}
.y168{bottom:990.510000px;}
.y1d{bottom:990.690000px;}
.y8b{bottom:997.170000px;}
.y45{bottom:1000.230000px;}
.y68{bottom:1012.290000px;}
.y167{bottom:1012.650000px;}
.y14b{bottom:1012.830000px;}
.y1c{bottom:1013.910000px;}
.y8a{bottom:1022.550000px;}
.y44{bottom:1025.610000px;}
.y5{bottom:1036.590000px;}
.y67{bottom:1037.490000px;}
.ybd{bottom:1038.930000px;}
.y1b{bottom:1041.090000px;}
.y89{bottom:1047.750000px;}
.y166{bottom:1049.010000px;}
.y14a{bottom:1050.270000px;}
.yf9{bottom:1050.810000px;}
.y43{bottom:1062.870000px;}
.y1a{bottom:1064.490000px;}
.y88{bottom:1073.130000px;}
.y149{bottom:1075.830000px;}
.ybc{bottom:1076.190000px;}
.y42{bottom:1088.070000px;}
.y19{bottom:1091.670000px;}
.y87{bottom:1098.330000px;}
.y18{bottom:1112.010000px;}
.y148{bottom:1113.270000px;}
.y41{bottom:1113.450000px;}
.y4{bottom:1120.290000px;}
.y17{bottom:1135.230000px;}
.y86{bottom:1136.850000px;}
.y40{bottom:1138.650000px;}
.y1{bottom:1194.300000px;}
.h8{height:30.077578px;}
.hb{height:50.597578px;}
.h15{height:53.709961px;}
.h16{height:53.853187px;}
.h1f{height:57.636562px;}
.h4{height:58.651172px;}
.h18{height:63.399375px;}
.he{height:65.154375px;}
.h1e{height:65.649961px;}
.h2{height:65.884219px;}
.h3{height:70.664062px;}
.hf{height:71.324297px;}
.h9{height:71.613281px;}
.h7{height:74.953125px;}
.ha{height:76.201172px;}
.h13{height:76.964840px;}
.h12{height:77.951250px;}
.h11{height:78.097500px;}
.hd{height:81.101250px;}
.h10{height:87.695156px;}
.hc{height:97.508719px;}
.h5{height:115.312500px;}
.h6{height:152.820000px;}
.h1d{height:243.540000px;}
.h14{height:270.000000px;}
.h19{height:303.840000px;}
.h17{height:315.180000px;}
.h1a{height:342.720000px;}
.h1c{height:358.920000px;}
.h1b{height:366.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:648.000000px;}
.w3{width:681.840000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:9.870000px;}
.x2e{left:16.635000px;}
.x2f{left:34.845000px;}
.x2d{left:41.190000px;}
.x29{left:46.650000px;}
.x2b{left:58.110000px;}
.x4c{left:63.150000px;}
.x27{left:69.585000px;}
.x43{left:74.130000px;}
.x28{left:75.240000px;}
.x3{left:86.760000px;}
.x18{left:88.950000px;}
.x1{left:108.036000px;}
.x1c{left:116.175000px;}
.x40{left:117.285000px;}
.x49{left:121.575000px;}
.x8{left:124.056000px;}
.x52{left:129.276000px;}
.x4{left:140.436000px;}
.x7{left:141.876000px;}
.x30{left:143.970000px;}
.x31{left:145.050000px;}
.x12{left:172.290000px;}
.x44{left:183.705000px;}
.x4d{left:196.815000px;}
.x25{left:204.735000px;}
.x4e{left:221.550000px;}
.x1b{left:223.920000px;}
.x48{left:235.695000px;}
.x1d{left:238.530000px;}
.x23{left:240.330000px;}
.x16{left:243.030000px;}
.x22{left:252.030000px;}
.x3e{left:260.100000px;}
.x41{left:267.915000px;}
.x34{left:269.970000px;}
.x2a{left:272.490000px;}
.x24{left:275.370000px;}
.x32{left:280.440000px;}
.x10{left:285.015000px;}
.x33{left:286.350000px;}
.xf{left:292.035000px;}
.x11{left:298.875000px;}
.x1e{left:305.385000px;}
.x17{left:308.310000px;}
.x13{left:322.455000px;}
.xb{left:326.595000px;}
.x45{left:333.435000px;}
.xd{left:336.855000px;}
.xc{left:339.195000px;}
.xa{left:346.575000px;}
.x19{left:347.685000px;}
.x46{left:353.550000px;}
.x20{left:357.195000px;}
.x15{left:358.920000px;}
.x4f{left:365.010000px;}
.x6{left:369.435000px;}
.xe{left:371.955000px;}
.x1a{left:387.075000px;}
.x35{left:390.495000px;}
.x5{left:402.555000px;}
.x37{left:404.610000px;}
.x36{left:410.010000px;}
.x38{left:419.010000px;}
.x1f{left:427.245000px;}
.x2{left:434.775000px;}
.x4a{left:439.710000px;}
.x2c{left:444.885000px;}
.x9{left:446.475000px;}
.x47{left:497.310000px;}
.x51{left:515.265000px;}
.x50{left:521.490000px;}
.x3a{left:522.750000px;}
.x3b{left:525.165000px;}
.x3c{left:531.330000px;}
.x39{left:551.910000px;}
.x3d{left:557.820000px;}
.x21{left:567.285000px;}
.x42{left:569.160000px;}
.x4b{left:598.755000px;}
.x14{left:789.990000px;}
.x3f{left:823.650000px;}
@media print{
.v3{vertical-align:-101.493333pt;}
.v2{vertical-align:-50.720000pt;}
.v1{vertical-align:-21.280000pt;}
.v4{vertical-align:-10.506667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.613333pt;}
.ls14{letter-spacing:-1.328000pt;}
.ls10{letter-spacing:-0.460800pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.202133pt;}
.lse{letter-spacing:-0.081067pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010240pt;}
.ls16{letter-spacing:0.020480pt;}
.lsc{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.115200pt;}
.ls15{letter-spacing:0.122667pt;}
.lsd{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.174080pt;}
.ls4{letter-spacing:0.179200pt;}
.ls8{letter-spacing:0.235520pt;}
.ls6{letter-spacing:0.245867pt;}
.ls13{letter-spacing:0.348267pt;}
.ls5{letter-spacing:2.616320pt;}
.ls1{letter-spacing:12.313600pt;}
.ls12{letter-spacing:32.571307pt;}
.lsf{letter-spacing:224.624000pt;}
.wsb{word-spacing:-235.472000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.215360pt;}
.ws3{word-spacing:-18.503680pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.889067pt;}
.ws7{word-spacing:-14.822400pt;}
.ws14{word-spacing:-14.776533pt;}
.ws1d{word-spacing:-14.765867pt;}
.ws5{word-spacing:-14.643200pt;}
.ws13{word-spacing:-13.315200pt;}
.ws20{word-spacing:-12.974080pt;}
.ws1f{word-spacing:-12.953600pt;}
.ws1e{word-spacing:-12.751467pt;}
.ws2{word-spacing:-11.801600pt;}
.ws9{word-spacing:-10.876928pt;}
.ws8{word-spacing:-10.848000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:57.130667pt;}
.wsc{word-spacing:71.173333pt;}
.ws11{word-spacing:77.482667pt;}
.ws18{word-spacing:157.232000pt;}
.ws1c{word-spacing:162.762667pt;}
.wsf{word-spacing:303.738667pt;}
.ws10{word-spacing:303.898667pt;}
.ws17{word-spacing:380.644096pt;}
.ws16{word-spacing:380.965333pt;}
.ws1b{word-spacing:411.258667pt;}
.ws19{word-spacing:411.312000pt;}
.wsd{word-spacing:423.216000pt;}
.wse{word-spacing:423.228843pt;}
.ws1a{word-spacing:470.938667pt;}
.ws15{word-spacing:500.336000pt;}
._33{margin-left:-224.517333pt;}
._30{margin-left:-9.509760pt;}
._2c{margin-left:-8.450560pt;}
._24{margin-left:-7.016533pt;}
._18{margin-left:-5.512107pt;}
._21{margin-left:-4.141653pt;}
._8{margin-left:-2.960213pt;}
._9{margin-left:-1.930240pt;}
._6{margin-left:-0.947627pt;}
._0{width:1.086720pt;}
._4{width:2.567253pt;}
._1e{width:3.727360pt;}
._c{width:4.659200pt;}
._d{width:5.857280pt;}
._7{width:7.121920pt;}
._a{width:8.519680pt;}
._17{width:9.549653pt;}
._1c{width:10.781867pt;}
._5{width:11.846827pt;}
._35{width:12.740907pt;}
._23{width:13.644800pt;}
._26{width:15.579307pt;}
._13{width:16.872533pt;}
._12{width:17.904640pt;}
._b{width:19.502080pt;}
._19{width:20.621653pt;}
._22{width:22.297600pt;}
._16{width:24.094720pt;}
._11{width:25.559040pt;}
._10{width:26.757120pt;}
._1f{width:28.154880pt;}
._20{width:29.064960pt;}
._2a{width:30.145493pt;}
._2b{width:31.216853pt;}
._15{width:32.957867pt;}
._14{width:33.996373pt;}
._25{width:35.276800pt;}
._27{width:36.608000pt;}
._2d{width:38.005760pt;}
._e{width:38.937600pt;}
._f{width:40.135680pt;}
._34{width:41.106347pt;}
._1d{width:45.160107pt;}
._1b{width:46.240000pt;}
._2f{width:50.635520pt;}
._2e{width:51.808427pt;}
._29{width:54.291200pt;}
._36{width:63.767040pt;}
._37{width:65.062400pt;}
._32{width:99.440000pt;}
._31{width:105.242667pt;}
._28{width:124.334080pt;}
._1a{width:126.442240pt;}
._3{width:160.106667pt;}
._1{width:169.866667pt;}
._2{width:176.000000pt;}
.fs6{font-size:26.880000pt;}
.fs2{font-size:48.000000pt;}
.fsc{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:66.560000pt;}
.fsa{font-size:69.120000pt;}
.fsb{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.fs8{font-size:84.326561pt;}
.fs4{font-size:128.000000pt;}
.fs5{font-size:181.120000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:15.586667pt;}
.yd1{bottom:15.653333pt;}
.yd7{bottom:15.680000pt;}
.ye9{bottom:15.706667pt;}
.y147{bottom:15.712000pt;}
.y3{bottom:20.800000pt;}
.y16{bottom:21.600000pt;}
.y2{bottom:36.800000pt;}
.y15{bottom:39.360000pt;}
.y3f{bottom:40.000000pt;}
.yf3{bottom:42.173333pt;}
.y119{bottom:42.266667pt;}
.y146{bottom:42.306667pt;}
.y118{bottom:56.933333pt;}
.y145{bottom:56.960000pt;}
.y117{bottom:71.586667pt;}
.y144{bottom:71.613333pt;}
.y12f{bottom:72.506667pt;}
.yeb{bottom:73.853333pt;}
.ye5{bottom:81.920000pt;}
.y109{bottom:82.080000pt;}
.ya8{bottom:85.600000pt;}
.yef{bottom:85.693333pt;}
.y116{bottom:86.213333pt;}
.yf4{bottom:86.373333pt;}
.y13c{bottom:87.200000pt;}
.yd6{bottom:87.586667pt;}
.y66{bottom:88.800000pt;}
.y85{bottom:90.080000pt;}
.y129{bottom:95.360000pt;}
.y136{bottom:96.960000pt;}
.y13b{bottom:99.773333pt;}
.y115{bottom:100.866667pt;}
.y3e{bottom:101.120000pt;}
.y14{bottom:103.040000pt;}
.y13d{bottom:103.106667pt;}
.y12e{bottom:103.586667pt;}
.y165{bottom:103.840000pt;}
.ye4{bottom:104.320000pt;}
.yce{bottom:105.440000pt;}
.ya7{bottom:108.160000pt;}
.y12d{bottom:109.946667pt;}
.y130{bottom:110.586667pt;}
.y65{bottom:111.200000pt;}
.y84{bottom:112.640000pt;}
.ye7{bottom:113.626667pt;}
.ycb{bottom:115.200000pt;}
.y10e{bottom:116.480000pt;}
.y13e{bottom:118.973333pt;}
.y3d{bottom:123.520000pt;}
.y13{bottom:125.760000pt;}
.y164{bottom:126.560000pt;}
.y10d{bottom:129.093333pt;}
.ycf{bottom:130.426667pt;}
.ya6{bottom:130.560000pt;}
.yec{bottom:131.013333pt;}
.y64{bottom:133.760000pt;}
.y138{bottom:134.173333pt;}
.y13f{bottom:134.853333pt;}
.y83{bottom:135.360000pt;}
.ye3{bottom:137.440000pt;}
.yca{bottom:137.760000pt;}
.yf0{bottom:142.880000pt;}
.yf5{bottom:143.520000pt;}
.y3c{bottom:145.920000pt;}
.y10f{bottom:148.346667pt;}
.y12{bottom:148.480000pt;}
.y131{bottom:148.666667pt;}
.y139{bottom:150.080000pt;}
.yd5{bottom:150.586667pt;}
.y140{bottom:150.720000pt;}
.y63{bottom:156.186667pt;}
.y163{bottom:159.866667pt;}
.ye2{bottom:160.026667pt;}
.yc9{bottom:160.186667pt;}
.y10c{bottom:163.653333pt;}
.ya5{bottom:163.706667pt;}
.y137{bottom:165.946667pt;}
.y141{bottom:166.586667pt;}
.ybb{bottom:168.026667pt;}
.y3b{bottom:168.506667pt;}
.y82{bottom:168.666667pt;}
.y108{bottom:170.906667pt;}
.y11{bottom:171.546667pt;}
.ye8{bottom:177.626667pt;}
.ycd{bottom:178.466667pt;}
.y62{bottom:178.746667pt;}
.y110{bottom:180.226667pt;}
.y13a{bottom:181.826667pt;}
.y162{bottom:182.426667pt;}
.y142{bottom:182.493333pt;}
.yc8{bottom:182.586667pt;}
.y12c{bottom:186.106667pt;}
.ya4{bottom:186.266667pt;}
.y132{bottom:186.746667pt;}
.yed{bottom:188.186667pt;}
.ye1{bottom:190.746667pt;}
.y3a{bottom:190.906667pt;}
.y81{bottom:191.226667pt;}
.yea{bottom:192.160000pt;}
.y107{bottom:193.306667pt;}
.y10b{bottom:195.520000pt;}
.y143{bottom:198.373333pt;}
.yf1{bottom:200.026667pt;}
.yf6{bottom:200.706667pt;}
.yba{bottom:202.746667pt;}
.yc7{bottom:205.146667pt;}
.y111{bottom:212.133333pt;}
.y61{bottom:212.826667pt;}
.y39{bottom:213.466667pt;}
.yd4{bottom:213.600000pt;}
.y106{bottom:215.866667pt;}
.yd0{bottom:217.466667pt;}
.y10{bottom:218.106667pt;}
.ya3{bottom:220.506667pt;}
.yc6{bottom:223.866667pt;}
.y80{bottom:224.506667pt;}
.y133{bottom:224.826667pt;}
.yb9{bottom:225.146667pt;}
.yd2{bottom:225.920000pt;}
.y38{bottom:235.866667pt;}
.y161{bottom:238.426667pt;}
.y112{bottom:244.000000pt;}
.yee{bottom:245.346667pt;}
.y7f{bottom:247.226667pt;}
.y60{bottom:247.706667pt;}
.y105{bottom:248.986667pt;}
.ya2{bottom:255.226667pt;}
.yd3{bottom:255.613333pt;}
.yf2{bottom:257.213333pt;}
.yf7{bottom:257.853333pt;}
.y37{bottom:258.426667pt;}
.y12b{bottom:262.266667pt;}
.y134{bottom:262.906667pt;}
.y5f{bottom:270.106667pt;}
.y104{bottom:271.386667pt;}
.y160{bottom:271.706667pt;}
.y113{bottom:275.866667pt;}
.ya1{bottom:277.626667pt;}
.y7e{bottom:280.506667pt;}
.yf{bottom:282.106667pt;}
.y5e{bottom:292.506667pt;}
.y36{bottom:294.426667pt;}
.ya0{bottom:300.186667pt;}
.y135{bottom:300.986667pt;}
.y7d{bottom:303.066667pt;}
.y103{bottom:304.666667pt;}
.y114{bottom:307.746667pt;}
.y5d{bottom:315.066667pt;}
.y9f{bottom:322.586667pt;}
.y102{bottom:327.066667pt;}
.y15f{bottom:327.706667pt;}
.y128{bottom:330.586667pt;}
.y7c{bottom:336.506667pt;}
.y5c{bottom:337.466667pt;}
.y9e{bottom:345.146667pt;}
.ye{bottom:345.946667pt;}
.yb8{bottom:348.186667pt;}
.y101{bottom:349.466667pt;}
.y15e{bottom:350.266667pt;}
.y35{bottom:350.746667pt;}
.y127{bottom:353.146667pt;}
.y7b{bottom:359.066667pt;}
.y5b{bottom:360.026667pt;}
.y9d{bottom:367.586667pt;}
.yb7{bottom:370.626667pt;}
.y34{bottom:373.186667pt;}
.y5a{bottom:382.466667pt;}
.y100{bottom:382.786667pt;}
.y15d{bottom:383.426667pt;}
.y126{bottom:386.306667pt;}
.y9c{bottom:389.986667pt;}
.y7a{bottom:392.226667pt;}
.yb6{bottom:393.186667pt;}
.y33{bottom:395.746667pt;}
.y59{bottom:405.026667pt;}
.yff{bottom:405.186667pt;}
.y15c{bottom:405.986667pt;}
.y125{bottom:408.706667pt;}
.yd{bottom:409.986667pt;}
.yb5{bottom:415.586667pt;}
.y32{bottom:418.146667pt;}
.y9b{bottom:424.226667pt;}
.y79{bottom:426.466667pt;}
.y58{bottom:427.426667pt;}
.yfe{bottom:427.586667pt;}
.yb4{bottom:438.146667pt;}
.y15b{bottom:439.106667pt;}
.y31{bottom:440.706667pt;}
.y124{bottom:441.986667pt;}
.y57{bottom:449.986667pt;}
.yfd{bottom:457.186667pt;}
.y10a{bottom:457.280000pt;}
.y9a{bottom:458.946667pt;}
.yb3{bottom:460.546667pt;}
.y78{bottom:461.346667pt;}
.y15a{bottom:461.506667pt;}
.y30{bottom:463.106667pt;}
.y123{bottom:464.386667pt;}
.y56{bottom:472.386667pt;}
.yc{bottom:473.826667pt;}
.y99{bottom:481.506667pt;}
.yb2{bottom:483.106667pt;}
.y77{bottom:484.066667pt;}
.y2f{bottom:485.506667pt;}
.y122{bottom:486.786667pt;}
.y98{bottom:503.906667pt;}
.y17a{bottom:504.706667pt;}
.y159{bottom:506.466667pt;}
.y55{bottom:506.626667pt;}
.y2e{bottom:508.066667pt;}
.yc5{bottom:512.546667pt;}
.ye0{bottom:514.146667pt;}
.yb1{bottom:516.226667pt;}
.y76{bottom:517.346667pt;}
.y121{bottom:520.226667pt;}
.y179{bottom:524.386667pt;}
.y97{bottom:526.466667pt;}
.y158{bottom:529.026667pt;}
.y2d{bottom:530.466667pt;}
.yc4{bottom:534.946667pt;}
.yb{bottom:537.826667pt;}
.yb0{bottom:538.626667pt;}
.y75{bottom:539.906667pt;}
.y54{bottom:541.346667pt;}
.y120{bottom:542.786667pt;}
.y178{bottom:544.226667pt;}
.ydf{bottom:546.626667pt;}
.y96{bottom:548.866667pt;}
.y2c{bottom:553.026667pt;}
.yaf{bottom:561.186667pt;}
.y157{bottom:562.146667pt;}
.y53{bottom:563.746667pt;}
.y177{bottom:563.906667pt;}
.yc3{bottom:568.066667pt;}
.y95{bottom:571.426667pt;}
.y74{bottom:573.186667pt;}
.y2b{bottom:575.426667pt;}
.y11f{bottom:576.066667pt;}
.yde{bottom:579.746667pt;}
.yae{bottom:583.586667pt;}
.y176{bottom:583.746667pt;}
.y156{bottom:584.546667pt;}
.y52{bottom:586.333333pt;}
.yc2{bottom:590.653333pt;}
.y73{bottom:595.933333pt;}
.y2a{bottom:598.013333pt;}
.y11e{bottom:598.813333pt;}
.ya{bottom:601.693333pt;}
.y175{bottom:603.453333pt;}
.y94{bottom:605.693333pt;}
.yad{bottom:606.173333pt;}
.y155{bottom:607.133333pt;}
.y51{bottom:608.733333pt;}
.ydd{bottom:612.893333pt;}
.yc1{bottom:613.053333pt;}
.y29{bottom:620.413333pt;}
.y11d{bottom:621.373333pt;}
.y174{bottom:623.293333pt;}
.yac{bottom:628.573333pt;}
.y72{bottom:629.213333pt;}
.y154{bottom:629.533333pt;}
.y50{bottom:631.293333pt;}
.ydc{bottom:635.453333pt;}
.yc0{bottom:635.613333pt;}
.y93{bottom:640.413333pt;}
.y28{bottom:642.973333pt;}
.y173{bottom:643.133333pt;}
.yab{bottom:650.973333pt;}
.y71{bottom:651.773333pt;}
.y153{bottom:651.933333pt;}
.y4f{bottom:653.693333pt;}
.y11c{bottom:654.653333pt;}
.ydb{bottom:657.853333pt;}
.ybf{bottom:658.013333pt;}
.y92{bottom:662.813333pt;}
.y27{bottom:665.373333pt;}
.y9{bottom:665.693333pt;}
.yaa{bottom:673.533333pt;}
.y152{bottom:674.493333pt;}
.y4e{bottom:676.253333pt;}
.ybe{bottom:676.893333pt;}
.ycc{bottom:676.960000pt;}
.y11b{bottom:677.373333pt;}
.yda{bottom:680.413333pt;}
.y172{bottom:682.653333pt;}
.y70{bottom:685.213333pt;}
.y91{bottom:685.373333pt;}
.y26{bottom:687.773333pt;}
.ya9{bottom:695.933333pt;}
.y4d{bottom:698.653333pt;}
.y171{bottom:702.333333pt;}
.yd9{bottom:702.813333pt;}
.y6f{bottom:707.773333pt;}
.y11a{bottom:708.093333pt;}
.y151{bottom:708.733333pt;}
.y12a{bottom:708.960000pt;}
.y25{bottom:710.493333pt;}
.y90{bottom:718.493333pt;}
.y4c{bottom:721.213333pt;}
.y170{bottom:722.173333pt;}
.y8{bottom:729.533333pt;}
.yd8{bottom:733.693333pt;}
.ye6{bottom:735.520000pt;}
.y6e{bottom:740.893333pt;}
.y16f{bottom:742.013333pt;}
.y24{bottom:743.133333pt;}
.y150{bottom:743.453333pt;}
.y4b{bottom:754.333333pt;}
.y23{bottom:754.653333pt;}
.y16e{bottom:761.693333pt;}
.y6d{bottom:763.453333pt;}
.y14f{bottom:765.853333pt;}
.y22{bottom:772.573333pt;}
.y4a{bottom:776.733333pt;}
.y16d{bottom:781.533333pt;}
.y8f{bottom:785.853333pt;}
.y14e{bottom:788.413333pt;}
.y21{bottom:790.653333pt;}
.y7{bottom:793.533333pt;}
.y6c{bottom:797.693333pt;}
.y49{bottom:799.293333pt;}
.yfc{bottom:800.413333pt;}
.y16c{bottom:801.213333pt;}
.y20{bottom:811.333333pt;}
.y8e{bottom:819.013333pt;}
.y16b{bottom:821.093333pt;}
.y48{bottom:821.733333pt;}
.yfb{bottom:822.853333pt;}
.y6b{bottom:832.453333pt;}
.y1f{bottom:835.653333pt;}
.y16a{bottom:840.773333pt;}
.y8d{bottom:841.573333pt;}
.y47{bottom:844.133333pt;}
.y14d{bottom:844.293333pt;}
.y6a{bottom:854.853333pt;}
.yfa{bottom:855.973333pt;}
.y1e{bottom:856.293333pt;}
.y6{bottom:857.413333pt;}
.y169{bottom:860.613333pt;}
.y8c{bottom:863.973333pt;}
.y46{bottom:866.693333pt;}
.y69{bottom:877.413333pt;}
.y14c{bottom:877.733333pt;}
.y168{bottom:880.453333pt;}
.y1d{bottom:880.613333pt;}
.y8b{bottom:886.373333pt;}
.y45{bottom:889.093333pt;}
.y68{bottom:899.813333pt;}
.y167{bottom:900.133333pt;}
.y14b{bottom:900.293333pt;}
.y1c{bottom:901.253333pt;}
.y8a{bottom:908.933333pt;}
.y44{bottom:911.653333pt;}
.y5{bottom:921.413333pt;}
.y67{bottom:922.213333pt;}
.ybd{bottom:923.493333pt;}
.y1b{bottom:925.413333pt;}
.y89{bottom:931.333333pt;}
.y166{bottom:932.453333pt;}
.y14a{bottom:933.573333pt;}
.yf9{bottom:934.053333pt;}
.y43{bottom:944.773333pt;}
.y1a{bottom:946.213333pt;}
.y88{bottom:953.893333pt;}
.y149{bottom:956.293333pt;}
.ybc{bottom:956.613333pt;}
.y42{bottom:967.173333pt;}
.y19{bottom:970.373333pt;}
.y87{bottom:976.293333pt;}
.y18{bottom:988.453333pt;}
.y148{bottom:989.573333pt;}
.y41{bottom:989.733333pt;}
.y4{bottom:995.813333pt;}
.y17{bottom:1009.093333pt;}
.y86{bottom:1010.533333pt;}
.y40{bottom:1012.133333pt;}
.y1{bottom:1061.600000pt;}
.h8{height:26.735625pt;}
.hb{height:44.975625pt;}
.h15{height:47.742188pt;}
.h16{height:47.869500pt;}
.h1f{height:51.232500pt;}
.h4{height:52.134375pt;}
.h18{height:56.355000pt;}
.he{height:57.915000pt;}
.h1e{height:58.355521pt;}
.h2{height:58.563750pt;}
.h3{height:62.812500pt;}
.hf{height:63.399375pt;}
.h9{height:63.656250pt;}
.h7{height:66.625000pt;}
.ha{height:67.734375pt;}
.h13{height:68.413191pt;}
.h12{height:69.290000pt;}
.h11{height:69.420000pt;}
.hd{height:72.090000pt;}
.h10{height:77.951250pt;}
.hc{height:86.674417pt;}
.h5{height:102.500000pt;}
.h6{height:135.840000pt;}
.h1d{height:216.480000pt;}
.h14{height:240.000000pt;}
.h19{height:270.080000pt;}
.h17{height:280.160000pt;}
.h1a{height:304.640000pt;}
.h1c{height:319.040000pt;}
.h1b{height:325.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:576.000000pt;}
.w3{width:606.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:8.773333pt;}
.x2e{left:14.786667pt;}
.x2f{left:30.973333pt;}
.x2d{left:36.613333pt;}
.x29{left:41.466667pt;}
.x2b{left:51.653333pt;}
.x4c{left:56.133333pt;}
.x27{left:61.853333pt;}
.x43{left:65.893333pt;}
.x28{left:66.880000pt;}
.x3{left:77.120000pt;}
.x18{left:79.066667pt;}
.x1{left:96.032000pt;}
.x1c{left:103.266667pt;}
.x40{left:104.253333pt;}
.x49{left:108.066667pt;}
.x8{left:110.272000pt;}
.x52{left:114.912000pt;}
.x4{left:124.832000pt;}
.x7{left:126.112000pt;}
.x30{left:127.973333pt;}
.x31{left:128.933333pt;}
.x12{left:153.146667pt;}
.x44{left:163.293333pt;}
.x4d{left:174.946667pt;}
.x25{left:181.986667pt;}
.x4e{left:196.933333pt;}
.x1b{left:199.040000pt;}
.x48{left:209.506667pt;}
.x1d{left:212.026667pt;}
.x23{left:213.626667pt;}
.x16{left:216.026667pt;}
.x22{left:224.026667pt;}
.x3e{left:231.200000pt;}
.x41{left:238.146667pt;}
.x34{left:239.973333pt;}
.x2a{left:242.213333pt;}
.x24{left:244.773333pt;}
.x32{left:249.280000pt;}
.x10{left:253.346667pt;}
.x33{left:254.533333pt;}
.xf{left:259.586667pt;}
.x11{left:265.666667pt;}
.x1e{left:271.453333pt;}
.x17{left:274.053333pt;}
.x13{left:286.626667pt;}
.xb{left:290.306667pt;}
.x45{left:296.386667pt;}
.xd{left:299.426667pt;}
.xc{left:301.506667pt;}
.xa{left:308.066667pt;}
.x19{left:309.053333pt;}
.x46{left:314.266667pt;}
.x20{left:317.506667pt;}
.x15{left:319.040000pt;}
.x4f{left:324.453333pt;}
.x6{left:328.386667pt;}
.xe{left:330.626667pt;}
.x1a{left:344.066667pt;}
.x35{left:347.106667pt;}
.x5{left:357.826667pt;}
.x37{left:359.653333pt;}
.x36{left:364.453333pt;}
.x38{left:372.453333pt;}
.x1f{left:379.773333pt;}
.x2{left:386.466667pt;}
.x4a{left:390.853333pt;}
.x2c{left:395.453333pt;}
.x9{left:396.866667pt;}
.x47{left:442.053333pt;}
.x51{left:458.013333pt;}
.x50{left:463.546667pt;}
.x3a{left:464.666667pt;}
.x3b{left:466.813333pt;}
.x3c{left:472.293333pt;}
.x39{left:490.586667pt;}
.x3d{left:495.840000pt;}
.x21{left:504.253333pt;}
.x42{left:505.920000pt;}
.x4b{left:532.226667pt;}
.x14{left:702.213333pt;}
.x3f{left:732.133333pt;}
}




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