
    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_9a824cac97c57c13455aaa0d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.741211;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_72cf4299ef336b86b01d9e75.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_68bce6dfd8b211280ac32fa9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ea1b2e011d207e4693c949ce.woff')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_dda0803bc9b1d2a530a13b58.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_2362591b86b3ed1a925d8941.woff')format("woff");}.ff6{font-family:ff6;line-height:0.967285;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_fa73bc8d6748b9e19e7808c1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8718eb02d1efdcf196137e32.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2d941bbe966d8aaf92082bbd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_0993fedef7611418231d34fa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.692871;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_61b54ba85d2a6290ba8f3a08.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8f446aa235b317f4b9f75613.woff')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_a32e21116f4a1212e2ecf68d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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_23d81c5fbddd10444309dfd5.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_5e1654dd8fef8aaa5788525b.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e5d4aa5ca7b7ead60f7c0979.woff')format("woff");}.ff10{font-family:ff10;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9316102027d4540a23a67df5.woff')format("woff");}.ff11{font-family:ff11;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_02e10b9f95d8d81635982a84.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_bf9fba4e6fb6735e1029f5fb.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_11df529d2cf693e146fb3fd4.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1b{letter-spacing:-0.569088px;}
.ls17{letter-spacing:-0.470592px;}
.ls7{letter-spacing:-0.454176px;}
.ls1a{letter-spacing:-0.432288px;}
.ls1e{letter-spacing:-0.421344px;}
.ls12{letter-spacing:-0.417312px;}
.ls19{letter-spacing:-0.361152px;}
.ls10{letter-spacing:-0.338688px;}
.ls11{letter-spacing:-0.320544px;}
.ls14{letter-spacing:-0.260064px;}
.lsf{letter-spacing:-0.241920px;}
.lsa{letter-spacing:-0.241200px;}
.ls13{letter-spacing:-0.223776px;}
.ls1d{letter-spacing:-0.213408px;}
.ls8{letter-spacing:-0.186048px;}
.ls15{letter-spacing:-0.175392px;}
.ls1c{letter-spacing:-0.169632px;}
.ls4{letter-spacing:-0.158976px;}
.ls6{letter-spacing:-0.125856px;}
.ls9{letter-spacing:-0.115776px;}
.lsd{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.007200px;}
.lse{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.215136px;}
.ls3{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.240480px;}
.lsc{letter-spacing:0.262944px;}
.ls1f{letter-spacing:0.270864px;}
.ls16{letter-spacing:0.275616px;}
.ls0{letter-spacing:0.310752px;}
.ls20{letter-spacing:0.342144px;}
.ls21{letter-spacing:33.984000px;}
.ls2{letter-spacing:73.440000px;}
.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;}
}
.ws3{word-spacing:-26.821440px;}
.ws0{word-spacing:-18.288864px;}
.ws6{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.985600px;}
.ws10{word-spacing:-16.257600px;}
.ws7{word-spacing:-15.120000px;}
.wsa{word-spacing:-14.896224px;}
.wsb{word-spacing:-14.878080px;}
.ws8{word-spacing:-14.859936px;}
.ws9{word-spacing:-14.799456px;}
.wsd{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.wse{word-spacing:-13.866048px;}
.wsf{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.wsc{word-spacing:0.000000px;}
._4{margin-left:-9.862272px;}
._1d{margin-left:-6.609600px;}
._9{margin-left:-4.986720px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.073952px;}
._e{width:2.115504px;}
._d{width:3.160800px;}
._8{width:4.269600px;}
._10{width:6.206400px;}
._a{width:8.114400px;}
._6{width:9.486720px;}
._b{width:11.151504px;}
._19{width:12.925296px;}
._15{width:14.068800px;}
._17{width:15.386400px;}
._1a{width:16.920000px;}
._f{width:19.684800px;}
._18{width:21.492000px;}
._c{width:22.644000px;}
._11{width:24.393600px;}
._12{width:25.495200px;}
._14{width:26.906400px;}
._16{width:29.174400px;}
._13{width:31.381920px;}
._1b{width:32.388480px;}
._20{width:33.583680px;}
._1f{width:36.136800px;}
._21{width:37.188000px;}
._1e{width:43.840800px;}
._7{width:48.117600px;}
._5{width:73.298592px;}
._1c{width:140.971680px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(121,124,143);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y65{bottom:4.500000px;}
.y44{bottom:4.620000px;}
.y48{bottom:4.800000px;}
.y68{bottom:5.100000px;}
.y50{bottom:5.400000px;}
.y10{bottom:5.460000px;}
.y9{bottom:6.900000px;}
.y43{bottom:21.900000px;}
.y47{bottom:25.320000px;}
.y67{bottom:25.620000px;}
.y17{bottom:25.740000px;}
.yf{bottom:26.340000px;}
.y46{bottom:27.840000px;}
.y8{bottom:29.220000px;}
.y64{bottom:35.460000px;}
.y42{bottom:39.180000px;}
.y39{bottom:42.780000px;}
.ye{bottom:46.140000px;}
.y16{bottom:46.620000px;}
.yc{bottom:46.860000px;}
.y41{bottom:56.460000px;}
.y4{bottom:57.240000px;}
.y63{bottom:57.780000px;}
.y38{bottom:63.300000px;}
.y4e{bottom:65.520000px;}
.y15{bottom:67.500000px;}
.y4f{bottom:72.000000px;}
.y40{bottom:73.740000px;}
.y3{bottom:76.320000px;}
.y62{bottom:80.100000px;}
.y4d{bottom:82.080000px;}
.yb{bottom:83.220000px;}
.y37{bottom:84.180000px;}
.y14{bottom:88.380000px;}
.y11a{bottom:100.080000px;}
.y61{bottom:102.420000px;}
.ycb{bottom:104.400000px;}
.y36{bottom:104.700000px;}
.ye6{bottom:105.120000px;}
.y13{bottom:109.260000px;}
.ya9{bottom:112.320000px;}
.y7a{bottom:112.680000px;}
.ya{bottom:119.940000px;}
.y15b{bottom:124.200000px;}
.y60{bottom:124.740000px;}
.y35{bottom:125.580000px;}
.y49{bottom:127.440000px;}
.y12{bottom:130.500000px;}
.yca{bottom:135.360000px;}
.ye5{bottom:136.080000px;}
.y10b{bottom:139.680000px;}
.y119{bottom:140.040000px;}
.y45{bottom:141.000000px;}
.y7{bottom:143.340000px;}
.y79{bottom:143.640000px;}
.yfb{bottom:145.080000px;}
.y34{bottom:146.100000px;}
.y15a{bottom:146.520000px;}
.y5f{bottom:147.060000px;}
.ya8{bottom:152.280000px;}
.y100{bottom:158.040000px;}
.yc9{bottom:166.680000px;}
.y33{bottom:166.980000px;}
.ye4{bottom:167.040000px;}
.y159{bottom:168.840000px;}
.y5e{bottom:169.380000px;}
.y10a{bottom:170.640000px;}
.y13a{bottom:173.520000px;}
.y78{bottom:174.600000px;}
.yfa{bottom:176.040000px;}
.y118{bottom:180.360000px;}
.y18{bottom:181.500000px;}
.ya7{bottom:183.240000px;}
.y32{bottom:187.500000px;}
.yff{bottom:189.360000px;}
.y16a{bottom:191.160000px;}
.y5d{bottom:191.700000px;}
.y139{bottom:195.840000px;}
.ye3{bottom:198.360000px;}
.y158{bottom:200.160000px;}
.y109{bottom:201.600000px;}
.y95{bottom:205.560000px;}
.yc8{bottom:206.640000px;}
.yf9{bottom:207.360000px;}
.y31{bottom:208.380000px;}
.y169{bottom:213.480000px;}
.y5c{bottom:214.020000px;}
.y77{bottom:214.920000px;}
.y138{bottom:218.160000px;}
.y117{bottom:220.320000px;}
.ya6{bottom:223.560000px;}
.y30{bottom:228.900000px;}
.ye2{bottom:229.320000px;}
.y157{bottom:231.480000px;}
.y108{bottom:232.560000px;}
.y5b{bottom:236.340000px;}
.yc7{bottom:237.600000px;}
.yf8{bottom:238.320000px;}
.y168{bottom:244.800000px;}
.y94{bottom:245.520000px;}
.y76{bottom:245.880000px;}
.y2f{bottom:249.780000px;}
.y137{bottom:249.840000px;}
.y116{bottom:251.280000px;}
.y107{bottom:253.800000px;}
.y5a{bottom:258.660000px;}
.yfe{bottom:260.280000px;}
.ya5{bottom:263.520000px;}
.y3a{bottom:268.500000px;}
.yc6{bottom:268.560000px;}
.ye1{bottom:269.280000px;}
.y2e{bottom:270.300000px;}
.y106{bottom:274.320000px;}
.y167{bottom:276.120000px;}
.y75{bottom:276.840000px;}
.y59{bottom:280.980000px;}
.y136{bottom:281.160000px;}
.y156{bottom:285.120000px;}
.y2d{bottom:291.180000px;}
.yfd{bottom:291.240000px;}
.y105{bottom:295.200000px;}
.y166{bottom:298.440000px;}
.yc5{bottom:299.880000px;}
.ye0{bottom:300.240000px;}
.y58{bottom:303.300000px;}
.ya4{bottom:303.480000px;}
.y74{bottom:307.800000px;}
.y2c{bottom:311.700000px;}
.y155{bottom:316.440000px;}
.y115{bottom:322.560000px;}
.y104{bottom:325.440000px;}
.y57{bottom:325.620000px;}
.y135{bottom:325.800000px;}
.y165{bottom:329.760000px;}
.yc4{bottom:330.840000px;}
.ydf{bottom:331.560000px;}
.y2b{bottom:332.580000px;}
.y93{bottom:338.760000px;}
.yf7{bottom:340.560000px;}
.ya3{bottom:343.440000px;}
.y56{bottom:347.940000px;}
.y73{bottom:348.120000px;}
.y2a{bottom:353.100000px;}
.y114{bottom:353.520000px;}
.y134{bottom:357.120000px;}
.y164{bottom:361.080000px;}
.yc3{bottom:361.800000px;}
.yde{bottom:362.520000px;}
.y92{bottom:369.720000px;}
.y154{bottom:370.080000px;}
.y55{bottom:370.260000px;}
.yf6{bottom:371.520000px;}
.y29{bottom:373.980000px;}
.y72{bottom:379.080000px;}
.y163{bottom:383.400000px;}
.ya2{bottom:383.760000px;}
.y113{bottom:384.480000px;}
.y133{bottom:388.440000px;}
.y54{bottom:392.580000px;}
.yc2{bottom:392.760000px;}
.ydd{bottom:393.480000px;}
.y28{bottom:394.500000px;}
.y91{bottom:400.680000px;}
.y153{bottom:401.400000px;}
.yf5{bottom:402.480000px;}
.y71{bottom:410.040000px;}
.y132{bottom:410.760000px;}
.y162{bottom:414.720000px;}
.y53{bottom:414.900000px;}
.y52{bottom:415.260000px;}
.y27{bottom:415.380000px;}
.y112{bottom:415.440000px;}
.ya1{bottom:423.720000px;}
.yc1{bottom:424.080000px;}
.ydc{bottom:424.440000px;}
.y3f{bottom:426.300000px;}
.yf4{bottom:433.440000px;}
.y26{bottom:435.900000px;}
.y70{bottom:441.000000px;}
.y131{bottom:442.080000px;}
.y3e{bottom:443.580000px;}
.y152{bottom:446.040000px;}
.y111{bottom:446.760000px;}
.ydb{bottom:455.760000px;}
.y25{bottom:456.780000px;}
.y3d{bottom:460.860000px;}
.ya0{bottom:463.680000px;}
.yc0{bottom:464.040000px;}
.y103{bottom:464.760000px;}
.y161{bottom:468.360000px;}
.y90{bottom:471.960000px;}
.y130{bottom:473.400000px;}
.yf3{bottom:473.760000px;}
.y24{bottom:477.300000px;}
.y151{bottom:477.360000px;}
.y110{bottom:477.720000px;}
.y3c{bottom:478.140000px;}
.y6f{bottom:481.320000px;}
.yda{bottom:486.720000px;}
.ybf{bottom:495.000000px;}
.y3b{bottom:495.420000px;}
.y102{bottom:495.720000px;}
.y23{bottom:498.180000px;}
.y160{bottom:499.680000px;}
.y8f{bottom:502.920000px;}
.y9f{bottom:503.640000px;}
.yf2{bottom:504.720000px;}
.y10f{bottom:508.680000px;}
.y6e{bottom:512.280000px;}
.y22{bottom:518.700000px;}
.ybe{bottom:525.960000px;}
.yd9{bottom:526.680000px;}
.y12f{bottom:527.040000px;}
.y150{bottom:531.000000px;}
.y8e{bottom:533.880000px;}
.yf1{bottom:535.680000px;}
.y21{bottom:539.580000px;}
.y10e{bottom:539.640000px;}
.y6d{bottom:543.240000px;}
.y9e{bottom:543.600000px;}
.y15f{bottom:553.320000px;}
.ybd{bottom:557.280000px;}
.y101{bottom:557.640000px;}
.y12e{bottom:558.360000px;}
.y20{bottom:560.100000px;}
.y14f{bottom:562.320000px;}
.y8d{bottom:565.200000px;}
.yd8{bottom:566.640000px;}
.y6c{bottom:574.200000px;}
.y10d{bottom:579.600000px;}
.y12d{bottom:580.680000px;}
.y1f{bottom:580.980000px;}
.y9d{bottom:583.920000px;}
.y15e{bottom:584.640000px;}
.ybc{bottom:588.240000px;}
.y14e{bottom:593.640000px;}
.y8c{bottom:596.160000px;}
.yd7{bottom:597.600000px;}
.y1e{bottom:601.500000px;}
.y6b{bottom:605.160000px;}
.yf0{bottom:606.600000px;}
.y12c{bottom:612.000000px;}
.y14d{bottom:615.960000px;}
.ybb{bottom:619.200000px;}
.y10c{bottom:619.920000px;}
.y9c{bottom:623.880000px;}
.y1d{bottom:624.900000px;}
.y6a{bottom:626.400000px;}
.y8b{bottom:627.120000px;}
.yd6{bottom:628.920000px;}
.yef{bottom:637.920000px;}
.y15d{bottom:638.640000px;}
.y12b{bottom:643.320000px;}
.y14c{bottom:647.640000px;}
.y1c{bottom:649.020000px;}
.yba{bottom:650.160000px;}
.y69{bottom:657.360000px;}
.y8a{bottom:658.080000px;}
.yd5{bottom:659.880000px;}
.y9b{bottom:663.840000px;}
.y12a{bottom:665.640000px;}
.yee{bottom:668.880000px;}
.y15c{bottom:669.960000px;}
.y66{bottom:673.500000px;}
.y1b{bottom:674.580000px;}
.y14b{bottom:678.960000px;}
.y89{bottom:679.320000px;}
.yb9{bottom:690.480000px;}
.yd4{bottom:690.840000px;}
.y129{bottom:696.960000px;}
.y88{bottom:699.840000px;}
.y1a{bottom:700.140000px;}
.y14a{bottom:701.280000px;}
.y9a{bottom:703.800000px;}
.yed{bottom:708.840000px;}
.y51{bottom:715.500000px;}
.yb8{bottom:721.440000px;}
.y149{bottom:723.600000px;}
.y19{bottom:726.060000px;}
.y128{bottom:728.280000px;}
.y87{bottom:730.800000px;}
.yec{bottom:739.800000px;}
.y99{bottom:744.120000px;}
.y127{bottom:750.600000px;}
.yb7{bottom:752.400000px;}
.y148{bottom:754.920000px;}
.yd3{bottom:762.120000px;}
.y86{bottom:771.120000px;}
.y11{bottom:778.500000px;}
.y126{bottom:781.920000px;}
.yb6{bottom:783.360000px;}
.y98{bottom:784.080000px;}
.y147{bottom:786.240000px;}
.yd2{bottom:793.080000px;}
.y85{bottom:802.080000px;}
.y146{bottom:808.560000px;}
.y125{bottom:813.240000px;}
.yb5{bottom:814.320000px;}
.y97{bottom:824.040000px;}
.y145{bottom:830.880000px;}
.y84{bottom:833.040000px;}
.y124{bottom:835.560000px;}
.yb4{bottom:845.640000px;}
.yd1{bottom:855.000000px;}
.y123{bottom:858.240000px;}
.y144{bottom:862.200000px;}
.y96{bottom:864.000000px;}
.y83{bottom:873.000000px;}
.yb3{bottom:876.600000px;}
.y122{bottom:889.560000px;}
.y143{bottom:893.520000px;}
.yd0{bottom:895.320000px;}
.y82{bottom:904.320000px;}
.yeb{bottom:913.320000px;}
.y142{bottom:915.840000px;}
.yb2{bottom:916.560000px;}
.y121{bottom:920.880000px;}
.yd{bottom:925.500000px;}
.ycf{bottom:926.280000px;}
.y81{bottom:935.280000px;}
.y120{bottom:943.200000px;}
.yea{bottom:944.280000px;}
.y141{bottom:947.160000px;}
.yb1{bottom:947.520000px;}
.yce{bottom:957.240000px;}
.y11f{bottom:965.520000px;}
.y80{bottom:966.240000px;}
.ye9{bottom:975.240000px;}
.y140{bottom:978.480000px;}
.yb0{bottom:978.840000px;}
.ycd{bottom:988.200000px;}
.y6{bottom:988.500000px;}
.y11e{bottom:996.840000px;}
.y7f{bottom:997.200000px;}
.y13f{bottom:1000.800000px;}
.ye8{bottom:1006.200000px;}
.yaf{bottom:1009.800000px;}
.yfc{bottom:1019.520000px;}
.y13e{bottom:1023.120000px;}
.y11d{bottom:1028.160000px;}
.y7e{bottom:1028.520000px;}
.ye7{bottom:1037.520000px;}
.yae{bottom:1040.760000px;}
.y11c{bottom:1050.480000px;}
.y13d{bottom:1054.440000px;}
.y7d{bottom:1059.480000px;}
.ycc{bottom:1068.480000px;}
.yad{bottom:1071.360000px;}
.y13c{bottom:1085.760000px;}
.yac{bottom:1089.360000px;}
.y11b{bottom:1090.440000px;}
.y7c{bottom:1099.440000px;}
.y13b{bottom:1108.080000px;}
.yab{bottom:1110.240000px;}
.y7b{bottom:1130.400000px;}
.yaa{bottom:1130.760000px;}
.y4c{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y4b{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y4a{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h16{height:24.000000px;}
.h15{height:36.405703px;}
.h1c{height:40.310156px;}
.h4{height:41.574375px;}
.h14{height:41.868281px;}
.h11{height:41.993438px;}
.h13{height:42.000000px;}
.h1a{height:43.500000px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.hf{height:48.761719px;}
.ha{height:49.992188px;}
.he{height:50.027344px;}
.h18{height:54.000000px;}
.hd{height:56.593125px;}
.h7{height:62.472656px;}
.h19{height:63.175781px;}
.h1b{height:63.949219px;}
.h9{height:64.500000px;}
.h6{height:72.360000px;}
.h12{height:88.500000px;}
.h8{height:98.568984px;}
.hb{height:148.500000px;}
.h5{height:160.500000px;}
.h17{height:432.000000px;}
.h10{height:510.000000px;}
.hc{height:745.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:28.500000px;}
.w6{width:120.000000px;}
.w3{width:247.500000px;}
.w2{width:249.000000px;}
.w4{width:552.000000px;}
.w7{width:666.000000px;}
.w8{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.859964px;}
.xc{left:9.480108px;}
.x9{left:15.032604px;}
.x13{left:21.688464px;}
.xd{left:24.488148px;}
.x3{left:42.000000px;}
.x6{left:45.805656px;}
.xa{left:49.075536px;}
.x15{left:51.645252px;}
.x14{left:52.906512px;}
.x1{left:54.000000px;}
.x12{left:77.433096px;}
.x1b{left:81.000000px;}
.x11{left:86.072772px;}
.x10{left:89.254416px;}
.x1a{left:107.174916px;}
.xb{left:121.138680px;}
.x4{left:124.379904px;}
.x16{left:173.816040px;}
.x18{left:186.975192px;}
.x7{left:202.954080px;}
.xe{left:211.058040px;}
.x5{left:233.819832px;}
.xf{left:275.459880px;}
.x8{left:289.500000px;}
.x2{left:685.130400px;}
.x19{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1b{letter-spacing:-0.505856pt;}
.ls17{letter-spacing:-0.418304pt;}
.ls7{letter-spacing:-0.403712pt;}
.ls1a{letter-spacing:-0.384256pt;}
.ls1e{letter-spacing:-0.374528pt;}
.ls12{letter-spacing:-0.370944pt;}
.ls19{letter-spacing:-0.321024pt;}
.ls10{letter-spacing:-0.301056pt;}
.ls11{letter-spacing:-0.284928pt;}
.ls14{letter-spacing:-0.231168pt;}
.lsf{letter-spacing:-0.215040pt;}
.lsa{letter-spacing:-0.214400pt;}
.ls13{letter-spacing:-0.198912pt;}
.ls1d{letter-spacing:-0.189696pt;}
.ls8{letter-spacing:-0.165376pt;}
.ls15{letter-spacing:-0.155904pt;}
.ls1c{letter-spacing:-0.150784pt;}
.ls4{letter-spacing:-0.141312pt;}
.ls6{letter-spacing:-0.111872pt;}
.ls9{letter-spacing:-0.102912pt;}
.lsd{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.006400pt;}
.lse{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.191232pt;}
.ls3{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.213760pt;}
.lsc{letter-spacing:0.233728pt;}
.ls1f{letter-spacing:0.240768pt;}
.ls16{letter-spacing:0.244992pt;}
.ls0{letter-spacing:0.276224pt;}
.ls20{letter-spacing:0.304128pt;}
.ls21{letter-spacing:30.208000pt;}
.ls2{letter-spacing:65.280000pt;}
.ws3{word-spacing:-23.841280pt;}
.ws0{word-spacing:-16.256768pt;}
.ws6{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.987200pt;}
.ws10{word-spacing:-14.451200pt;}
.ws7{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.241088pt;}
.wsb{word-spacing:-13.224960pt;}
.ws8{word-spacing:-13.208832pt;}
.ws9{word-spacing:-13.155072pt;}
.wsd{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.wse{word-spacing:-12.325376pt;}
.wsf{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.wsc{word-spacing:0.000000pt;}
._4{margin-left:-8.766464pt;}
._1d{margin-left:-5.875200pt;}
._9{margin-left:-4.432640pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.954624pt;}
._e{width:1.880448pt;}
._d{width:2.809600pt;}
._8{width:3.795200pt;}
._10{width:5.516800pt;}
._a{width:7.212800pt;}
._6{width:8.432640pt;}
._b{width:9.912448pt;}
._19{width:11.489152pt;}
._15{width:12.505600pt;}
._17{width:13.676800pt;}
._1a{width:15.040000pt;}
._f{width:17.497600pt;}
._18{width:19.104000pt;}
._c{width:20.128000pt;}
._11{width:21.683200pt;}
._12{width:22.662400pt;}
._14{width:23.916800pt;}
._16{width:25.932800pt;}
._13{width:27.895040pt;}
._1b{width:28.789760pt;}
._20{width:29.852160pt;}
._1f{width:32.121600pt;}
._21{width:33.056000pt;}
._1e{width:38.969600pt;}
._7{width:42.771200pt;}
._5{width:65.154304pt;}
._1c{width:125.308160pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:4.000000pt;}
.y44{bottom:4.106667pt;}
.y48{bottom:4.266667pt;}
.y68{bottom:4.533333pt;}
.y50{bottom:4.800000pt;}
.y10{bottom:4.853333pt;}
.y9{bottom:6.133333pt;}
.y43{bottom:19.466667pt;}
.y47{bottom:22.506667pt;}
.y67{bottom:22.773333pt;}
.y17{bottom:22.880000pt;}
.yf{bottom:23.413333pt;}
.y46{bottom:24.746667pt;}
.y8{bottom:25.973333pt;}
.y64{bottom:31.520000pt;}
.y42{bottom:34.826667pt;}
.y39{bottom:38.026667pt;}
.ye{bottom:41.013333pt;}
.y16{bottom:41.440000pt;}
.yc{bottom:41.653333pt;}
.y41{bottom:50.186667pt;}
.y4{bottom:50.880000pt;}
.y63{bottom:51.360000pt;}
.y38{bottom:56.266667pt;}
.y4e{bottom:58.240000pt;}
.y15{bottom:60.000000pt;}
.y4f{bottom:64.000000pt;}
.y40{bottom:65.546667pt;}
.y3{bottom:67.840000pt;}
.y62{bottom:71.200000pt;}
.y4d{bottom:72.960000pt;}
.yb{bottom:73.973333pt;}
.y37{bottom:74.826667pt;}
.y14{bottom:78.560000pt;}
.y11a{bottom:88.960000pt;}
.y61{bottom:91.040000pt;}
.ycb{bottom:92.800000pt;}
.y36{bottom:93.066667pt;}
.ye6{bottom:93.440000pt;}
.y13{bottom:97.120000pt;}
.ya9{bottom:99.840000pt;}
.y7a{bottom:100.160000pt;}
.ya{bottom:106.613333pt;}
.y15b{bottom:110.400000pt;}
.y60{bottom:110.880000pt;}
.y35{bottom:111.626667pt;}
.y49{bottom:113.280000pt;}
.y12{bottom:116.000000pt;}
.yca{bottom:120.320000pt;}
.ye5{bottom:120.960000pt;}
.y10b{bottom:124.160000pt;}
.y119{bottom:124.480000pt;}
.y45{bottom:125.333333pt;}
.y7{bottom:127.413333pt;}
.y79{bottom:127.680000pt;}
.yfb{bottom:128.960000pt;}
.y34{bottom:129.866667pt;}
.y15a{bottom:130.240000pt;}
.y5f{bottom:130.720000pt;}
.ya8{bottom:135.360000pt;}
.y100{bottom:140.480000pt;}
.yc9{bottom:148.160000pt;}
.y33{bottom:148.426667pt;}
.ye4{bottom:148.480000pt;}
.y159{bottom:150.080000pt;}
.y5e{bottom:150.560000pt;}
.y10a{bottom:151.680000pt;}
.y13a{bottom:154.240000pt;}
.y78{bottom:155.200000pt;}
.yfa{bottom:156.480000pt;}
.y118{bottom:160.320000pt;}
.y18{bottom:161.333333pt;}
.ya7{bottom:162.880000pt;}
.y32{bottom:166.666667pt;}
.yff{bottom:168.320000pt;}
.y16a{bottom:169.920000pt;}
.y5d{bottom:170.400000pt;}
.y139{bottom:174.080000pt;}
.ye3{bottom:176.320000pt;}
.y158{bottom:177.920000pt;}
.y109{bottom:179.200000pt;}
.y95{bottom:182.720000pt;}
.yc8{bottom:183.680000pt;}
.yf9{bottom:184.320000pt;}
.y31{bottom:185.226667pt;}
.y169{bottom:189.760000pt;}
.y5c{bottom:190.240000pt;}
.y77{bottom:191.040000pt;}
.y138{bottom:193.920000pt;}
.y117{bottom:195.840000pt;}
.ya6{bottom:198.720000pt;}
.y30{bottom:203.466667pt;}
.ye2{bottom:203.840000pt;}
.y157{bottom:205.760000pt;}
.y108{bottom:206.720000pt;}
.y5b{bottom:210.080000pt;}
.yc7{bottom:211.200000pt;}
.yf8{bottom:211.840000pt;}
.y168{bottom:217.600000pt;}
.y94{bottom:218.240000pt;}
.y76{bottom:218.560000pt;}
.y2f{bottom:222.026667pt;}
.y137{bottom:222.080000pt;}
.y116{bottom:223.360000pt;}
.y107{bottom:225.600000pt;}
.y5a{bottom:229.920000pt;}
.yfe{bottom:231.360000pt;}
.ya5{bottom:234.240000pt;}
.y3a{bottom:238.666667pt;}
.yc6{bottom:238.720000pt;}
.ye1{bottom:239.360000pt;}
.y2e{bottom:240.266667pt;}
.y106{bottom:243.840000pt;}
.y167{bottom:245.440000pt;}
.y75{bottom:246.080000pt;}
.y59{bottom:249.760000pt;}
.y136{bottom:249.920000pt;}
.y156{bottom:253.440000pt;}
.y2d{bottom:258.826667pt;}
.yfd{bottom:258.880000pt;}
.y105{bottom:262.400000pt;}
.y166{bottom:265.280000pt;}
.yc5{bottom:266.560000pt;}
.ye0{bottom:266.880000pt;}
.y58{bottom:269.600000pt;}
.ya4{bottom:269.760000pt;}
.y74{bottom:273.600000pt;}
.y2c{bottom:277.066667pt;}
.y155{bottom:281.280000pt;}
.y115{bottom:286.720000pt;}
.y104{bottom:289.280000pt;}
.y57{bottom:289.440000pt;}
.y135{bottom:289.600000pt;}
.y165{bottom:293.120000pt;}
.yc4{bottom:294.080000pt;}
.ydf{bottom:294.720000pt;}
.y2b{bottom:295.626667pt;}
.y93{bottom:301.120000pt;}
.yf7{bottom:302.720000pt;}
.ya3{bottom:305.280000pt;}
.y56{bottom:309.280000pt;}
.y73{bottom:309.440000pt;}
.y2a{bottom:313.866667pt;}
.y114{bottom:314.240000pt;}
.y134{bottom:317.440000pt;}
.y164{bottom:320.960000pt;}
.yc3{bottom:321.600000pt;}
.yde{bottom:322.240000pt;}
.y92{bottom:328.640000pt;}
.y154{bottom:328.960000pt;}
.y55{bottom:329.120000pt;}
.yf6{bottom:330.240000pt;}
.y29{bottom:332.426667pt;}
.y72{bottom:336.960000pt;}
.y163{bottom:340.800000pt;}
.ya2{bottom:341.120000pt;}
.y113{bottom:341.760000pt;}
.y133{bottom:345.280000pt;}
.y54{bottom:348.960000pt;}
.yc2{bottom:349.120000pt;}
.ydd{bottom:349.760000pt;}
.y28{bottom:350.666667pt;}
.y91{bottom:356.160000pt;}
.y153{bottom:356.800000pt;}
.yf5{bottom:357.760000pt;}
.y71{bottom:364.480000pt;}
.y132{bottom:365.120000pt;}
.y162{bottom:368.640000pt;}
.y53{bottom:368.800000pt;}
.y52{bottom:369.120000pt;}
.y27{bottom:369.226667pt;}
.y112{bottom:369.280000pt;}
.ya1{bottom:376.640000pt;}
.yc1{bottom:376.960000pt;}
.ydc{bottom:377.280000pt;}
.y3f{bottom:378.933333pt;}
.yf4{bottom:385.280000pt;}
.y26{bottom:387.466667pt;}
.y70{bottom:392.000000pt;}
.y131{bottom:392.960000pt;}
.y3e{bottom:394.293333pt;}
.y152{bottom:396.480000pt;}
.y111{bottom:397.120000pt;}
.ydb{bottom:405.120000pt;}
.y25{bottom:406.026667pt;}
.y3d{bottom:409.653333pt;}
.ya0{bottom:412.160000pt;}
.yc0{bottom:412.480000pt;}
.y103{bottom:413.120000pt;}
.y161{bottom:416.320000pt;}
.y90{bottom:419.520000pt;}
.y130{bottom:420.800000pt;}
.yf3{bottom:421.120000pt;}
.y24{bottom:424.266667pt;}
.y151{bottom:424.320000pt;}
.y110{bottom:424.640000pt;}
.y3c{bottom:425.013333pt;}
.y6f{bottom:427.840000pt;}
.yda{bottom:432.640000pt;}
.ybf{bottom:440.000000pt;}
.y3b{bottom:440.373333pt;}
.y102{bottom:440.640000pt;}
.y23{bottom:442.826667pt;}
.y160{bottom:444.160000pt;}
.y8f{bottom:447.040000pt;}
.y9f{bottom:447.680000pt;}
.yf2{bottom:448.640000pt;}
.y10f{bottom:452.160000pt;}
.y6e{bottom:455.360000pt;}
.y22{bottom:461.066667pt;}
.ybe{bottom:467.520000pt;}
.yd9{bottom:468.160000pt;}
.y12f{bottom:468.480000pt;}
.y150{bottom:472.000000pt;}
.y8e{bottom:474.560000pt;}
.yf1{bottom:476.160000pt;}
.y21{bottom:479.626667pt;}
.y10e{bottom:479.680000pt;}
.y6d{bottom:482.880000pt;}
.y9e{bottom:483.200000pt;}
.y15f{bottom:491.840000pt;}
.ybd{bottom:495.360000pt;}
.y101{bottom:495.680000pt;}
.y12e{bottom:496.320000pt;}
.y20{bottom:497.866667pt;}
.y14f{bottom:499.840000pt;}
.y8d{bottom:502.400000pt;}
.yd8{bottom:503.680000pt;}
.y6c{bottom:510.400000pt;}
.y10d{bottom:515.200000pt;}
.y12d{bottom:516.160000pt;}
.y1f{bottom:516.426667pt;}
.y9d{bottom:519.040000pt;}
.y15e{bottom:519.680000pt;}
.ybc{bottom:522.880000pt;}
.y14e{bottom:527.680000pt;}
.y8c{bottom:529.920000pt;}
.yd7{bottom:531.200000pt;}
.y1e{bottom:534.666667pt;}
.y6b{bottom:537.920000pt;}
.yf0{bottom:539.200000pt;}
.y12c{bottom:544.000000pt;}
.y14d{bottom:547.520000pt;}
.ybb{bottom:550.400000pt;}
.y10c{bottom:551.040000pt;}
.y9c{bottom:554.560000pt;}
.y1d{bottom:555.466667pt;}
.y6a{bottom:556.800000pt;}
.y8b{bottom:557.440000pt;}
.yd6{bottom:559.040000pt;}
.yef{bottom:567.040000pt;}
.y15d{bottom:567.680000pt;}
.y12b{bottom:571.840000pt;}
.y14c{bottom:575.680000pt;}
.y1c{bottom:576.906667pt;}
.yba{bottom:577.920000pt;}
.y69{bottom:584.320000pt;}
.y8a{bottom:584.960000pt;}
.yd5{bottom:586.560000pt;}
.y9b{bottom:590.080000pt;}
.y12a{bottom:591.680000pt;}
.yee{bottom:594.560000pt;}
.y15c{bottom:595.520000pt;}
.y66{bottom:598.666667pt;}
.y1b{bottom:599.626667pt;}
.y14b{bottom:603.520000pt;}
.y89{bottom:603.840000pt;}
.yb9{bottom:613.760000pt;}
.yd4{bottom:614.080000pt;}
.y129{bottom:619.520000pt;}
.y88{bottom:622.080000pt;}
.y1a{bottom:622.346667pt;}
.y14a{bottom:623.360000pt;}
.y9a{bottom:625.600000pt;}
.yed{bottom:630.080000pt;}
.y51{bottom:636.000000pt;}
.yb8{bottom:641.280000pt;}
.y149{bottom:643.200000pt;}
.y19{bottom:645.386667pt;}
.y128{bottom:647.360000pt;}
.y87{bottom:649.600000pt;}
.yec{bottom:657.600000pt;}
.y99{bottom:661.440000pt;}
.y127{bottom:667.200000pt;}
.yb7{bottom:668.800000pt;}
.y148{bottom:671.040000pt;}
.yd3{bottom:677.440000pt;}
.y86{bottom:685.440000pt;}
.y11{bottom:692.000000pt;}
.y126{bottom:695.040000pt;}
.yb6{bottom:696.320000pt;}
.y98{bottom:696.960000pt;}
.y147{bottom:698.880000pt;}
.yd2{bottom:704.960000pt;}
.y85{bottom:712.960000pt;}
.y146{bottom:718.720000pt;}
.y125{bottom:722.880000pt;}
.yb5{bottom:723.840000pt;}
.y97{bottom:732.480000pt;}
.y145{bottom:738.560000pt;}
.y84{bottom:740.480000pt;}
.y124{bottom:742.720000pt;}
.yb4{bottom:751.680000pt;}
.yd1{bottom:760.000000pt;}
.y123{bottom:762.880000pt;}
.y144{bottom:766.400000pt;}
.y96{bottom:768.000000pt;}
.y83{bottom:776.000000pt;}
.yb3{bottom:779.200000pt;}
.y122{bottom:790.720000pt;}
.y143{bottom:794.240000pt;}
.yd0{bottom:795.840000pt;}
.y82{bottom:803.840000pt;}
.yeb{bottom:811.840000pt;}
.y142{bottom:814.080000pt;}
.yb2{bottom:814.720000pt;}
.y121{bottom:818.560000pt;}
.yd{bottom:822.666667pt;}
.ycf{bottom:823.360000pt;}
.y81{bottom:831.360000pt;}
.y120{bottom:838.400000pt;}
.yea{bottom:839.360000pt;}
.y141{bottom:841.920000pt;}
.yb1{bottom:842.240000pt;}
.yce{bottom:850.880000pt;}
.y11f{bottom:858.240000pt;}
.y80{bottom:858.880000pt;}
.ye9{bottom:866.880000pt;}
.y140{bottom:869.760000pt;}
.yb0{bottom:870.080000pt;}
.ycd{bottom:878.400000pt;}
.y6{bottom:878.666667pt;}
.y11e{bottom:886.080000pt;}
.y7f{bottom:886.400000pt;}
.y13f{bottom:889.600000pt;}
.ye8{bottom:894.400000pt;}
.yaf{bottom:897.600000pt;}
.yfc{bottom:906.240000pt;}
.y13e{bottom:909.440000pt;}
.y11d{bottom:913.920000pt;}
.y7e{bottom:914.240000pt;}
.ye7{bottom:922.240000pt;}
.yae{bottom:925.120000pt;}
.y11c{bottom:933.760000pt;}
.y13d{bottom:937.280000pt;}
.y7d{bottom:941.760000pt;}
.ycc{bottom:949.760000pt;}
.yad{bottom:952.320000pt;}
.y13c{bottom:965.120000pt;}
.yac{bottom:968.320000pt;}
.y11b{bottom:969.280000pt;}
.y7c{bottom:977.280000pt;}
.y13b{bottom:984.960000pt;}
.yab{bottom:986.880000pt;}
.y7b{bottom:1004.800000pt;}
.yaa{bottom:1005.120000pt;}
.y4c{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y4b{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y4a{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h16{height:21.333333pt;}
.h15{height:32.360625pt;}
.h1c{height:35.831250pt;}
.h4{height:36.955000pt;}
.h14{height:37.216250pt;}
.h11{height:37.327500pt;}
.h13{height:37.333333pt;}
.h1a{height:38.666667pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.hf{height:43.343750pt;}
.ha{height:44.437500pt;}
.he{height:44.468750pt;}
.h18{height:48.000000pt;}
.hd{height:50.305000pt;}
.h7{height:55.531250pt;}
.h19{height:56.156250pt;}
.h1b{height:56.843750pt;}
.h9{height:57.333333pt;}
.h6{height:64.320000pt;}
.h12{height:78.666667pt;}
.h8{height:87.616875pt;}
.hb{height:132.000000pt;}
.h5{height:142.666667pt;}
.h17{height:384.000000pt;}
.h10{height:453.333333pt;}
.hc{height:662.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:25.333333pt;}
.w6{width:106.666667pt;}
.w3{width:220.000000pt;}
.w2{width:221.333333pt;}
.w4{width:490.666667pt;}
.w7{width:592.000000pt;}
.w8{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:6.986635pt;}
.xc{left:8.426763pt;}
.x9{left:13.362315pt;}
.x13{left:19.278635pt;}
.xd{left:21.767243pt;}
.x3{left:37.333333pt;}
.x6{left:40.716139pt;}
.xa{left:43.622699pt;}
.x15{left:45.906891pt;}
.x14{left:47.028011pt;}
.x1{left:48.000000pt;}
.x12{left:68.829419pt;}
.x1b{left:72.000000pt;}
.x11{left:76.509131pt;}
.x10{left:79.337259pt;}
.x1a{left:95.266592pt;}
.xb{left:107.678827pt;}
.x4{left:110.559915pt;}
.x16{left:154.503147pt;}
.x18{left:166.200171pt;}
.x7{left:180.403627pt;}
.xe{left:187.607147pt;}
.x5{left:207.839851pt;}
.xf{left:244.853227pt;}
.x8{left:257.333333pt;}
.x2{left:609.004800pt;}
.x19{left:721.333333pt;}
}




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