
    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_cd5307a0e6fbfcdfdd1da3f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_b5e2a2dc0e32f9ebe9ca9844.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_3d1968943b0ecce7a6392a09.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107910;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_c078920282ed3d978e0f9833.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_90c71b59bf682c64e03a3c4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109863;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_3e0eb2ee4ae3f58a09ca7b48.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_75a3c1de3c1146b4550dd8fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934000;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_f10572c763cac45542a2957d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_30d58b1afad57b97079d1a8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.888000;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_ea92aef6127670cf361fffa1.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.398000;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_71e60f427d0bfb41c31a2d40.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.578000;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_c568bec5f76c10a83034fd84.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.766000;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_28f63709327cbeaae5f4f44a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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_d3b43fb452c58c3a65ba1541.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.188000;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;}
.m4{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v1{vertical-align:-7.148508px;}
.v7{vertical-align:-1.362887px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.362887px;}
.v9{vertical-align:2.379486px;}
.v8{vertical-align:17.334880px;}
.v4{vertical-align:25.512000px;}
.v3{vertical-align:32.652000px;}
.v2{vertical-align:67.350000px;}
.v5{vertical-align:100.008000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.020402px;}
.ls3{letter-spacing:0.022936px;}
.ls1b{letter-spacing:0.029235px;}
.ls15{letter-spacing:0.031613px;}
.ls6{letter-spacing:0.034378px;}
.ls13{letter-spacing:0.034394px;}
.lsd{letter-spacing:0.034613px;}
.ls18{letter-spacing:0.037386px;}
.lse{letter-spacing:0.037394px;}
.ls11{letter-spacing:0.037452px;}
.ls1c{letter-spacing:0.079694px;}
.lsa{letter-spacing:0.295741px;}
.lsc{letter-spacing:2.922814px;}
.ls20{letter-spacing:3.739571px;}
.ls1e{letter-spacing:3.744353px;}
.ls17{letter-spacing:10.458365px;}
.lsf{letter-spacing:10.707387px;}
.ls4{letter-spacing:11.048787px;}
.ls1f{letter-spacing:11.725611px;}
.ls8{letter-spacing:13.179357px;}
.ls16{letter-spacing:13.714500px;}
.ls12{letter-spacing:16.152387px;}
.ls1d{letter-spacing:16.239876px;}
.ls7{letter-spacing:16.490787px;}
.ls0{letter-spacing:19.038201px;}
.ls21{letter-spacing:19.323600px;}
.ls1{letter-spacing:24.780635px;}
.ls22{letter-spacing:30.528671px;}
.ls5{letter-spacing:32.604085px;}
.ls10{letter-spacing:32.943611px;}
.ls14{letter-spacing:52.764577px;}
.ls19{letter-spacing:162.890850px;}
.ls1a{letter-spacing:318.418247px;}
.ls9{letter-spacing:1170.031402px;}
.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;}
}
.wsc{word-spacing:-47.820600px;}
.wsb{word-spacing:-30.844287px;}
.ws2{word-spacing:-24.230394px;}
.ws3{word-spacing:-14.011436px;}
.ws1{word-spacing:-13.040514px;}
.ws4{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.ws10{word-spacing:-11.208832px;}
.ws6{word-spacing:-10.061328px;}
.wsf{word-spacing:-9.563850px;}
.ws7{word-spacing:-7.770750px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:8.509566px;}
.ws8{word-spacing:9.261570px;}
.ws11{word-spacing:12.670188px;}
.ws12{word-spacing:12.674014px;}
.wse{word-spacing:12.781129px;}
.wsd{word-spacing:960.744546px;}
.wsa{word-spacing:1005.922170px;}
._4{margin-left:-17.343592px;}
._f{margin-left:-4.772496px;}
._b{margin-left:-3.663058px;}
._9{margin-left:-2.388609px;}
._8{margin-left:-1.071646px;}
._3{width:1.197320px;}
._1{width:2.352744px;}
._2{width:3.405413px;}
._6{width:4.871902px;}
._5{width:5.926333px;}
._7{width:6.980764px;}
._14{width:7.986040px;}
._e{width:9.042875px;}
._c{width:10.075800px;}
._12{width:11.146982px;}
._d{width:12.371189px;}
._10{width:15.164323px;}
._0{width:16.354440px;}
._15{width:17.492775px;}
._11{width:20.318240px;}
._13{width:22.151659px;}
._a{width:30.193927px;}
._16{width:43.736721px;}
._17{width:75.953459px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs6{font-size:26.761800px;}
.fse{font-size:31.083000px;}
.fsf{font-size:33.472800px;}
.fs10{font-size:35.867400px;}
.fs7{font-size:38.255400px;}
.fsc{font-size:38.256000px;}
.fs8{font-size:41.842200px;}
.fs5{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs4{font-size:44.327400px;}
.fs9{font-size:46.050600px;}
.fsa{font-size:47.820600px;}
.fsd{font-size:51.168000px;}
.fs1{font-size:57.384000px;}
.fs3{font-size:63.362400px;}
.fs2{font-size:80.697000px;}
.fsb{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y46{bottom:47.430000px;}
.y5{bottom:76.980000px;}
.yf4{bottom:78.407068px;}
.y192{bottom:78.407272px;}
.yf5{bottom:78.491250px;}
.y88{bottom:78.491386px;}
.y191{bottom:90.397470px;}
.y4{bottom:91.320000px;}
.y87{bottom:92.777850px;}
.yfe{bottom:94.053968px;}
.yf3{bottom:94.138850px;}
.y190{bottom:102.303507px;}
.y3{bottom:105.630000px;}
.yfd{bottom:107.744850px;}
.yf2{bottom:109.785750px;}
.yf1{bottom:109.786618px;}
.yfc{bottom:109.787636px;}
.y18f{bottom:114.293706px;}
.y44{bottom:119.905636px;}
.y102{bottom:125.432650px;}
.yfb{bottom:125.434536px;}
.yf0{bottom:125.518400px;}
.y18e{bottom:126.198786px;}
.y43{bottom:134.192100px;}
.y167{bottom:135.811574px;}
.y18d{bottom:138.188985px;}
.y101{bottom:141.164432px;}
.yee{bottom:141.165218px;}
.yef{bottom:141.165300px;}
.yfa{bottom:141.166318px;}
.y18c{bottom:150.180140px;}
.y166{bottom:151.543356px;}
.y100{bottom:156.811333px;}
.yf9{bottom:156.813218px;}
.yed{bottom:156.897000px;}
.yec{bottom:156.898318px;}
.y3f{bottom:159.703536px;}
.y18b{bottom:162.085221px;}
.y165{bottom:167.190256px;}
.yff{bottom:172.543114px;}
.yf8{bottom:172.545000px;}
.yeb{bottom:172.545218px;}
.y3e{bottom:174.075000px;}
.y18a{bottom:174.075420px;}
.y164{bottom:182.922038px;}
.y189{bottom:185.980500px;}
.yea{bottom:188.277000px;}
.ye9{bottom:188.279238px;}
.y163{bottom:198.570134px;}
.ye8{bottom:203.926138px;}
.y105{bottom:206.136036px;}
.y188{bottom:213.535048px;}
.y162{bottom:214.301916px;}
.ye7{bottom:219.659115px;}
.y104{bottom:220.507500px;}
.y3c{bottom:223.572014px;}
.y161{bottom:229.948816px;}
.ye6{bottom:235.306016px;}
.y3b{bottom:239.303796px;}
.y160{bottom:245.680598px;}
.y187{bottom:247.551036px;}
.ye5{bottom:251.037798px;}
.y3a{bottom:254.950697px;}
.ybc{bottom:261.331408px;}
.y15f{bottom:261.413576px;}
.y186{bottom:263.282818px;}
.ye4{bottom:266.684698px;}
.y39{bottom:270.682478px;}
.ybb{bottom:276.978308px;}
.y15e{bottom:277.060476px;}
.y185{bottom:278.929718px;}
.ye3{bottom:282.416480px;}
.y38{bottom:286.330574px;}
.yba{bottom:292.710090px;}
.y15d{bottom:292.792258px;}
.y184{bottom:294.661500px;}
.y183{bottom:294.663239px;}
.ye2{bottom:298.064576px;}
.y37{bottom:302.062356px;}
.yb9{bottom:308.358186px;}
.y15c{bottom:308.439158px;}
.y182{bottom:310.310139px;}
.ye1{bottom:313.796358px;}
.y36{bottom:317.709256px;}
.yb8{bottom:324.089968px;}
.y15b{bottom:324.172136px;}
.y181{bottom:326.041921px;}
.ye0{bottom:329.443258px;}
.y35{bottom:333.441038px;}
.y15a{bottom:339.819036px;}
.yb7{bottom:339.821750px;}
.y180{bottom:341.690017px;}
.ydf{bottom:345.175040px;}
.y34{bottom:349.174016px;}
.yb6{bottom:355.468650px;}
.y159{bottom:355.550818px;}
.y17f{bottom:357.421799px;}
.yde{bottom:360.823136px;}
.y33{bottom:364.820916px;}
.y158{bottom:371.197718px;}
.yb5{bottom:371.201627px;}
.y17e{bottom:373.068699px;}
.ydd{bottom:376.554917px;}
.y32{bottom:380.552698px;}
.yb4{bottom:386.848528px;}
.y156{bottom:386.929100px;}
.y157{bottom:386.929500px;}
.y17d{bottom:388.799285px;}
.ydc{bottom:392.201818px;}
.y31{bottom:396.199598px;}
.y155{bottom:402.576000px;}
.y154{bottom:402.578856px;}
.yb3{bottom:402.580310px;}
.ydb{bottom:407.933600px;}
.y30{bottom:411.932576px;}
.yb2{bottom:418.227210px;}
.y153{bottom:418.310638px;}
.y17c{bottom:420.179163px;}
.yda{bottom:423.580500px;}
.yd9{bottom:423.582036px;}
.y11e{bottom:425.114780px;}
.y2f{bottom:427.579476px;}
.y137{bottom:432.340084px;}
.y152{bottom:433.957538px;}
.yb1{bottom:433.960187px;}
.yd8{bottom:439.313818px;}
.y11d{bottom:440.847757px;}
.y2e{bottom:443.311258px;}
.y136{bottom:447.986984px;}
.yb0{bottom:449.607088px;}
.y151{bottom:449.690516px;}
.y17b{bottom:454.193956px;}
.yd7{bottom:454.960718px;}
.y11c{bottom:456.494658px;}
.y2d{bottom:458.958158px;}
.y86{bottom:463.210258px;}
.y6e{bottom:463.211978px;}
.y135{bottom:463.718766px;}
.y150{bottom:465.337416px;}
.yaf{bottom:465.338870px;}
.yd6{bottom:470.692500px;}
.yd5{bottom:470.693758px;}
.y11b{bottom:472.226440px;}
.y2c{bottom:474.691136px;}
.y85{bottom:478.942040px;}
.y6d{bottom:478.944956px;}
.y134{bottom:479.365666px;}
.yae{bottom:480.985770px;}
.y14f{bottom:481.069198px;}
.y17a{bottom:485.573834px;}
.yd4{bottom:486.340658px;}
.y11a{bottom:487.873340px;}
.y2b{bottom:490.338036px;}
.y84{bottom:494.590136px;}
.y6c{bottom:494.591856px;}
.y133{bottom:495.098644px;}
.y14e{bottom:496.716098px;}
.yad{bottom:496.718747px;}
.yd3{bottom:502.073636px;}
.y1c6{bottom:503.184113px;}
.y119{bottom:503.605122px;}
.y2a{bottom:506.069818px;}
.y83{bottom:510.321917px;}
.y6b{bottom:510.323638px;}
.y132{bottom:510.745544px;}
.yac{bottom:512.365648px;}
.y14d{bottom:512.449076px;}
.y1c5{bottom:515.089194px;}
.y179{bottom:516.952516px;}
.yd2{bottom:517.720536px;}
.y118{bottom:519.253218px;}
.y3d{bottom:521.716718px;}
.y82{bottom:525.968818px;}
.y6a{bottom:525.970538px;}
.y131{bottom:526.477326px;}
.y1c4{bottom:527.080349px;}
.y14c{bottom:528.095976px;}
.yab{bottom:528.097429px;}
.y178{bottom:532.685493px;}
.yd1{bottom:533.452318px;}
.y117{bottom:534.984999px;}
.y29{bottom:537.448500px;}
.y1c3{bottom:538.985429px;}
.y81{bottom:541.700600px;}
.y69{bottom:541.703516px;}
.y130{bottom:542.124226px;}
.yaa{bottom:543.744330px;}
.y14b{bottom:543.827758px;}
.y177{bottom:548.332394px;}
.yd0{bottom:549.184100px;}
.y1c2{bottom:550.975628px;}
.y80{bottom:557.347718px;}
.y68{bottom:557.350416px;}
.y12f{bottom:557.857204px;}
.y14a{bottom:559.474658px;}
.ya9{bottom:559.476112px;}
.y1c1{bottom:562.965827px;}
.ycf{bottom:564.831000px;}
.yce{bottom:564.834410px;}
.y116{bottom:566.363682px;}
.y7f{bottom:573.080943px;}
.y67{bottom:573.082198px;}
.y12e{bottom:573.504104px;}
.y1c0{bottom:574.871864px;}
.ya8{bottom:575.124208px;}
.y149{bottom:575.207636px;}
.y176{bottom:579.711076px;}
.ycd{bottom:580.566192px;}
.y1bf{bottom:586.862062px;}
.y66{bottom:588.729098px;}
.y12d{bottom:589.235886px;}
.y148{bottom:590.854536px;}
.ya7{bottom:590.855989px;}
.y28{bottom:596.892036px;}
.y1be{bottom:598.767143px;}
.y7e{bottom:602.334627px;}
.y65{bottom:604.462076px;}
.y115{bottom:604.546040px;}
.y12c{bottom:604.882786px;}
.y147{bottom:606.586318px;}
.y1bd{bottom:610.757342px;}
.y27{bottom:611.263500px;}
.y26{bottom:611.264287px;}
.ycc{bottom:611.946070px;}
.y64{bottom:620.108976px;}
.y114{bottom:620.194136px;}
.y12b{bottom:620.614568px;}
.y175{bottom:622.230762px;}
.y146{bottom:622.233218px;}
.ya6{bottom:622.234672px;}
.y1bc{bottom:622.748497px;}
.y25{bottom:625.635751px;}
.y7d{bottom:626.060818px;}
.y1bb{bottom:634.653577px;}
.y63{bottom:635.840758px;}
.y113{bottom:635.925917px;}
.y12a{bottom:636.262664px;}
.y1d{bottom:637.541994px;}
.y174{bottom:637.962544px;}
.y145{bottom:637.965000px;}
.y144{bottom:637.968038px;}
.y24{bottom:640.007215px;}
.y7c{bottom:641.707718px;}
.ycb{bottom:643.324752px;}
.y1ba{bottom:646.643776px;}
.y1c{bottom:650.467537px;}
.y62{bottom:651.487658px;}
.y112{bottom:651.572818px;}
.y129{bottom:651.994446px;}
.y173{bottom:653.609445px;}
.y143{bottom:653.616134px;}
.y23{bottom:654.293679px;}
.y7b{bottom:657.439500px;}
.y7a{bottom:657.440127px;}
.y1b9{bottom:658.549813px;}
.y1b{bottom:663.308919px;}
.y61{bottom:667.220636px;}
.y111{bottom:667.304600px;}
.y128{bottom:667.641346px;}
.ya5{bottom:668.155598px;}
.y22{bottom:668.665143px;}
.y172{bottom:669.342422px;}
.y142{bottom:669.347916px;}
.y1b8{bottom:670.540012px;}
.y79{bottom:673.088223px;}
.yca{bottom:675.384877px;}
.y1a{bottom:676.149344px;}
.y1b7{bottom:682.445092px;}
.y60{bottom:682.867536px;}
.y110{bottom:682.951500px;}
.y10f{bottom:682.952223px;}
.y21{bottom:683.036608px;}
.y127{bottom:683.373128px;}
.ya4{bottom:683.888576px;}
.y171{bottom:684.989322px;}
.y141{bottom:684.994816px;}
.y78{bottom:688.820005px;}
.y19{bottom:688.989769px;}
.yc9{bottom:691.031778px;}
.y1b6{bottom:694.435291px;}
.y20{bottom:697.323072px;}
.y5f{bottom:698.599318px;}
.y10e{bottom:698.684005px;}
.y126{bottom:699.021224px;}
.ya3{bottom:699.535476px;}
.y170{bottom:700.721104px;}
.y140{bottom:700.726598px;}
.y18{bottom:701.831150px;}
.y77{bottom:704.466905px;}
.y1b5{bottom:706.426446px;}
.yc8{bottom:706.763560px;}
.y1f{bottom:711.694536px;}
.y5e{bottom:714.246218px;}
.y17{bottom:714.671575px;}
.y125{bottom:714.753006px;}
.ya2{bottom:715.267258px;}
.y16f{bottom:716.368004px;}
.y13f{bottom:716.374694px;}
.y1b4{bottom:718.331527px;}
.y76{bottom:720.198687px;}
.y10d{bottom:722.409000px;}
.yc7{bottom:722.410460px;}
.y1e{bottom:726.066000px;}
.y16{bottom:727.512000px;}
.y5d{bottom:729.978000px;}
.y5c{bottom:729.979318px;}
.y1b3{bottom:730.321725px;}
.y124{bottom:730.399906px;}
.ya1{bottom:730.914158px;}
.y16e{bottom:732.100982px;}
.y75{bottom:735.845588px;}
.yc6{bottom:738.142242px;}
.y1b2{bottom:742.226806px;}
.y5b{bottom:745.626218px;}
.y123{bottom:746.131688px;}
.y10b{bottom:746.135818px;}
.y10c{bottom:746.136000px;}
.ya0{bottom:746.647136px;}
.y16d{bottom:747.747882px;}
.y13e{bottom:747.753376px;}
.y74{bottom:751.577370px;}
.yc5{bottom:753.875219px;}
.y1b1{bottom:754.217961px;}
.y15{bottom:755.319000px;}
.y5a{bottom:761.358000px;}
.y59{bottom:761.359821px;}
.y122{bottom:761.778588px;}
.y10a{bottom:761.782718px;}
.y9f{bottom:762.294036px;}
.y16c{bottom:763.479664px;}
.y1b0{bottom:766.208160px;}
.y103{bottom:766.459500px;}
.y73{bottom:767.224270px;}
.yc4{bottom:769.522120px;}
.y58{bottom:777.092799px;}
.y121{bottom:777.511566px;}
.y109{bottom:777.514500px;}
.y108{bottom:777.515818px;}
.y9e{bottom:778.025818px;}
.y1af{bottom:778.113240px;}
.y16b{bottom:779.211446px;}
.y13d{bottom:779.218136px;}
.yc3{bottom:785.253901px;}
.y1ae{bottom:790.104395px;}
.y57{bottom:792.739699px;}
.y120{bottom:793.158466px;}
.y107{bottom:793.162718px;}
.y9d{bottom:793.672718px;}
.y16a{bottom:794.859542px;}
.y13c{bottom:794.865036px;}
.y72{bottom:798.602952px;}
.yc2{bottom:800.900802px;}
.y1ad{bottom:802.009476px;}
.y14{bottom:804.813000px;}
.y11f{bottom:808.890248px;}
.y106{bottom:808.894500px;}
.y13{bottom:809.064000px;}
.y9c{bottom:809.404500px;}
.y9b{bottom:809.405342px;}
.y169{bottom:810.591324px;}
.y13b{bottom:810.596818px;}
.y1ac{bottom:813.999674px;}
.yc1{bottom:816.632584px;}
.y12{bottom:817.653000px;}
.y11{bottom:821.905500px;}
.y56{bottom:824.118381px;}
.y9a{bottom:825.052242px;}
.y1ab{bottom:825.904755px;}
.y13a{bottom:826.243718px;}
.y10{bottom:830.494500px;}
.yc0{bottom:832.279484px;}
.yf{bottom:834.747000px;}
.y1aa{bottom:837.895910px;}
.y71{bottom:838.571410px;}
.y99{bottom:840.785219px;}
.y168{bottom:841.970006px;}
.y139{bottom:841.975500px;}
.y138{bottom:842.569500px;}
.ye{bottom:843.336000px;}
.yd{bottom:847.587000px;}
.ybf{bottom:848.011266px;}
.y1a9{bottom:849.886109px;}
.y70{bottom:854.218310px;}
.y98{bottom:856.432120px;}
.y1a8{bottom:861.791189px;}
.y55{bottom:862.300739px;}
.ybe{bottom:863.658166px;}
.yc{bottom:867.996000px;}
.ya{bottom:867.997650px;}
.y6f{bottom:869.951287px;}
.y97{bottom:872.163901px;}
.y1a7{bottom:873.781388px;}
.yb{bottom:875.055000px;}
.y193{bottom:875.565000px;}
.y54{bottom:878.032521px;}
.ybd{bottom:879.391144px;}
.y1a6{bottom:885.687425px;}
.y8{bottom:887.470500px;}
.y53{bottom:893.680617px;}
.y9{bottom:894.444000px;}
.y96{bottom:896.316167px;}
.y1a5{bottom:897.677624px;}
.y89{bottom:903.628500px;}
.y52{bottom:909.412399px;}
.y1a4{bottom:909.667822px;}
.yf7{bottom:912.982536px;}
.y95{bottom:920.042358px;}
.y1a3{bottom:921.572903px;}
.y7{bottom:924.888000px;}
.yf6{bottom:927.354000px;}
.y1a2{bottom:933.564058px;}
.y94{bottom:935.689258px;}
.y51{bottom:940.791081px;}
.y1a1{bottom:945.469138px;}
.y93{bottom:951.421040px;}
.y1a0{bottom:957.459337px;}
.y6{bottom:957.798000px;}
.y92{bottom:967.069136px;}
.y19f{bottom:969.365374px;}
.y50{bottom:973.786100px;}
.y19e{bottom:981.355573px;}
.y91{bottom:982.800917px;}
.y4f{bottom:989.433000px;}
.y4e{bottom:989.434476px;}
.y19d{bottom:993.345772px;}
.y90{bottom:998.447818px;}
.y42{bottom:1003.719000px;}
.y4d{bottom:1005.166258px;}
.y19c{bottom:1005.250852px;}
.y8f{bottom:1014.179600px;}
.y19b{bottom:1017.242007px;}
.y4c{bottom:1020.813158px;}
.y19a{bottom:1029.147088px;}
.y8e{bottom:1029.828452px;}
.y4b{bottom:1036.546136px;}
.y199{bottom:1041.137286px;}
.y41{bottom:1045.474500px;}
.y4a{bottom:1052.193036px;}
.y198{bottom:1053.127485px;}
.y8c{bottom:1059.165000px;}
.y197{bottom:1065.033522px;}
.y8b{bottom:1067.329451px;}
.y8d{bottom:1067.329500px;}
.y49{bottom:1067.924818px;}
.y196{bottom:1077.023721px;}
.y48{bottom:1083.571718px;}
.y40{bottom:1087.312500px;}
.y195{bottom:1088.928801px;}
.y47{bottom:1099.303500px;}
.y194{bottom:1100.919000px;}
.y2{bottom:1127.505000px;}
.y45{bottom:1128.630000px;}
.y1c7{bottom:1128.640776px;}
.y8a{bottom:1128.642000px;}
.h9{height:23.521113px;}
.h18{height:31.524082px;}
.hc{height:31.682813px;}
.h14{height:32.661470px;}
.ha{height:33.622910px;}
.h10{height:33.623438px;}
.h19{height:34.947744px;}
.hf{height:35.100320px;}
.h11{height:35.203584px;}
.hb{height:36.775371px;}
.h8{height:37.122363px;}
.h3{height:37.826367px;}
.h7{height:38.959629px;}
.h17{height:42.023157px;}
.h12{height:42.027316px;}
.hd{height:42.029824px;}
.h4{height:50.435156px;}
.h6{height:55.689609px;}
.h15{height:65.313470px;}
.h13{height:69.263019px;}
.h5{height:70.925098px;}
.he{height:73.551270px;}
.h16{height:101.920824px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x56{left:61.483350px;}
.x14{left:62.758950px;}
.x1b{left:63.949500px;}
.x43{left:71.347950px;}
.x18{left:74.323389px;}
.x25{left:80.957400px;}
.x45{left:83.763750px;}
.x26{left:87.335400px;}
.x55{left:97.795200px;}
.x3f{left:111.486600px;}
.x57{left:124.751087px;}
.x4d{left:130.620450px;}
.x4e{left:146.352750px;}
.xf{left:154.771500px;}
.x10{left:160.299000px;}
.x44{left:162.936000px;}
.x11{left:164.721000px;}
.x12{left:171.439500px;}
.x3{left:177.222000px;}
.x4{left:183.259500px;}
.x21{left:185.386500px;}
.x5{left:187.767000px;}
.x6{left:193.719000px;}
.x22{left:200.523000px;}
.x4f{left:202.308000px;}
.x50{left:213.874500px;}
.x41{left:227.736000px;}
.x42{left:239.215500px;}
.x2a{left:241.341000px;}
.x2b{left:253.162500px;}
.x4a{left:270.510000px;}
.x2c{left:272.635500px;}
.x2d{left:279.013500px;}
.x40{left:283.351500px;}
.x7{left:293.811000px;}
.x13{left:297.213000px;}
.x8{left:300.358500px;}
.x15{left:302.995500px;}
.x1e{left:305.547000px;}
.x1d{left:330.037500px;}
.x1{left:340.481979px;}
.x1c{left:342.624000px;}
.x4b{left:382.591500px;}
.x23{left:395.008500px;}
.x4c{left:400.024500px;}
.x24{left:406.573500px;}
.x20{left:444.311979px;}
.x46{left:447.391500px;}
.x19{left:459.888932px;}
.x47{left:461.424000px;}
.x53{left:464.995500px;}
.x1a{left:477.831221px;}
.x9{left:483.448500px;}
.x54{left:484.468455px;}
.xa{left:490.081500px;}
.x29{left:497.650500px;}
.x3b{left:500.457000px;}
.x2e{left:501.646500px;}
.x3c{left:512.022000px;}
.x2f{left:517.890000px;}
.x59{left:522.220867px;}
.x30{left:567.637500px;}
.x31{left:583.369500px;}
.xb{left:606.246000px;}
.xc{left:611.773500px;}
.x32{left:631.927500px;}
.x33{left:643.492500px;}
.x51{left:648.169500px;}
.x52{left:654.463500px;}
.x1f{left:657.926979px;}
.x36{left:662.541000px;}
.x3d{left:665.347500px;}
.x34{left:675.042000px;}
.x37{left:676.743000px;}
.x3e{left:680.485500px;}
.x35{left:686.607000px;}
.x27{left:708.802500px;}
.x58{left:711.261839px;}
.xd{left:715.947000px;}
.x28{left:720.369000px;}
.xe{left:721.474500px;}
.x16{left:767.310000px;}
.x17{left:781.596000px;}
.x38{left:786.189000px;}
.x48{left:795.714000px;}
.x39{left:797.754000px;}
.x49{left:806.173500px;}
.x3a{left:809.574000px;}
@media print{
.v1{vertical-align:-6.354230pt;}
.v7{vertical-align:-1.211455pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.211455pt;}
.v9{vertical-align:2.115099pt;}
.v8{vertical-align:15.408782pt;}
.v4{vertical-align:22.677333pt;}
.v3{vertical-align:29.024000pt;}
.v2{vertical-align:59.866667pt;}
.v5{vertical-align:88.896000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.018135pt;}
.ls3{letter-spacing:0.020387pt;}
.ls1b{letter-spacing:0.025987pt;}
.ls15{letter-spacing:0.028101pt;}
.ls6{letter-spacing:0.030559pt;}
.ls13{letter-spacing:0.030572pt;}
.lsd{letter-spacing:0.030767pt;}
.ls18{letter-spacing:0.033232pt;}
.lse{letter-spacing:0.033239pt;}
.ls11{letter-spacing:0.033291pt;}
.ls1c{letter-spacing:0.070839pt;}
.lsa{letter-spacing:0.262881pt;}
.lsc{letter-spacing:2.598057pt;}
.ls20{letter-spacing:3.324063pt;}
.ls1e{letter-spacing:3.328314pt;}
.ls17{letter-spacing:9.296325pt;}
.lsf{letter-spacing:9.517677pt;}
.ls4{letter-spacing:9.821144pt;}
.ls1f{letter-spacing:10.422765pt;}
.ls8{letter-spacing:11.714984pt;}
.ls16{letter-spacing:12.190667pt;}
.ls12{letter-spacing:14.357677pt;}
.ls1d{letter-spacing:14.435445pt;}
.ls7{letter-spacing:14.658477pt;}
.ls0{letter-spacing:16.922845pt;}
.ls21{letter-spacing:17.176533pt;}
.ls1{letter-spacing:22.027231pt;}
.ls22{letter-spacing:27.136596pt;}
.ls5{letter-spacing:28.981409pt;}
.ls10{letter-spacing:29.283210pt;}
.ls14{letter-spacing:46.901846pt;}
.ls19{letter-spacing:144.791867pt;}
.ls1a{letter-spacing:283.038442pt;}
.ls9{letter-spacing:1040.027913pt;}
.wsc{word-spacing:-42.507200pt;}
.wsb{word-spacing:-27.417144pt;}
.ws2{word-spacing:-21.538128pt;}
.ws3{word-spacing:-12.454610pt;}
.ws1{word-spacing:-11.591568pt;}
.ws4{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.ws10{word-spacing:-9.963406pt;}
.ws6{word-spacing:-8.943403pt;}
.wsf{word-spacing:-8.501200pt;}
.ws7{word-spacing:-6.907333pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:7.564059pt;}
.ws8{word-spacing:8.232507pt;}
.ws11{word-spacing:11.262390pt;}
.ws12{word-spacing:11.265790pt;}
.wse{word-spacing:11.361004pt;}
.wsd{word-spacing:853.995152pt;}
.wsa{word-spacing:894.153040pt;}
._4{margin-left:-15.416526pt;}
._f{margin-left:-4.242219pt;}
._b{margin-left:-3.256052pt;}
._9{margin-left:-2.123208pt;}
._8{margin-left:-0.952574pt;}
._3{width:1.064285pt;}
._1{width:2.091328pt;}
._2{width:3.027034pt;}
._6{width:4.330579pt;}
._5{width:5.267851pt;}
._7{width:6.205123pt;}
._14{width:7.098702pt;}
._e{width:8.038112pt;}
._c{width:8.956267pt;}
._12{width:9.908428pt;}
._d{width:10.996613pt;}
._10{width:13.479398pt;}
._0{width:14.537280pt;}
._15{width:15.549134pt;}
._11{width:18.060658pt;}
._13{width:19.690363pt;}
._a{width:26.839046pt;}
._16{width:38.877085pt;}
._17{width:67.514186pt;}
.fs6{font-size:23.788267pt;}
.fse{font-size:27.629333pt;}
.fsf{font-size:29.753600pt;}
.fs10{font-size:31.882133pt;}
.fs7{font-size:34.004800pt;}
.fsc{font-size:34.005333pt;}
.fs8{font-size:37.193067pt;}
.fs5{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs4{font-size:39.402133pt;}
.fs9{font-size:40.933867pt;}
.fsa{font-size:42.507200pt;}
.fsd{font-size:45.482667pt;}
.fs1{font-size:51.008000pt;}
.fs3{font-size:56.322133pt;}
.fs2{font-size:71.730667pt;}
.fsb{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y46{bottom:42.160000pt;}
.y5{bottom:68.426667pt;}
.yf4{bottom:69.695171pt;}
.y192{bottom:69.695353pt;}
.yf5{bottom:69.770000pt;}
.y88{bottom:69.770121pt;}
.y191{bottom:80.353307pt;}
.y4{bottom:81.173333pt;}
.y87{bottom:82.469200pt;}
.yfe{bottom:83.603527pt;}
.yf3{bottom:83.678977pt;}
.y190{bottom:90.936451pt;}
.y3{bottom:93.893333pt;}
.yfd{bottom:95.773200pt;}
.yf2{bottom:97.587333pt;}
.yf1{bottom:97.588105pt;}
.yfc{bottom:97.589009pt;}
.y18f{bottom:101.594405pt;}
.y44{bottom:106.582787pt;}
.y102{bottom:111.495689pt;}
.yfb{bottom:111.497365pt;}
.yf0{bottom:111.571911pt;}
.y18e{bottom:112.176699pt;}
.y43{bottom:119.281867pt;}
.y167{bottom:120.721399pt;}
.y18d{bottom:122.834653pt;}
.y101{bottom:125.479495pt;}
.yee{bottom:125.480194pt;}
.yef{bottom:125.480267pt;}
.yfa{bottom:125.481171pt;}
.y18c{bottom:133.493458pt;}
.y166{bottom:134.705205pt;}
.y100{bottom:139.387851pt;}
.yf9{bottom:139.389527pt;}
.yed{bottom:139.464000pt;}
.yec{bottom:139.465171pt;}
.y3f{bottom:141.958699pt;}
.y18b{bottom:144.075752pt;}
.y165{bottom:148.613561pt;}
.yff{bottom:153.371657pt;}
.yf8{bottom:153.373333pt;}
.yeb{bottom:153.373527pt;}
.y3e{bottom:154.733333pt;}
.y18a{bottom:154.733706pt;}
.y164{bottom:162.597367pt;}
.y189{bottom:165.316000pt;}
.yea{bottom:167.357333pt;}
.ye9{bottom:167.359322pt;}
.y163{bottom:176.506786pt;}
.ye8{bottom:181.267678pt;}
.y105{bottom:183.232032pt;}
.y188{bottom:189.808931pt;}
.y162{bottom:190.490592pt;}
.ye7{bottom:195.252547pt;}
.y104{bottom:196.006667pt;}
.y3c{bottom:198.730679pt;}
.y161{bottom:204.398948pt;}
.ye6{bottom:209.160903pt;}
.y3b{bottom:212.714486pt;}
.y160{bottom:218.382754pt;}
.y187{bottom:220.045365pt;}
.ye5{bottom:223.144709pt;}
.y3a{bottom:226.622841pt;}
.ybc{bottom:232.294585pt;}
.y15f{bottom:232.367623pt;}
.y186{bottom:234.029171pt;}
.ye4{bottom:237.053065pt;}
.y39{bottom:240.606647pt;}
.ybb{bottom:246.202941pt;}
.y15e{bottom:246.275979pt;}
.y185{bottom:247.937527pt;}
.ye3{bottom:251.036871pt;}
.y38{bottom:254.516066pt;}
.yba{bottom:260.186747pt;}
.y15d{bottom:260.259785pt;}
.y184{bottom:261.921333pt;}
.y183{bottom:261.922879pt;}
.ye2{bottom:264.946289pt;}
.y37{bottom:268.499872pt;}
.yb9{bottom:274.096165pt;}
.y15c{bottom:274.168141pt;}
.y182{bottom:275.831235pt;}
.ye1{bottom:278.930096pt;}
.y36{bottom:282.408228pt;}
.yb8{bottom:288.079971pt;}
.y15b{bottom:288.153009pt;}
.y181{bottom:289.815041pt;}
.ye0{bottom:292.838451pt;}
.y35{bottom:296.392034pt;}
.y15a{bottom:302.061365pt;}
.yb7{bottom:302.063778pt;}
.y180{bottom:303.724459pt;}
.ydf{bottom:306.822258pt;}
.y34{bottom:310.376903pt;}
.yb6{bottom:315.972133pt;}
.y159{bottom:316.045171pt;}
.y17f{bottom:317.708266pt;}
.yde{bottom:320.731676pt;}
.y33{bottom:324.285259pt;}
.y158{bottom:329.953527pt;}
.yb5{bottom:329.957002pt;}
.y17e{bottom:331.616621pt;}
.ydd{bottom:334.715482pt;}
.y32{bottom:338.269065pt;}
.yb4{bottom:343.865358pt;}
.y156{bottom:343.936977pt;}
.y157{bottom:343.937333pt;}
.y17d{bottom:345.599365pt;}
.ydc{bottom:348.623838pt;}
.y31{bottom:352.177421pt;}
.y155{bottom:357.845333pt;}
.y154{bottom:357.847872pt;}
.yb3{bottom:357.849164pt;}
.ydb{bottom:362.607644pt;}
.y30{bottom:366.162289pt;}
.yb2{bottom:371.757520pt;}
.y153{bottom:371.831678pt;}
.y17c{bottom:373.492589pt;}
.yda{bottom:376.516000pt;}
.yd9{bottom:376.517365pt;}
.y11e{bottom:377.879804pt;}
.y2f{bottom:380.070645pt;}
.y137{bottom:384.302297pt;}
.y152{bottom:385.740034pt;}
.yb1{bottom:385.742389pt;}
.yd8{bottom:390.501171pt;}
.y11d{bottom:391.864673pt;}
.y2e{bottom:394.054451pt;}
.y136{bottom:398.210652pt;}
.yb0{bottom:399.650745pt;}
.y151{bottom:399.724903pt;}
.y17b{bottom:403.727961pt;}
.yd7{bottom:404.409527pt;}
.y11c{bottom:405.773029pt;}
.y2d{bottom:407.962807pt;}
.y86{bottom:411.742451pt;}
.y6e{bottom:411.743981pt;}
.y135{bottom:412.194459pt;}
.y150{bottom:413.633259pt;}
.yaf{bottom:413.634551pt;}
.yd6{bottom:418.393333pt;}
.yd5{bottom:418.394451pt;}
.y11b{bottom:419.756835pt;}
.y2c{bottom:421.947676pt;}
.y85{bottom:425.726258pt;}
.y6d{bottom:425.728850pt;}
.y134{bottom:426.102814pt;}
.yae{bottom:427.542907pt;}
.y14f{bottom:427.617065pt;}
.y17a{bottom:431.621185pt;}
.yd4{bottom:432.302807pt;}
.y11a{bottom:433.665191pt;}
.y2b{bottom:435.856032pt;}
.y84{bottom:439.635676pt;}
.y6c{bottom:439.637205pt;}
.y133{bottom:440.087683pt;}
.y14e{bottom:441.525421pt;}
.yad{bottom:441.527775pt;}
.yd3{bottom:446.287676pt;}
.y1c6{bottom:447.274767pt;}
.y119{bottom:447.648997pt;}
.y2a{bottom:449.839838pt;}
.y83{bottom:453.619482pt;}
.y6b{bottom:453.621012pt;}
.y132{bottom:453.996039pt;}
.yac{bottom:455.436131pt;}
.y14d{bottom:455.510289pt;}
.y1c5{bottom:457.857061pt;}
.y179{bottom:459.513347pt;}
.yd2{bottom:460.196032pt;}
.y118{bottom:461.558416pt;}
.y3d{bottom:463.748194pt;}
.y82{bottom:467.527838pt;}
.y6a{bottom:467.529367pt;}
.y131{bottom:467.979845pt;}
.y1c4{bottom:468.515866pt;}
.y14c{bottom:469.418645pt;}
.yab{bottom:469.419937pt;}
.y178{bottom:473.498216pt;}
.yd1{bottom:474.179838pt;}
.y117{bottom:475.542222pt;}
.y29{bottom:477.732000pt;}
.y1c3{bottom:479.098159pt;}
.y81{bottom:481.511644pt;}
.y69{bottom:481.514236pt;}
.y130{bottom:481.888201pt;}
.yaa{bottom:483.328293pt;}
.y14b{bottom:483.402451pt;}
.y177{bottom:487.406572pt;}
.yd0{bottom:488.163644pt;}
.y1c2{bottom:489.756114pt;}
.y80{bottom:495.420194pt;}
.y68{bottom:495.422592pt;}
.y12f{bottom:495.873070pt;}
.y14a{bottom:497.310807pt;}
.ya9{bottom:497.312099pt;}
.y1c1{bottom:500.414068pt;}
.ycf{bottom:502.072000pt;}
.yce{bottom:502.075031pt;}
.y116{bottom:503.434384pt;}
.y7f{bottom:509.405283pt;}
.y67{bottom:509.406398pt;}
.y12e{bottom:509.781426pt;}
.y1c0{bottom:510.997212pt;}
.ya8{bottom:511.221518pt;}
.y149{bottom:511.295676pt;}
.y176{bottom:515.298734pt;}
.ycd{bottom:516.058837pt;}
.y1bf{bottom:521.655167pt;}
.y66{bottom:523.314754pt;}
.y12d{bottom:523.765232pt;}
.y148{bottom:525.204032pt;}
.ya7{bottom:525.205324pt;}
.y28{bottom:530.570699pt;}
.y1be{bottom:532.237460pt;}
.y7e{bottom:535.408557pt;}
.y65{bottom:537.299623pt;}
.y115{bottom:537.374258pt;}
.y12c{bottom:537.673588pt;}
.y147{bottom:539.187838pt;}
.y1bd{bottom:542.895415pt;}
.y27{bottom:543.345333pt;}
.y26{bottom:543.346033pt;}
.ycc{bottom:543.952062pt;}
.y64{bottom:551.207979pt;}
.y114{bottom:551.283676pt;}
.y12b{bottom:551.657394pt;}
.y175{bottom:553.094011pt;}
.y146{bottom:553.096194pt;}
.ya6{bottom:553.097486pt;}
.y1bc{bottom:553.554219pt;}
.y25{bottom:556.120668pt;}
.y7d{bottom:556.498505pt;}
.y1bb{bottom:564.136513pt;}
.y63{bottom:565.191785pt;}
.y113{bottom:565.267482pt;}
.y12a{bottom:565.566812pt;}
.y1d{bottom:566.703995pt;}
.y174{bottom:567.077817pt;}
.y145{bottom:567.080000pt;}
.y144{bottom:567.082701pt;}
.y24{bottom:568.895302pt;}
.y7c{bottom:570.406861pt;}
.ycb{bottom:571.844224pt;}
.y1ba{bottom:574.794468pt;}
.y1c{bottom:578.193366pt;}
.y62{bottom:579.100141pt;}
.y112{bottom:579.175838pt;}
.y129{bottom:579.550618pt;}
.y173{bottom:580.986173pt;}
.y143{bottom:580.992119pt;}
.y23{bottom:581.594382pt;}
.y7b{bottom:584.390667pt;}
.y7a{bottom:584.391224pt;}
.y1b9{bottom:585.377612pt;}
.y1b{bottom:589.607928pt;}
.y61{bottom:593.085009pt;}
.y111{bottom:593.159644pt;}
.y128{bottom:593.458974pt;}
.ya5{bottom:593.916087pt;}
.y22{bottom:594.369016pt;}
.y172{bottom:594.971042pt;}
.y142{bottom:594.975925pt;}
.y1b8{bottom:596.035566pt;}
.y79{bottom:598.300643pt;}
.yca{bottom:600.342113pt;}
.y1a{bottom:601.021639pt;}
.y1b7{bottom:606.617860pt;}
.y60{bottom:606.993365pt;}
.y110{bottom:607.068000pt;}
.y10f{bottom:607.068643pt;}
.y21{bottom:607.143651pt;}
.y127{bottom:607.442780pt;}
.ya4{bottom:607.900956pt;}
.y171{bottom:608.879398pt;}
.y141{bottom:608.884281pt;}
.y78{bottom:612.284449pt;}
.y19{bottom:612.435350pt;}
.yc9{bottom:614.250469pt;}
.y1b6{bottom:617.275814pt;}
.y20{bottom:619.842730pt;}
.y5f{bottom:620.977171pt;}
.y10e{bottom:621.052449pt;}
.y126{bottom:621.352199pt;}
.ya3{bottom:621.809312pt;}
.y170{bottom:622.863204pt;}
.y140{bottom:622.868087pt;}
.y18{bottom:623.849911pt;}
.y77{bottom:626.192805pt;}
.y1b5{bottom:627.934619pt;}
.yc8{bottom:628.234275pt;}
.y1f{bottom:632.617365pt;}
.y5e{bottom:634.885527pt;}
.y17{bottom:635.263622pt;}
.y125{bottom:635.336005pt;}
.ya2{bottom:635.793118pt;}
.y16f{bottom:636.771559pt;}
.y13f{bottom:636.777506pt;}
.y1b4{bottom:638.516912pt;}
.y76{bottom:640.176611pt;}
.y10d{bottom:642.141333pt;}
.yc7{bottom:642.142631pt;}
.y1e{bottom:645.392000pt;}
.y16{bottom:646.677333pt;}
.y5d{bottom:648.869333pt;}
.y5c{bottom:648.870505pt;}
.y1b3{bottom:649.174867pt;}
.y124{bottom:649.244361pt;}
.ya1{bottom:649.701474pt;}
.y16e{bottom:650.756428pt;}
.y75{bottom:654.084967pt;}
.yc6{bottom:656.126437pt;}
.y1b2{bottom:659.757161pt;}
.y5b{bottom:662.778861pt;}
.y123{bottom:663.228167pt;}
.y10b{bottom:663.231838pt;}
.y10c{bottom:663.232000pt;}
.ya0{bottom:663.686343pt;}
.y16d{bottom:664.664784pt;}
.y13e{bottom:664.669668pt;}
.y74{bottom:668.068773pt;}
.yc5{bottom:670.111306pt;}
.y1b1{bottom:670.415965pt;}
.y15{bottom:671.394667pt;}
.y5a{bottom:676.762667pt;}
.y59{bottom:676.764286pt;}
.y122{bottom:677.136523pt;}
.y10a{bottom:677.140194pt;}
.y9f{bottom:677.594699pt;}
.y16c{bottom:678.648590pt;}
.y1b0{bottom:681.073920pt;}
.y103{bottom:681.297333pt;}
.y73{bottom:681.977129pt;}
.yc4{bottom:684.019662pt;}
.y58{bottom:690.749154pt;}
.y121{bottom:691.121392pt;}
.y109{bottom:691.124000pt;}
.y108{bottom:691.125171pt;}
.y9e{bottom:691.578505pt;}
.y1af{bottom:691.656213pt;}
.y16b{bottom:692.632396pt;}
.y13d{bottom:692.638343pt;}
.yc3{bottom:698.003468pt;}
.y1ae{bottom:702.315018pt;}
.y57{bottom:704.657510pt;}
.y120{bottom:705.029747pt;}
.y107{bottom:705.033527pt;}
.y9d{bottom:705.486861pt;}
.y16a{bottom:706.541815pt;}
.y13c{bottom:706.546699pt;}
.y72{bottom:709.869291pt;}
.yc2{bottom:711.911824pt;}
.y1ad{bottom:712.897312pt;}
.y14{bottom:715.389333pt;}
.y11f{bottom:719.013554pt;}
.y106{bottom:719.017333pt;}
.y13{bottom:719.168000pt;}
.y9c{bottom:719.470667pt;}
.y9b{bottom:719.471415pt;}
.y169{bottom:720.525621pt;}
.y13b{bottom:720.530505pt;}
.y1ac{bottom:723.555266pt;}
.yc1{bottom:725.895630pt;}
.y12{bottom:726.802667pt;}
.y11{bottom:730.582667pt;}
.y56{bottom:732.549672pt;}
.y9a{bottom:733.379771pt;}
.y1ab{bottom:734.137560pt;}
.y13a{bottom:734.438861pt;}
.y10{bottom:738.217333pt;}
.yc0{bottom:739.803986pt;}
.yf{bottom:741.997333pt;}
.y1aa{bottom:744.796365pt;}
.y71{bottom:745.396808pt;}
.y99{bottom:747.364639pt;}
.y168{bottom:748.417783pt;}
.y139{bottom:748.422667pt;}
.y138{bottom:748.950667pt;}
.ye{bottom:749.632000pt;}
.yd{bottom:753.410667pt;}
.ybf{bottom:753.787792pt;}
.y1a9{bottom:755.454319pt;}
.y70{bottom:759.305164pt;}
.y98{bottom:761.272995pt;}
.y1a8{bottom:766.036613pt;}
.y55{bottom:766.489546pt;}
.ybe{bottom:767.696148pt;}
.yc{bottom:771.552000pt;}
.ya{bottom:771.553467pt;}
.y6f{bottom:773.290033pt;}
.y97{bottom:775.256801pt;}
.y1a7{bottom:776.694567pt;}
.yb{bottom:777.826667pt;}
.y193{bottom:778.280000pt;}
.y54{bottom:780.473352pt;}
.ybd{bottom:781.681017pt;}
.y1a6{bottom:787.277711pt;}
.y8{bottom:788.862667pt;}
.y53{bottom:794.382771pt;}
.y9{bottom:795.061333pt;}
.y96{bottom:796.725482pt;}
.y1a5{bottom:797.935665pt;}
.y89{bottom:803.225333pt;}
.y52{bottom:808.366577pt;}
.y1a4{bottom:808.593620pt;}
.yf7{bottom:811.540032pt;}
.y95{bottom:817.815429pt;}
.y1a3{bottom:819.175914pt;}
.y7{bottom:822.122667pt;}
.yf6{bottom:824.314667pt;}
.y1a2{bottom:829.834718pt;}
.y94{bottom:831.723785pt;}
.y51{bottom:836.258739pt;}
.y1a1{bottom:840.417012pt;}
.y93{bottom:845.707591pt;}
.y1a0{bottom:851.074966pt;}
.y6{bottom:851.376000pt;}
.y92{bottom:859.617009pt;}
.y19f{bottom:861.658110pt;}
.y50{bottom:865.587644pt;}
.y19e{bottom:872.316065pt;}
.y91{bottom:873.600816pt;}
.y4f{bottom:879.496000pt;}
.y4e{bottom:879.497312pt;}
.y19d{bottom:882.974019pt;}
.y90{bottom:887.509171pt;}
.y42{bottom:892.194667pt;}
.y4d{bottom:893.481118pt;}
.y19c{bottom:893.556313pt;}
.y8f{bottom:901.492977pt;}
.y19b{bottom:904.215118pt;}
.y4c{bottom:907.389474pt;}
.y19a{bottom:914.797411pt;}
.y8e{bottom:915.403069pt;}
.y4b{bottom:921.374343pt;}
.y199{bottom:925.455366pt;}
.y41{bottom:929.310667pt;}
.y4a{bottom:935.282699pt;}
.y198{bottom:936.113320pt;}
.y8c{bottom:941.480000pt;}
.y197{bottom:946.696464pt;}
.y8b{bottom:948.737290pt;}
.y8d{bottom:948.737333pt;}
.y49{bottom:949.266505pt;}
.y196{bottom:957.354418pt;}
.y48{bottom:963.174861pt;}
.y40{bottom:966.500000pt;}
.y195{bottom:967.936712pt;}
.y47{bottom:977.158667pt;}
.y194{bottom:978.594667pt;}
.y2{bottom:1002.226667pt;}
.y45{bottom:1003.226667pt;}
.y1c7{bottom:1003.236245pt;}
.y8a{bottom:1003.237333pt;}
.h9{height:20.907656pt;}
.h18{height:28.021406pt;}
.hc{height:28.162500pt;}
.h14{height:29.032418pt;}
.ha{height:29.887031pt;}
.h10{height:29.887500pt;}
.h19{height:31.064661pt;}
.hf{height:31.200285pt;}
.h11{height:31.292075pt;}
.hb{height:32.689219pt;}
.h8{height:32.997656pt;}
.h3{height:33.623437pt;}
.h7{height:34.630781pt;}
.h17{height:37.353917pt;}
.h12{height:37.357614pt;}
.hd{height:37.359844pt;}
.h4{height:44.831250pt;}
.h6{height:49.501875pt;}
.h15{height:58.056418pt;}
.h13{height:61.567128pt;}
.h5{height:63.044531pt;}
.he{height:65.378906pt;}
.h16{height:90.596288pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x56{left:54.651867pt;}
.x14{left:55.785733pt;}
.x1b{left:56.844000pt;}
.x43{left:63.420400pt;}
.x18{left:66.065235pt;}
.x25{left:71.962133pt;}
.x45{left:74.456667pt;}
.x26{left:77.631467pt;}
.x55{left:86.929067pt;}
.x3f{left:99.099200pt;}
.x57{left:110.889855pt;}
.x4d{left:116.107067pt;}
.x4e{left:130.091333pt;}
.xf{left:137.574667pt;}
.x10{left:142.488000pt;}
.x44{left:144.832000pt;}
.x11{left:146.418667pt;}
.x12{left:152.390667pt;}
.x3{left:157.530667pt;}
.x4{left:162.897333pt;}
.x21{left:164.788000pt;}
.x5{left:166.904000pt;}
.x6{left:172.194667pt;}
.x22{left:178.242667pt;}
.x4f{left:179.829333pt;}
.x50{left:190.110667pt;}
.x41{left:202.432000pt;}
.x42{left:212.636000pt;}
.x2a{left:214.525333pt;}
.x2b{left:225.033333pt;}
.x4a{left:240.453333pt;}
.x2c{left:242.342667pt;}
.x2d{left:248.012000pt;}
.x40{left:251.868000pt;}
.x7{left:261.165333pt;}
.x13{left:264.189333pt;}
.x8{left:266.985333pt;}
.x15{left:269.329333pt;}
.x1e{left:271.597333pt;}
.x1d{left:293.366667pt;}
.x1{left:302.650648pt;}
.x1c{left:304.554667pt;}
.x4b{left:340.081333pt;}
.x23{left:351.118667pt;}
.x4c{left:355.577333pt;}
.x24{left:361.398667pt;}
.x20{left:394.943981pt;}
.x46{left:397.681333pt;}
.x19{left:408.790162pt;}
.x47{left:410.154667pt;}
.x53{left:413.329333pt;}
.x1a{left:424.738863pt;}
.x9{left:429.732000pt;}
.x54{left:430.638627pt;}
.xa{left:435.628000pt;}
.x29{left:442.356000pt;}
.x3b{left:444.850667pt;}
.x2e{left:445.908000pt;}
.x3c{left:455.130667pt;}
.x2f{left:460.346667pt;}
.x59{left:464.196327pt;}
.x30{left:504.566667pt;}
.x31{left:518.550667pt;}
.xb{left:538.885333pt;}
.xc{left:543.798667pt;}
.x32{left:561.713333pt;}
.x33{left:571.993333pt;}
.x51{left:576.150667pt;}
.x52{left:581.745333pt;}
.x1f{left:584.823981pt;}
.x36{left:588.925333pt;}
.x3d{left:591.420000pt;}
.x34{left:600.037333pt;}
.x37{left:601.549333pt;}
.x3e{left:604.876000pt;}
.x35{left:610.317333pt;}
.x27{left:630.046667pt;}
.x58{left:632.232746pt;}
.xd{left:636.397333pt;}
.x28{left:640.328000pt;}
.xe{left:641.310667pt;}
.x16{left:682.053333pt;}
.x17{left:694.752000pt;}
.x38{left:698.834667pt;}
.x48{left:707.301333pt;}
.x39{left:709.114667pt;}
.x49{left:716.598667pt;}
.x3a{left:719.621333pt;}
}




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