
    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_5893cb59930e4c2d9fbb9f5a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_809f79b8d9be13ff53fcf49d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f1fad58395dc3a0fc8b9b6ee.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_2b2a6118dd4d6e9bff048bc6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_f078f02cd45428c062abb00b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_2429e8931bea1307c827ef91.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_dfd43a6c0a8bfcacb77bcff4.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_44565aac05d41ac7b03b56ce.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_b9731c5d3f2d55dc8220cc8e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_34fcbfa9c0a850306a6daeef.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_284680dff695e1eb2d48c557.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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_de179899abe0d78802f9cb48.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_85fe4d6b9496c182ef446576.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_406b9555301431137452a783.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.500000px;}
.v1{vertical-align:18.180000px;}
.ls9{letter-spacing:-2.724000px;}
.lsc{letter-spacing:-1.890000px;}
.ls18{letter-spacing:-1.740000px;}
.lse{letter-spacing:-1.596000px;}
.lsa{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.256200px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.690000px;}
.ls14{letter-spacing:0.994500px;}
.ls0{letter-spacing:1.416000px;}
.ls1{letter-spacing:1.476000px;}
.ls12{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.854000px;}
.lsd{letter-spacing:1.944000px;}
.ls3{letter-spacing:1.966500px;}
.ls4{letter-spacing:2.146500px;}
.ls13{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls16{letter-spacing:2.430000px;}
.ls15{letter-spacing:2.703000px;}
.ls6{letter-spacing:4.779000px;}
.ls1a{letter-spacing:19.887000px;}
.ls19{letter-spacing:46.887000px;}
.ls11{letter-spacing:64.887000px;}
.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;}
}
.ws4{word-spacing:-25.926000px;}
.ws7{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.wsa{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.wsc{word-spacing:-15.619500px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.wsd{word-spacing:-14.368800px;}
.ws8{word-spacing:-13.221000px;}
.wse{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._9{margin-left:-10.947000px;}
._8{margin-left:-9.553650px;}
._c{margin-left:-8.131500px;}
._7{margin-left:-6.766350px;}
._a{margin-left:-5.034450px;}
._b{margin-left:-3.759000px;}
._2{margin-left:-2.700000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._5{width:2.964000px;}
._4{width:4.020000px;}
._3{width:5.076000px;}
._19{width:6.181500px;}
._13{width:7.396500px;}
._d{width:8.482500px;}
._6{width:9.930000px;}
._12{width:11.406000px;}
._11{width:12.943500px;}
._15{width:16.551000px;}
._14{width:17.770500px;}
._f{width:21.033000px;}
._10{width:22.284000px;}
._1a{width:25.048500px;}
._e{width:26.265000px;}
._18{width:43.378500px;}
._16{width:48.421500px;}
._17{width:49.666500px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.y9c{bottom:3.390000px;}
.yab{bottom:3.420000px;}
.y18{bottom:4.500000px;}
.ye{bottom:11.250000px;}
.y1b{bottom:12.375000px;}
.yc{bottom:13.530000px;}
.y44{bottom:14.625000px;}
.y4{bottom:16.912500px;}
.y43{bottom:18.000000px;}
.y2{bottom:19.162500px;}
.y41{bottom:20.250000px;}
.yc3{bottom:21.375000px;}
.yc6{bottom:21.390000px;}
.ybc{bottom:21.405000px;}
.yb9{bottom:21.420000px;}
.y17{bottom:28.125000px;}
.yb{bottom:30.405000px;}
.y40{bottom:38.265000px;}
.y16{bottom:45.030000px;}
.y5{bottom:45.037500px;}
.ya{bottom:46.185000px;}
.y3f{bottom:55.170000px;}
.y15{bottom:57.405000px;}
.y1{bottom:68.662500px;}
.y14{bottom:70.905000px;}
.y3e{bottom:72.045000px;}
.y9{bottom:73.185000px;}
.y13{bottom:85.575000px;}
.y3d{bottom:90.075000px;}
.y8{bottom:93.480000px;}
.y12{bottom:104.700000px;}
.y3c{bottom:106.950000px;}
.y7{bottom:110.355000px;}
.y103{bottom:111.450000px;}
.y56{bottom:113.700000px;}
.yb7{bottom:118.237500px;}
.y3b{bottom:123.825000px;}
.ye7{bottom:124.987500px;}
.y94{bottom:126.112500px;}
.y102{bottom:129.487500px;}
.y11{bottom:130.605000px;}
.y55{bottom:130.612500px;}
.y2b{bottom:132.870000px;}
.yb6{bottom:136.237500px;}
.ye6{bottom:141.862500px;}
.y3a{bottom:141.870000px;}
.y93{bottom:142.987500px;}
.y101{bottom:146.362500px;}
.y2a{bottom:147.495000px;}
.y54{bottom:148.612500px;}
.yb5{bottom:153.105000px;}
.y10{bottom:155.355000px;}
.y39{bottom:158.745000px;}
.ye5{bottom:159.900000px;}
.y92{bottom:161.025000px;}
.y132{bottom:162.150000px;}
.y100{bottom:163.275000px;}
.y53{bottom:165.525000px;}
.y29{bottom:166.620000px;}
.yb4{bottom:170.025000px;}
.y38{bottom:175.665000px;}
.ye4{bottom:176.775000px;}
.y91{bottom:177.900000px;}
.y131{bottom:179.025000px;}
.yff{bottom:181.275000px;}
.y52{bottom:182.400000px;}
.y28{bottom:183.540000px;}
.yb3{bottom:188.025000px;}
.ye3{bottom:193.650000px;}
.y37{bottom:193.665000px;}
.y90{bottom:194.775000px;}
.yfe{bottom:198.150000px;}
.y51{bottom:200.400000px;}
.y27{bottom:200.415000px;}
.yb2{bottom:204.945000px;}
.y36{bottom:210.570000px;}
.ye2{bottom:211.695000px;}
.y8f{bottom:212.820000px;}
.yfd{bottom:215.070000px;}
.y50{bottom:217.320000px;}
.y26{bottom:218.445000px;}
.yb1{bottom:221.820000px;}
.y35{bottom:227.445000px;}
.ye1{bottom:228.570000px;}
.y8e{bottom:229.695000px;}
.yfc{bottom:233.070000px;}
.y4f{bottom:234.195000px;}
.y25{bottom:235.320000px;}
.yb0{bottom:239.820000px;}
.y130{bottom:244.350000px;}
.y34{bottom:245.445000px;}
.ye0{bottom:245.475000px;}
.y8d{bottom:246.600000px;}
.yfb{bottom:249.975000px;}
.y4e{bottom:252.225000px;}
.y24{bottom:253.350000px;}
.yaf{bottom:256.725000px;}
.y12f{bottom:261.225000px;}
.y33{bottom:262.350000px;}
.ydf{bottom:263.475000px;}
.y8c{bottom:264.600000px;}
.yfa{bottom:266.850000px;}
.y4d{bottom:269.100000px;}
.y23{bottom:270.225000px;}
.yae{bottom:271.350000px;}
.yde{bottom:276.975000px;}
.y32{bottom:279.225000px;}
.y8b{bottom:281.475000px;}
.yf9{bottom:284.895000px;}
.y4c{bottom:286.005000px;}
.y22{bottom:288.240000px;}
.yad{bottom:289.380000px;}
.y12e{bottom:293.880000px;}
.y31{bottom:297.270000px;}
.y8a{bottom:298.395000px;}
.yf8{bottom:301.770000px;}
.y4b{bottom:304.005000px;}
.y21{bottom:305.145000px;}
.yac{bottom:307.380000px;}
.y12d{bottom:309.630000px;}
.y30{bottom:314.145000px;}
.y89{bottom:316.380000px;}
.yf7{bottom:318.645000px;}
.y4a{bottom:320.880000px;}
.y20{bottom:323.145000px;}
.yaa{bottom:325.380000px;}
.y12c{bottom:326.550000px;}
.y2f{bottom:331.020000px;}
.y88{bottom:333.300000px;}
.yf6{bottom:336.675000px;}
.y49{bottom:337.800000px;}
.y1f{bottom:340.050000px;}
.ya9{bottom:343.425000px;}
.y2e{bottom:349.050000px;}
.y87{bottom:350.175000px;}
.yf5{bottom:353.550000px;}
.y48{bottom:355.800000px;}
.y12b{bottom:359.175000px;}
.ya8{bottom:361.425000px;}
.y2d{bottom:365.925000px;}
.y1e{bottom:367.050000px;}
.y86{bottom:368.205000px;}
.yf4{bottom:370.455000px;}
.y47{bottom:372.720000px;}
.y12a{bottom:376.095000px;}
.ya7{bottom:379.455000px;}
.y2c{bottom:382.845000px;}
.y85{bottom:385.080000px;}
.y1d{bottom:385.095000px;}
.yf3{bottom:388.455000px;}
.y46{bottom:389.595000px;}
.y129{bottom:391.830000px;}
.yd2{bottom:398.580000px;}
.ya6{bottom:400.830000px;}
.y84{bottom:401.955000px;}
.yf2{bottom:405.330000px;}
.y45{bottom:407.580000px;}
.y128{bottom:408.705000px;}
.ya5{bottom:417.750000px;}
.y83{bottom:420.000000px;}
.y42{bottom:422.250000px;}
.y127{bottom:424.500000px;}
.ya4{bottom:435.750000px;}
.y82{bottom:436.875000px;}
.yf1{bottom:440.250000px;}
.y126{bottom:441.375000px;}
.y1c{bottom:451.530000px;}
.ya3{bottom:452.670000px;}
.y81{bottom:453.795000px;}
.yf0{bottom:457.170000px;}
.ya2{bottom:469.545000px;}
.y80{bottom:471.780000px;}
.yef{bottom:474.045000px;}
.ya1{bottom:487.545000px;}
.y7f{bottom:488.655000px;}
.y125{bottom:490.920000px;}
.yee{bottom:492.030000px;}
.ya0{bottom:504.450000px;}
.y7e{bottom:505.575000px;}
.y124{bottom:506.700000px;}
.yed{bottom:508.950000px;}
.y9f{bottom:519.075000px;}
.y7d{bottom:523.575000px;}
.yec{bottom:525.825000px;}
.y9e{bottom:537.105000px;}
.y123{bottom:539.370000px;}
.y7c{bottom:540.495000px;}
.yeb{bottom:543.870000px;}
.y9d{bottom:555.105000px;}
.y122{bottom:556.245000px;}
.y7b{bottom:557.370000px;}
.yea{bottom:560.745000px;}
.y121{bottom:571.980000px;}
.y9b{bottom:573.105000px;}
.y7a{bottom:575.355000px;}
.ye9{bottom:577.650000px;}
.y120{bottom:588.900000px;}
.y9a{bottom:591.150000px;}
.y79{bottom:592.275000px;}
.ye8{bottom:595.650000px;}
.y11f{bottom:605.775000px;}
.y78{bottom:609.150000px;}
.y99{bottom:612.525000px;}
.y11e{bottom:621.570000px;}
.y77{bottom:627.195000px;}
.y98{bottom:629.445000px;}
.y11d{bottom:638.445000px;}
.y76{bottom:646.320000px;}
.y97{bottom:647.445000px;}
.y11c{bottom:654.195000px;}
.y75{bottom:663.225000px;}
.y96{bottom:664.350000px;}
.ydd{bottom:669.975000px;}
.y11b{bottom:671.100000px;}
.y74{bottom:680.100000px;}
.y95{bottom:681.225000px;}
.ydc{bottom:686.850000px;}
.y73{bottom:699.225000px;}
.y11a{bottom:703.755000px;}
.ydb{bottom:704.880000px;}
.y72{bottom:716.145000px;}
.y119{bottom:720.630000px;}
.yda{bottom:721.755000px;}
.y71{bottom:733.020000px;}
.y118{bottom:736.395000px;}
.yd9{bottom:738.630000px;}
.y70{bottom:751.050000px;}
.y117{bottom:753.300000px;}
.yd8{bottom:756.675000px;}
.y6f{bottom:767.925000px;}
.y116{bottom:769.050000px;}
.yd7{bottom:773.550000px;}
.y6e{bottom:784.800000px;}
.y115{bottom:785.955000px;}
.yd6{bottom:790.455000px;}
.y114{bottom:801.705000px;}
.y6d{bottom:802.830000px;}
.yd5{bottom:808.455000px;}
.yd1{bottom:809.580000px;}
.y113{bottom:818.580000px;}
.y6c{bottom:819.705000px;}
.yd4{bottom:825.330000px;}
.yd0{bottom:827.625000px;}
.y112{bottom:834.375000px;}
.y6b{bottom:836.625000px;}
.yd3{bottom:838.875000px;}
.ycf{bottom:844.500000px;}
.y19{bottom:847.875000px;}
.y111{bottom:851.250000px;}
.y6a{bottom:854.625000px;}
.yce{bottom:861.375000px;}
.y110{bottom:868.125000px;}
.y69{bottom:871.545000px;}
.yf{bottom:878.295000px;}
.ycd{bottom:879.420000px;}
.y10f{bottom:883.920000px;}
.y68{bottom:888.420000px;}
.ycc{bottom:896.295000px;}
.y10e{bottom:900.795000px;}
.y67{bottom:906.420000px;}
.ycb{bottom:913.200000px;}
.y10d{bottom:916.575000px;}
.y66{bottom:923.325000px;}
.yca{bottom:931.200000px;}
.y10c{bottom:933.450000px;}
.y65{bottom:940.200000px;}
.yc9{bottom:948.075000px;}
.y10b{bottom:949.200000px;}
.y64{bottom:958.245000px;}
.yc5{bottom:962.730000px;}
.yc8{bottom:962.745000px;}
.y10a{bottom:966.120000px;}
.y63{bottom:975.120000px;}
.yc7{bottom:980.730000px;}
.y109{bottom:982.995000px;}
.y62{bottom:991.995000px;}
.yc2{bottom:998.775000px;}
.y61{bottom:1010.025000px;}
.y108{bottom:1015.650000px;}
.yc4{bottom:1016.775000px;}
.y60{bottom:1026.900000px;}
.y107{bottom:1031.400000px;}
.yc0{bottom:1034.775000px;}
.y5f{bottom:1043.820000px;}
.yd{bottom:1048.320000px;}
.yc1{bottom:1052.820000px;}
.y5e{bottom:1061.820000px;}
.y106{bottom:1064.070000px;}
.ybe{bottom:1070.820000px;}
.y6{bottom:1074.195000px;}
.y5d{bottom:1078.725000px;}
.y105{bottom:1080.975000px;}
.ybf{bottom:1088.850000px;}
.y5c{bottom:1095.600000px;}
.y104{bottom:1097.850000px;}
.ybb{bottom:1106.850000px;}
.y5b{bottom:1113.600000px;}
.ybd{bottom:1124.880000px;}
.y5a{bottom:1130.505000px;}
.yb8{bottom:1142.880000px;}
.y59{bottom:1147.380000px;}
.yba{bottom:1160.925000px;}
.y58{bottom:1165.425000px;}
.y57{bottom:1182.300000px;}
.h26{height:16.860000px;}
.h1f{height:16.875000px;}
.h24{height:16.897500px;}
.h20{height:16.912500px;}
.hb{height:25.875000px;}
.h1b{height:29.287500px;}
.h11{height:29.953125px;}
.h12{height:30.412500px;}
.h2{height:32.662500px;}
.h25{height:34.875000px;}
.h23{height:34.897500px;}
.h21{height:34.912500px;}
.h8{height:37.125000px;}
.h18{height:39.832031px;}
.h1a{height:40.847168px;}
.h19{height:41.275635px;}
.h17{height:41.389893px;}
.h1e{height:42.589600px;}
.hd{height:43.075195px;}
.ha{height:43.875000px;}
.h1c{height:46.218809px;}
.h1d{height:46.338809px;}
.h22{height:46.575439px;}
.h16{height:47.074219px;}
.h15{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:170.025000px;}
.h14{height:396.345000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w12{width:68.700000px;}
.w11{width:69.825000px;}
.we{width:69.862500px;}
.w2{width:74.362500px;}
.w10{width:87.862500px;}
.wf{width:90.112500px;}
.wc{width:92.362500px;}
.w4{width:152.055000px;}
.wb{width:177.975000px;}
.wd{width:210.630000px;}
.w7{width:223.020000px;}
.w9{width:373.950000px;}
.wa{width:373.995000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x25{left:11.250000px;}
.x14{left:12.420000px;}
.x22{left:16.920000px;}
.x1a{left:37.162500px;}
.x26{left:40.537500px;}
.x20{left:41.670000px;}
.x1c{left:45.030000px;}
.x28{left:50.700000px;}
.x27{left:54.075000px;}
.xf{left:64.200000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x15{left:108.149987px;}
.x11{left:120.532500px;}
.x10{left:131.782500px;}
.xe{left:146.437500px;}
.x12{left:214.012500px;}
.x19{left:216.254987px;}
.x16{left:223.049987px;}
.x7{left:225.300000px;}
.x18{left:252.344987px;}
.x1b{left:259.095000px;}
.xb{left:290.625000px;}
.x13{left:296.250000px;}
.x9{left:345.780000px;}
.x1d{left:351.450000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x23{left:422.400000px;}
.x2a{left:429.194987px;}
.x17{left:447.195000px;}
.xc{left:453.945000px;}
.x24{left:493.395000px;}
.x1e{left:563.220000px;}
.x1f{left:634.200000px;}
.x2c{left:657.824987px;}
.x29{left:658.949987px;}
.x2b{left:660.074987px;}
.x21{left:725.445000px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.000000pt;}
.v1{vertical-align:16.160000pt;}
.ls9{letter-spacing:-2.421333pt;}
.lsc{letter-spacing:-1.680000pt;}
.ls18{letter-spacing:-1.546667pt;}
.lse{letter-spacing:-1.418667pt;}
.lsa{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.227733pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.613333pt;}
.ls14{letter-spacing:0.884000pt;}
.ls0{letter-spacing:1.258667pt;}
.ls1{letter-spacing:1.312000pt;}
.ls12{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.648000pt;}
.lsd{letter-spacing:1.728000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls4{letter-spacing:1.908000pt;}
.ls13{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls16{letter-spacing:2.160000pt;}
.ls15{letter-spacing:2.402667pt;}
.ls6{letter-spacing:4.248000pt;}
.ls1a{letter-spacing:17.677333pt;}
.ls19{letter-spacing:41.677333pt;}
.ls11{letter-spacing:57.677333pt;}
.ws4{word-spacing:-23.045333pt;}
.ws7{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.wsa{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.wsc{word-spacing:-13.884000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.wsd{word-spacing:-12.772267pt;}
.ws8{word-spacing:-11.752000pt;}
.wse{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._9{margin-left:-9.730667pt;}
._8{margin-left:-8.492133pt;}
._c{margin-left:-7.228000pt;}
._7{margin-left:-6.014533pt;}
._a{margin-left:-4.475067pt;}
._b{margin-left:-3.341333pt;}
._2{margin-left:-2.400000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._5{width:2.634667pt;}
._4{width:3.573333pt;}
._3{width:4.512000pt;}
._19{width:5.494667pt;}
._13{width:6.574667pt;}
._d{width:7.540000pt;}
._6{width:8.826667pt;}
._12{width:10.138667pt;}
._11{width:11.505333pt;}
._15{width:14.712000pt;}
._14{width:15.796000pt;}
._f{width:18.696000pt;}
._10{width:19.808000pt;}
._1a{width:22.265333pt;}
._e{width:23.346667pt;}
._18{width:38.558667pt;}
._16{width:43.041333pt;}
._17{width:44.148000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.y9c{bottom:3.013333pt;}
.yab{bottom:3.040000pt;}
.y18{bottom:4.000000pt;}
.ye{bottom:10.000000pt;}
.y1b{bottom:11.000000pt;}
.yc{bottom:12.026667pt;}
.y44{bottom:13.000000pt;}
.y4{bottom:15.033333pt;}
.y43{bottom:16.000000pt;}
.y2{bottom:17.033333pt;}
.y41{bottom:18.000000pt;}
.yc3{bottom:19.000000pt;}
.yc6{bottom:19.013333pt;}
.ybc{bottom:19.026667pt;}
.yb9{bottom:19.040000pt;}
.y17{bottom:25.000000pt;}
.yb{bottom:27.026667pt;}
.y40{bottom:34.013333pt;}
.y16{bottom:40.026667pt;}
.y5{bottom:40.033333pt;}
.ya{bottom:41.053333pt;}
.y3f{bottom:49.040000pt;}
.y15{bottom:51.026667pt;}
.y1{bottom:61.033333pt;}
.y14{bottom:63.026667pt;}
.y3e{bottom:64.040000pt;}
.y9{bottom:65.053333pt;}
.y13{bottom:76.066667pt;}
.y3d{bottom:80.066667pt;}
.y8{bottom:83.093333pt;}
.y12{bottom:93.066667pt;}
.y3c{bottom:95.066667pt;}
.y7{bottom:98.093333pt;}
.y103{bottom:99.066667pt;}
.y56{bottom:101.066667pt;}
.yb7{bottom:105.100000pt;}
.y3b{bottom:110.066667pt;}
.ye7{bottom:111.100000pt;}
.y94{bottom:112.100000pt;}
.y102{bottom:115.100000pt;}
.y11{bottom:116.093333pt;}
.y55{bottom:116.100000pt;}
.y2b{bottom:118.106667pt;}
.yb6{bottom:121.100000pt;}
.ye6{bottom:126.100000pt;}
.y3a{bottom:126.106667pt;}
.y93{bottom:127.100000pt;}
.y101{bottom:130.100000pt;}
.y2a{bottom:131.106667pt;}
.y54{bottom:132.100000pt;}
.yb5{bottom:136.093333pt;}
.y10{bottom:138.093333pt;}
.y39{bottom:141.106667pt;}
.ye5{bottom:142.133333pt;}
.y92{bottom:143.133333pt;}
.y132{bottom:144.133333pt;}
.y100{bottom:145.133333pt;}
.y53{bottom:147.133333pt;}
.y29{bottom:148.106667pt;}
.yb4{bottom:151.133333pt;}
.y38{bottom:156.146667pt;}
.ye4{bottom:157.133333pt;}
.y91{bottom:158.133333pt;}
.y131{bottom:159.133333pt;}
.yff{bottom:161.133333pt;}
.y52{bottom:162.133333pt;}
.y28{bottom:163.146667pt;}
.yb3{bottom:167.133333pt;}
.ye3{bottom:172.133333pt;}
.y37{bottom:172.146667pt;}
.y90{bottom:173.133333pt;}
.yfe{bottom:176.133333pt;}
.y51{bottom:178.133333pt;}
.y27{bottom:178.146667pt;}
.yb2{bottom:182.173333pt;}
.y36{bottom:187.173333pt;}
.ye2{bottom:188.173333pt;}
.y8f{bottom:189.173333pt;}
.yfd{bottom:191.173333pt;}
.y50{bottom:193.173333pt;}
.y26{bottom:194.173333pt;}
.yb1{bottom:197.173333pt;}
.y35{bottom:202.173333pt;}
.ye1{bottom:203.173333pt;}
.y8e{bottom:204.173333pt;}
.yfc{bottom:207.173333pt;}
.y4f{bottom:208.173333pt;}
.y25{bottom:209.173333pt;}
.yb0{bottom:213.173333pt;}
.y130{bottom:217.200000pt;}
.y34{bottom:218.173333pt;}
.ye0{bottom:218.200000pt;}
.y8d{bottom:219.200000pt;}
.yfb{bottom:222.200000pt;}
.y4e{bottom:224.200000pt;}
.y24{bottom:225.200000pt;}
.yaf{bottom:228.200000pt;}
.y12f{bottom:232.200000pt;}
.y33{bottom:233.200000pt;}
.ydf{bottom:234.200000pt;}
.y8c{bottom:235.200000pt;}
.yfa{bottom:237.200000pt;}
.y4d{bottom:239.200000pt;}
.y23{bottom:240.200000pt;}
.yae{bottom:241.200000pt;}
.yde{bottom:246.200000pt;}
.y32{bottom:248.200000pt;}
.y8b{bottom:250.200000pt;}
.yf9{bottom:253.240000pt;}
.y4c{bottom:254.226667pt;}
.y22{bottom:256.213333pt;}
.yad{bottom:257.226667pt;}
.y12e{bottom:261.226667pt;}
.y31{bottom:264.240000pt;}
.y8a{bottom:265.240000pt;}
.yf8{bottom:268.240000pt;}
.y4b{bottom:270.226667pt;}
.y21{bottom:271.240000pt;}
.yac{bottom:273.226667pt;}
.y12d{bottom:275.226667pt;}
.y30{bottom:279.240000pt;}
.y89{bottom:281.226667pt;}
.yf7{bottom:283.240000pt;}
.y4a{bottom:285.226667pt;}
.y20{bottom:287.240000pt;}
.yaa{bottom:289.226667pt;}
.y12c{bottom:290.266667pt;}
.y2f{bottom:294.240000pt;}
.y88{bottom:296.266667pt;}
.yf6{bottom:299.266667pt;}
.y49{bottom:300.266667pt;}
.y1f{bottom:302.266667pt;}
.ya9{bottom:305.266667pt;}
.y2e{bottom:310.266667pt;}
.y87{bottom:311.266667pt;}
.yf5{bottom:314.266667pt;}
.y48{bottom:316.266667pt;}
.y12b{bottom:319.266667pt;}
.ya8{bottom:321.266667pt;}
.y2d{bottom:325.266667pt;}
.y1e{bottom:326.266667pt;}
.y86{bottom:327.293333pt;}
.yf4{bottom:329.293333pt;}
.y47{bottom:331.306667pt;}
.y12a{bottom:334.306667pt;}
.ya7{bottom:337.293333pt;}
.y2c{bottom:340.306667pt;}
.y85{bottom:342.293333pt;}
.y1d{bottom:342.306667pt;}
.yf3{bottom:345.293333pt;}
.y46{bottom:346.306667pt;}
.y129{bottom:348.293333pt;}
.yd2{bottom:354.293333pt;}
.ya6{bottom:356.293333pt;}
.y84{bottom:357.293333pt;}
.yf2{bottom:360.293333pt;}
.y45{bottom:362.293333pt;}
.y128{bottom:363.293333pt;}
.ya5{bottom:371.333333pt;}
.y83{bottom:373.333333pt;}
.y42{bottom:375.333333pt;}
.y127{bottom:377.333333pt;}
.ya4{bottom:387.333333pt;}
.y82{bottom:388.333333pt;}
.yf1{bottom:391.333333pt;}
.y126{bottom:392.333333pt;}
.y1c{bottom:401.360000pt;}
.ya3{bottom:402.373333pt;}
.y81{bottom:403.373333pt;}
.yf0{bottom:406.373333pt;}
.ya2{bottom:417.373333pt;}
.y80{bottom:419.360000pt;}
.yef{bottom:421.373333pt;}
.ya1{bottom:433.373333pt;}
.y7f{bottom:434.360000pt;}
.y125{bottom:436.373333pt;}
.yee{bottom:437.360000pt;}
.ya0{bottom:448.400000pt;}
.y7e{bottom:449.400000pt;}
.y124{bottom:450.400000pt;}
.yed{bottom:452.400000pt;}
.y9f{bottom:461.400000pt;}
.y7d{bottom:465.400000pt;}
.yec{bottom:467.400000pt;}
.y9e{bottom:477.426667pt;}
.y123{bottom:479.440000pt;}
.y7c{bottom:480.440000pt;}
.yeb{bottom:483.440000pt;}
.y9d{bottom:493.426667pt;}
.y122{bottom:494.440000pt;}
.y7b{bottom:495.440000pt;}
.yea{bottom:498.440000pt;}
.y121{bottom:508.426667pt;}
.y9b{bottom:509.426667pt;}
.y7a{bottom:511.426667pt;}
.ye9{bottom:513.466667pt;}
.y120{bottom:523.466667pt;}
.y9a{bottom:525.466667pt;}
.y79{bottom:526.466667pt;}
.ye8{bottom:529.466667pt;}
.y11f{bottom:538.466667pt;}
.y78{bottom:541.466667pt;}
.y99{bottom:544.466667pt;}
.y11e{bottom:552.506667pt;}
.y77{bottom:557.506667pt;}
.y98{bottom:559.506667pt;}
.y11d{bottom:567.506667pt;}
.y76{bottom:574.506667pt;}
.y97{bottom:575.506667pt;}
.y11c{bottom:581.506667pt;}
.y75{bottom:589.533333pt;}
.y96{bottom:590.533333pt;}
.ydd{bottom:595.533333pt;}
.y11b{bottom:596.533333pt;}
.y74{bottom:604.533333pt;}
.y95{bottom:605.533333pt;}
.ydc{bottom:610.533333pt;}
.y73{bottom:621.533333pt;}
.y11a{bottom:625.560000pt;}
.ydb{bottom:626.560000pt;}
.y72{bottom:636.573333pt;}
.y119{bottom:640.560000pt;}
.yda{bottom:641.560000pt;}
.y71{bottom:651.573333pt;}
.y118{bottom:654.573333pt;}
.yd9{bottom:656.560000pt;}
.y70{bottom:667.600000pt;}
.y117{bottom:669.600000pt;}
.yd8{bottom:672.600000pt;}
.y6f{bottom:682.600000pt;}
.y116{bottom:683.600000pt;}
.yd7{bottom:687.600000pt;}
.y6e{bottom:697.600000pt;}
.y115{bottom:698.626667pt;}
.yd6{bottom:702.626667pt;}
.y114{bottom:712.626667pt;}
.y6d{bottom:713.626667pt;}
.yd5{bottom:718.626667pt;}
.yd1{bottom:719.626667pt;}
.y113{bottom:727.626667pt;}
.y6c{bottom:728.626667pt;}
.yd4{bottom:733.626667pt;}
.yd0{bottom:735.666667pt;}
.y112{bottom:741.666667pt;}
.y6b{bottom:743.666667pt;}
.yd3{bottom:745.666667pt;}
.ycf{bottom:750.666667pt;}
.y19{bottom:753.666667pt;}
.y111{bottom:756.666667pt;}
.y6a{bottom:759.666667pt;}
.yce{bottom:765.666667pt;}
.y110{bottom:771.666667pt;}
.y69{bottom:774.706667pt;}
.yf{bottom:780.706667pt;}
.ycd{bottom:781.706667pt;}
.y10f{bottom:785.706667pt;}
.y68{bottom:789.706667pt;}
.ycc{bottom:796.706667pt;}
.y10e{bottom:800.706667pt;}
.y67{bottom:805.706667pt;}
.ycb{bottom:811.733333pt;}
.y10d{bottom:814.733333pt;}
.y66{bottom:820.733333pt;}
.yca{bottom:827.733333pt;}
.y10c{bottom:829.733333pt;}
.y65{bottom:835.733333pt;}
.yc9{bottom:842.733333pt;}
.y10b{bottom:843.733333pt;}
.y64{bottom:851.773333pt;}
.yc5{bottom:855.760000pt;}
.yc8{bottom:855.773333pt;}
.y10a{bottom:858.773333pt;}
.y63{bottom:866.773333pt;}
.yc7{bottom:871.760000pt;}
.y109{bottom:873.773333pt;}
.y62{bottom:881.773333pt;}
.yc2{bottom:887.800000pt;}
.y61{bottom:897.800000pt;}
.y108{bottom:902.800000pt;}
.yc4{bottom:903.800000pt;}
.y60{bottom:912.800000pt;}
.y107{bottom:916.800000pt;}
.yc0{bottom:919.800000pt;}
.y5f{bottom:927.840000pt;}
.yd{bottom:931.840000pt;}
.yc1{bottom:935.840000pt;}
.y5e{bottom:943.840000pt;}
.y106{bottom:945.840000pt;}
.ybe{bottom:951.840000pt;}
.y6{bottom:954.840000pt;}
.y5d{bottom:958.866667pt;}
.y105{bottom:960.866667pt;}
.ybf{bottom:967.866667pt;}
.y5c{bottom:973.866667pt;}
.y104{bottom:975.866667pt;}
.ybb{bottom:983.866667pt;}
.y5b{bottom:989.866667pt;}
.ybd{bottom:999.893333pt;}
.y5a{bottom:1004.893333pt;}
.yb8{bottom:1015.893333pt;}
.y59{bottom:1019.893333pt;}
.yba{bottom:1031.933333pt;}
.y58{bottom:1035.933333pt;}
.y57{bottom:1050.933333pt;}
.h26{height:14.986667pt;}
.h1f{height:15.000000pt;}
.h24{height:15.020000pt;}
.h20{height:15.033333pt;}
.hb{height:23.000000pt;}
.h1b{height:26.033333pt;}
.h11{height:26.625000pt;}
.h12{height:27.033333pt;}
.h2{height:29.033333pt;}
.h25{height:31.000000pt;}
.h23{height:31.020000pt;}
.h21{height:31.033333pt;}
.h8{height:33.000000pt;}
.h18{height:35.406250pt;}
.h1a{height:36.308594pt;}
.h19{height:36.689453pt;}
.h17{height:36.791016pt;}
.h1e{height:37.857422pt;}
.hd{height:38.289062pt;}
.ha{height:39.000000pt;}
.h1c{height:41.083385pt;}
.h1d{height:41.190052pt;}
.h22{height:41.400391pt;}
.h16{height:41.843750pt;}
.h15{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:151.133333pt;}
.h14{height:352.306667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w12{width:61.066667pt;}
.w11{width:62.066667pt;}
.we{width:62.100000pt;}
.w2{width:66.100000pt;}
.w10{width:78.100000pt;}
.wf{width:80.100000pt;}
.wc{width:82.100000pt;}
.w4{width:135.160000pt;}
.wb{width:158.200000pt;}
.wd{width:187.226667pt;}
.w7{width:198.240000pt;}
.w9{width:332.400000pt;}
.wa{width:332.440000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x25{left:10.000000pt;}
.x14{left:11.040000pt;}
.x22{left:15.040000pt;}
.x1a{left:33.033333pt;}
.x26{left:36.033333pt;}
.x20{left:37.040000pt;}
.x1c{left:40.026667pt;}
.x28{left:45.066667pt;}
.x27{left:48.066667pt;}
.xf{left:57.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x15{left:96.133322pt;}
.x11{left:107.140000pt;}
.x10{left:117.140000pt;}
.xe{left:130.166667pt;}
.x12{left:190.233333pt;}
.x19{left:192.226655pt;}
.x16{left:198.266655pt;}
.x7{left:200.266667pt;}
.x18{left:224.306655pt;}
.x1b{left:230.306667pt;}
.xb{left:258.333333pt;}
.x13{left:263.333333pt;}
.x9{left:307.360000pt;}
.x1d{left:312.400000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x23{left:375.466667pt;}
.x2a{left:381.506655pt;}
.x17{left:397.506667pt;}
.xc{left:403.506667pt;}
.x24{left:438.573333pt;}
.x1e{left:500.640000pt;}
.x1f{left:563.733333pt;}
.x2c{left:584.733322pt;}
.x29{left:585.733322pt;}
.x2b{left:586.733322pt;}
.x21{left:644.840000pt;}
.x3{left:663.840000pt;}
}




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