
    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_95a8cb660e6795c1d0c84848.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_18374971b28acead2e7a5245.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_7dd21788bb74a7eba65215fd.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_be4d026349ac5fa2800f5747.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_45796295a8afb72b37f9b571.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.788000;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_cf17720acae36609a2527536.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_28f63709327cbeaae5f4f44a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_199e8c01bc4f3209085ba793.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c2cbd1e42ecbabf66055dc14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.022949;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_c5ac184ba3ded45034a9a84b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.801000;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_d5e017f45652b1ab71e14555.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m6{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m5{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{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);}
.m3{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:2.379486px;}
.v2{vertical-align:9.181296px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.478295px;}
.ls1{letter-spacing:1.782401px;}
.ls4{letter-spacing:14.469376px;}
.ls2{letter-spacing:19.038201px;}
.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;}
}
.wsf{word-spacing:-47.820600px;}
.ws2{word-spacing:-24.230394px;}
.ws8{word-spacing:-14.011436px;}
.wsa{word-spacing:-13.437589px;}
.ws5{word-spacing:-12.610134px;}
.ws3{word-spacing:-12.375441px;}
.ws7{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.ws11{word-spacing:-11.208832px;}
.ws4{word-spacing:-10.759500px;}
.wse{word-spacing:-10.509148px;}
.wsc{word-spacing:-10.061328px;}
.ws10{word-spacing:-9.563850px;}
.wsd{word-spacing:-3.557853px;}
.wsb{word-spacing:0.000000px;}
.ws9{word-spacing:1.545064px;}
.ws6{word-spacing:15.842965px;}
.ws1{word-spacing:16.268364px;}
._4{margin-left:-17.343592px;}
._e{margin-left:-5.155957px;}
._d{margin-left:-3.643482px;}
._6{margin-left:-2.405824px;}
._7{margin-left:-1.187849px;}
._2{width:1.363779px;}
._1{width:2.574234px;}
._3{width:3.728201px;}
._5{width:4.918133px;}
._b{width:6.175953px;}
._9{width:7.264814px;}
._8{width:8.271904px;}
._a{width:10.066588px;}
._c{width:11.340513px;}
._14{width:12.743546px;}
._12{width:15.591621px;}
._11{width:18.178009px;}
._10{width:20.318240px;}
._f{width:23.663401px;}
._13{width:29.907003px;}
._0{width:100.622844px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs4{font-size:26.761800px;}
.fsc{font-size:28.693800px;}
.fsb{font-size:30.108600px;}
.fsa{font-size:35.867400px;}
.fs5{font-size:38.255400px;}
.fs9{font-size:38.256000px;}
.fs6{font-size:41.842200px;}
.fs3{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fs8{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:53.097757px;}
.y4{bottom:81.672757px;}
.ya5{bottom:84.188850px;}
.ye3{bottom:84.189172px;}
.y78{bottom:84.198034px;}
.ya4{bottom:88.951050px;}
.y3{bottom:96.027757px;}
.ye2{bottom:98.475636px;}
.y77{bottom:99.844934px;}
.y2{bottom:108.012757px;}
.ye1{bottom:112.847100px;}
.y76{bottom:115.577911px;}
.ye0{bottom:117.609300px;}
.y3b{bottom:122.456736px;}
.ydf{bottom:127.219787px;}
.y75{bottom:131.224812px;}
.ya3{bottom:131.561488px;}
.y3a{bottom:136.828200px;}
.yde{bottom:141.506251px;}
.y74{bottom:146.956593px;}
.ya2{bottom:147.208388px;}
.ydd{bottom:155.877715px;}
.y73{bottom:162.603494px;}
.ya1{bottom:162.941366px;}
.y36{bottom:168.208036px;}
.ydc{bottom:170.249179px;}
.y72{bottom:178.336471px;}
.y131{bottom:178.416896px;}
.ya0{bottom:178.588266px;}
.y35{bottom:182.494500px;}
.ydb{bottom:184.535643px;}
.y71{bottom:193.983371px;}
.y11b{bottom:194.068253px;}
.y130{bottom:194.148678px;}
.y9f{bottom:194.320048px;}
.yda{bottom:198.907108px;}
.y137{bottom:201.041692px;}
.y70{bottom:209.715153px;}
.y12f{bottom:209.795578px;}
.y9e{bottom:209.966948px;}
.yd9{bottom:213.278572px;}
.y6f{bottom:225.362054px;}
.y11a{bottom:225.446935px;}
.y12e{bottom:225.528555px;}
.y9d{bottom:225.699926px;}
.yd8{bottom:227.650036px;}
.y34{bottom:231.904198px;}
.y136{bottom:232.420374px;}
.y6e{bottom:241.095031px;}
.y12d{bottom:241.175456px;}
.y9c{bottom:241.346826px;}
.yd7{bottom:241.936500px;}
.yd6{bottom:246.699000px;}
.y33{bottom:247.635980px;}
.yd5{bottom:256.308000px;}
.y6d{bottom:256.741931px;}
.y119{bottom:256.826813px;}
.y12c{bottom:256.907238px;}
.y9b{bottom:257.078608px;}
.yd4{bottom:261.070500px;}
.y32{bottom:263.284076px;}
.yd3{bottom:270.679500px;}
.y135{bottom:270.858573px;}
.y6c{bottom:272.473713px;}
.y12b{bottom:272.554138px;}
.yd2{bottom:275.442000px;}
.y31{bottom:279.015858px;}
.y134{bottom:286.590354px;}
.y6b{bottom:288.120614px;}
.y118{bottom:288.205495px;}
.y12a{bottom:288.287115px;}
.y9a{bottom:288.458485px;}
.y30{bottom:294.662758px;}
.y133{bottom:302.237255px;}
.y10c{bottom:303.853591px;}
.y129{bottom:303.934016px;}
.y174{bottom:304.782088px;}
.y2f{bottom:310.394540px;}
.y173{bottom:316.772286px;}
.yd1{bottom:318.049198px;}
.y6a{bottom:319.500491px;}
.y117{bottom:319.585373px;}
.y128{bottom:319.665798px;}
.y2e{bottom:326.042636px;}
.y99{bottom:327.575736px;}
.y172{bottom:328.677367px;}
.yd0{bottom:333.696098px;}
.y132{bottom:333.702014px;}
.y10b{bottom:335.232273px;}
.y127{bottom:335.312698px;}
.y116{bottom:335.317155px;}
.y171{bottom:340.668522px;}
.y2d{bottom:341.774417px;}
.y98{bottom:343.307518px;}
.ycf{bottom:349.429076px;}
.y10a{bottom:350.879174px;}
.y115{bottom:350.964055px;}
.y126{bottom:351.044480px;}
.y69{bottom:351.048937px;}
.y170{bottom:352.658721px;}
.y2c{bottom:357.421318px;}
.y97{bottom:358.955614px;}
.y16f{bottom:364.563801px;}
.yce{bottom:365.075976px;}
.y109{bottom:366.610955px;}
.y125{bottom:366.692576px;}
.y68{bottom:366.697032px;}
.y96{bottom:374.687396px;}
.y16e{bottom:376.554000px;}
.y16c{bottom:376.561334px;}
.y16d{bottom:380.806500px;}
.ycd{bottom:380.807758px;}
.y108{bottom:382.259051px;}
.y114{bottom:382.343933px;}
.y124{bottom:382.424358px;}
.y67{bottom:382.428814px;}
.y16b{bottom:388.466415px;}
.y2b{bottom:388.800000px;}
.y95{bottom:390.334296px;}
.ycc{bottom:396.539540px;}
.y107{bottom:397.990833px;}
.y123{bottom:398.071258px;}
.y66{bottom:398.075715px;}
.y16a{bottom:400.456613px;}
.y94{bottom:406.066078px;}
.ycb{bottom:412.187636px;}
.y169{bottom:412.361694px;}
.y113{bottom:413.722615px;}
.y122{bottom:413.803040px;}
.y65{bottom:413.807497px;}
.y93{bottom:421.712978px;}
.y168{bottom:424.352849px;}
.yca{bottom:427.919417px;}
.y106{bottom:429.369515px;}
.y121{bottom:429.451136px;}
.y64{bottom:429.455592px;}
.y167{bottom:436.343048px;}
.y92{bottom:437.445956px;}
.yc9{bottom:443.566318px;}
.y2a{bottom:444.588038px;}
.y112{bottom:445.102493px;}
.y120{bottom:445.182917px;}
.y63{bottom:445.187374px;}
.y166{bottom:448.248128px;}
.y91{bottom:453.092856px;}
.y29{bottom:458.959502px;}
.yc8{bottom:459.298100px;}
.y165{bottom:460.238327px;}
.y105{bottom:460.749393px;}
.y11f{bottom:460.829818px;}
.y62{bottom:460.834275px;}
.y90{bottom:468.824638px;}
.y164{bottom:472.144364px;}
.y28{bottom:473.330966px;}
.yc7{bottom:474.945000px;}
.yc5{bottom:474.946536px;}
.y104{bottom:476.481175px;}
.y11e{bottom:476.561600px;}
.y61{bottom:476.566057px;}
.yc6{bottom:480.303000px;}
.y163{bottom:484.134563px;}
.y8f{bottom:484.471538px;}
.y27{bottom:487.617430px;}
.yc4{bottom:490.678318px;}
.y103{bottom:492.128075px;}
.y11d{bottom:492.208500px;}
.y60{bottom:492.212957px;}
.y162{bottom:496.124761px;}
.y11c{bottom:497.565000px;}
.y8e{bottom:500.204516px;}
.y26{bottom:501.988894px;}
.yc3{bottom:506.325218px;}
.y102{bottom:507.861053px;}
.y5f{bottom:507.945934px;}
.y161{bottom:508.029842px;}
.y8d{bottom:515.851416px;}
.y25{bottom:516.360359px;}
.y160{bottom:520.020997px;}
.yc0{bottom:522.056818px;}
.yc2{bottom:522.057000px;}
.y101{bottom:523.507953px;}
.y5e{bottom:523.592835px;}
.yc1{bottom:527.329500px;}
.y24{bottom:530.646823px;}
.y8c{bottom:531.583198px;}
.y15f{bottom:531.926077px;}
.y1a{bottom:532.773762px;}
.ybf{bottom:537.703718px;}
.y100{bottom:539.239735px;}
.y5d{bottom:539.324616px;}
.y15e{bottom:543.916276px;}
.y23{bottom:545.018287px;}
.y19{bottom:545.614187px;}
.y8b{bottom:547.230098px;}
.ybe{bottom:553.435500px;}
.ybc{bottom:553.436818px;}
.yff{bottom:554.886635px;}
.y5c{bottom:554.971517px;}
.y15d{bottom:555.822313px;}
.y18{bottom:558.454613px;}
.ybd{bottom:558.708000px;}
.y22{bottom:559.389751px;}
.y8a{bottom:562.963076px;}
.y15c{bottom:567.812512px;}
.ybb{bottom:569.083718px;}
.yfe{bottom:570.619613px;}
.y5b{bottom:570.704494px;}
.y17{bottom:571.295994px;}
.y21{bottom:573.676215px;}
.y89{bottom:578.609976px;}
.y15b{bottom:579.802710px;}
.y16{bottom:584.136419px;}
.yba{bottom:584.815500px;}
.yb8{bottom:584.819940px;}
.yfd{bottom:586.266513px;}
.y5a{bottom:586.351394px;}
.y20{bottom:588.047679px;}
.yb9{bottom:590.088000px;}
.y15a{bottom:591.707791px;}
.y88{bottom:594.341758px;}
.y15{bottom:597.062919px;}
.yb7{bottom:600.468036px;}
.yfc{bottom:601.998295px;}
.y59{bottom:602.083176px;}
.y1f{bottom:602.419143px;}
.y159{bottom:603.698946px;}
.y14{bottom:609.903344px;}
.y87{bottom:609.988658px;}
.y158{bottom:615.604027px;}
.yb6{bottom:616.199817px;}
.y1e{bottom:616.790608px;}
.yfb{bottom:617.645195px;}
.y58{bottom:617.730077px;}
.y13{bottom:622.743769px;}
.y86{bottom:625.721636px;}
.y157{bottom:627.594225px;}
.y1d{bottom:631.077072px;}
.yb5{bottom:631.846718px;}
.yfa{bottom:633.376977px;}
.y57{bottom:633.463054px;}
.y12{bottom:635.585150px;}
.y156{bottom:639.584424px;}
.y85{bottom:641.368536px;}
.y1c{bottom:645.448536px;}
.yb4{bottom:647.578500px;}
.y11{bottom:648.425575px;}
.yf9{bottom:649.025073px;}
.y111{bottom:649.109954px;}
.y56{bottom:649.194836px;}
.y155{bottom:651.490461px;}
.y84{bottom:657.100318px;}
.y1b{bottom:659.820000px;}
.y10{bottom:661.266000px;}
.y154{bottom:663.480660px;}
.yf8{bottom:664.756855px;}
.y55{bottom:664.841736px;}
.y83{bottom:672.747218px;}
.y153{bottom:675.385740px;}
.yb3{bottom:678.958377px;}
.yf7{bottom:680.403755px;}
.y110{bottom:680.488637px;}
.y54{bottom:680.573518px;}
.y152{bottom:687.376895px;}
.y82{bottom:688.479000px;}
.yf{bottom:689.074500px;}
.yf6{bottom:696.135537px;}
.y53{bottom:696.221614px;}
.y151{bottom:699.281976px;}
.y80{bottom:704.129946px;}
.y81{bottom:709.483500px;}
.y150{bottom:711.272174px;}
.yb2{bottom:711.612674px;}
.yf5{bottom:711.783633px;}
.y10f{bottom:711.868514px;}
.y52{bottom:711.953396px;}
.y7f{bottom:719.861728px;}
.y14f{bottom:723.262373px;}
.yb1{bottom:727.345652px;}
.yf4{bottom:727.515415px;}
.y51{bottom:727.600296px;}
.y14e{bottom:735.168410px;}
.y7e{bottom:735.593509px;}
.ye{bottom:738.567000px;}
.yd{bottom:742.818000px;}
.yb0{bottom:742.992552px;}
.yf3{bottom:743.162315px;}
.y10e{bottom:743.247197px;}
.y50{bottom:743.332078px;}
.y14d{bottom:747.158609px;}
.y7d{bottom:751.241605px;}
.yc{bottom:751.407000px;}
.yb{bottom:755.659500px;}
.yaf{bottom:758.724334px;}
.yf2{bottom:758.894097px;}
.y4f{bottom:758.978978px;}
.y14c{bottom:759.063689px;}
.ya{bottom:764.248500px;}
.y7c{bottom:766.973387px;}
.y9{bottom:768.501000px;}
.y14b{bottom:771.053888px;}
.yae{bottom:774.371234px;}
.yf1{bottom:774.542193px;}
.y10d{bottom:774.627074px;}
.y4e{bottom:774.711956px;}
.y7b{bottom:782.620288px;}
.y14a{bottom:783.045043px;}
.y7{bottom:788.910000px;}
.yad{bottom:790.104211px;}
.yf0{bottom:790.273975px;}
.y4d{bottom:790.358856px;}
.y149{bottom:794.950124px;}
.y8{bottom:795.969000px;}
.yac{bottom:805.751112px;}
.yef{bottom:806.005756px;}
.y4c{bottom:806.090638px;}
.y148{bottom:806.940322px;}
.y7a{bottom:813.998970px;}
.y147{bottom:818.845403px;}
.yab{bottom:821.482894px;}
.yee{bottom:821.652657px;}
.y4b{bottom:821.737538px;}
.y6{bottom:826.412716px;}
.y146{bottom:830.836558px;}
.yaa{bottom:837.129794px;}
.yed{bottom:837.385634px;}
.y4a{bottom:837.470516px;}
.y145{bottom:842.826757px;}
.y5{bottom:852.264000px;}
.ya9{bottom:852.861576px;}
.yec{bottom:853.032534px;}
.y49{bottom:853.117416px;}
.y144{bottom:854.731837px;}
.y143{bottom:866.722992px;}
.ya8{bottom:868.509672px;}
.yeb{bottom:868.764316px;}
.y48{bottom:868.849198px;}
.y142{bottom:878.628073px;}
.ya7{bottom:884.241454px;}
.yea{bottom:884.411217px;}
.y47{bottom:884.496098px;}
.y141{bottom:890.618272px;}
.ye9{bottom:900.144194px;}
.y46{bottom:900.229076px;}
.y140{bottom:902.523352px;}
.y13f{bottom:914.514507px;}
.ya6{bottom:915.620136px;}
.ye8{bottom:915.791094px;}
.y45{bottom:915.875976px;}
.y13e{bottom:926.504706px;}
.y39{bottom:931.096500px;}
.ye7{bottom:931.522876px;}
.y44{bottom:931.607758px;}
.y13d{bottom:938.409786px;}
.ye6{bottom:947.169777px;}
.y43{bottom:947.254658px;}
.y13c{bottom:950.399985px;}
.y13b{bottom:962.306022px;}
.ye5{bottom:962.901559px;}
.y42{bottom:962.987636px;}
.y38{bottom:971.490000px;}
.y13a{bottom:974.296221px;}
.y41{bottom:978.634536px;}
.y139{bottom:986.286420px;}
.ye4{bottom:994.281436px;}
.y40{bottom:994.366318px;}
.y138{bottom:998.191500px;}
.y3f{bottom:1010.013218px;}
.y37{bottom:1014.009000px;}
.y3e{bottom:1025.745000px;}
.y1{bottom:1054.857757px;}
.y175{bottom:1055.075684px;}
.y79{bottom:1055.083500px;}
.y3c{bottom:1055.097757px;}
.h6{height:23.521113px;}
.h11{height:25.219160px;}
.he{height:26.462637px;}
.hd{height:31.524082px;}
.h7{height:33.622910px;}
.hc{height:33.623438px;}
.hb{height:35.100320px;}
.hf{height:35.883565px;}
.h10{height:36.568337px;}
.h8{height:36.775371px;}
.h5{height:37.122363px;}
.h2{height:37.826367px;}
.h9{height:42.029824px;}
.h4{height:55.689609px;}
.h3{height:70.925098px;}
.ha{height:73.551270px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w2{width:816.375000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x2{left:58.335000px;}
.x6{left:64.800000px;}
.xa{left:66.075450px;}
.x9{left:76.449339px;}
.x1f{left:90.225559px;}
.x1e{left:126.026875px;}
.x7{left:134.021234px;}
.x20{left:142.014763px;}
.x21{left:147.883350px;}
.x22{left:156.301500px;}
.x3{left:174.246000px;}
.x4{left:191.169000px;}
.x1c{left:204.007638px;}
.x1a{left:244.488000px;}
.x1b{left:257.074500px;}
.xd{left:261.496500px;}
.x13{left:262.602000px;}
.x14{left:271.191000px;}
.x8{left:296.617500px;}
.xb{left:304.270500px;}
.x16{left:324.679500px;}
.x17{left:332.844000px;}
.x1{left:341.310000px;}
.x5{left:352.828500px;}
.xc{left:375.193500px;}
.x15{left:383.697000px;}
.xf{left:405.255000px;}
.x1d{left:568.141663px;}
.x18{left:592.044000px;}
.x19{left:597.061500px;}
.x11{left:638.730000px;}
.xe{left:645.285000px;}
.x10{left:700.718395px;}
.x12{left:736.093684px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.115099pt;}
.v2{vertical-align:8.161152pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.314040pt;}
.ls1{letter-spacing:1.584357pt;}
.ls4{letter-spacing:12.861667pt;}
.ls2{letter-spacing:16.922845pt;}
.wsf{word-spacing:-42.507200pt;}
.ws2{word-spacing:-21.538128pt;}
.ws8{word-spacing:-12.454610pt;}
.wsa{word-spacing:-11.944523pt;}
.ws5{word-spacing:-11.209008pt;}
.ws3{word-spacing:-11.000392pt;}
.ws7{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.ws11{word-spacing:-9.963406pt;}
.ws4{word-spacing:-9.564000pt;}
.wse{word-spacing:-9.341465pt;}
.wsc{word-spacing:-8.943403pt;}
.ws10{word-spacing:-8.501200pt;}
.wsd{word-spacing:-3.162536pt;}
.wsb{word-spacing:0.000000pt;}
.ws9{word-spacing:1.373390pt;}
.ws6{word-spacing:14.082635pt;}
.ws1{word-spacing:14.460768pt;}
._4{margin-left:-15.416526pt;}
._e{margin-left:-4.583073pt;}
._d{margin-left:-3.238650pt;}
._6{margin-left:-2.138510pt;}
._7{margin-left:-1.055866pt;}
._2{width:1.212248pt;}
._1{width:2.288208pt;}
._3{width:3.313957pt;}
._5{width:4.371674pt;}
._b{width:5.489736pt;}
._9{width:6.457613pt;}
._8{width:7.352803pt;}
._a{width:8.948078pt;}
._c{width:10.080456pt;}
._14{width:11.327596pt;}
._12{width:13.859219pt;}
._11{width:16.158230pt;}
._10{width:18.060658pt;}
._f{width:21.034135pt;}
._13{width:26.584003pt;}
._0{width:89.442528pt;}
.fs4{font-size:23.788267pt;}
.fsc{font-size:25.505600pt;}
.fsb{font-size:26.763200pt;}
.fsa{font-size:31.882133pt;}
.fs5{font-size:34.004800pt;}
.fs9{font-size:34.005333pt;}
.fs6{font-size:37.193067pt;}
.fs3{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fs8{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:47.198006pt;}
.y4{bottom:72.598006pt;}
.ya5{bottom:74.834533pt;}
.ye3{bottom:74.834819pt;}
.y78{bottom:74.842696pt;}
.ya4{bottom:79.067600pt;}
.y3{bottom:85.358006pt;}
.ye2{bottom:87.533899pt;}
.y77{bottom:88.751052pt;}
.y2{bottom:96.011340pt;}
.ye1{bottom:100.308533pt;}
.y76{bottom:102.735921pt;}
.ye0{bottom:104.541600pt;}
.y3b{bottom:108.850432pt;}
.ydf{bottom:113.084255pt;}
.y75{bottom:116.644277pt;}
.ya3{bottom:116.943545pt;}
.y3a{bottom:121.625067pt;}
.yde{bottom:125.783334pt;}
.y74{bottom:130.628083pt;}
.ya2{bottom:130.851901pt;}
.ydd{bottom:138.557969pt;}
.y73{bottom:144.536439pt;}
.ya1{bottom:144.836769pt;}
.y36{bottom:149.518254pt;}
.ydc{bottom:151.332604pt;}
.y72{bottom:158.521308pt;}
.y131{bottom:158.592796pt;}
.ya0{bottom:158.745125pt;}
.y35{bottom:162.217333pt;}
.ydb{bottom:164.031683pt;}
.y71{bottom:172.429664pt;}
.y11b{bottom:172.505114pt;}
.y130{bottom:172.576602pt;}
.y9f{bottom:172.728931pt;}
.yda{bottom:176.806318pt;}
.y137{bottom:178.703726pt;}
.y70{bottom:186.413470pt;}
.y12f{bottom:186.484958pt;}
.y9e{bottom:186.637287pt;}
.yd9{bottom:189.580953pt;}
.y6f{bottom:200.321825pt;}
.y11a{bottom:200.397276pt;}
.y12e{bottom:200.469827pt;}
.y9d{bottom:200.622156pt;}
.yd8{bottom:202.355587pt;}
.y34{bottom:206.137065pt;}
.y136{bottom:206.595888pt;}
.y6e{bottom:214.306694pt;}
.y12d{bottom:214.378183pt;}
.y9c{bottom:214.530512pt;}
.yd7{bottom:215.054667pt;}
.yd6{bottom:219.288000pt;}
.y33{bottom:220.120871pt;}
.yd5{bottom:227.829333pt;}
.y6d{bottom:228.215050pt;}
.y119{bottom:228.290500pt;}
.y12c{bottom:228.361989pt;}
.y9b{bottom:228.514318pt;}
.yd4{bottom:232.062667pt;}
.y32{bottom:234.030289pt;}
.yd3{bottom:240.604000pt;}
.y135{bottom:240.763176pt;}
.y6c{bottom:242.198856pt;}
.y12b{bottom:242.270345pt;}
.yd2{bottom:244.837333pt;}
.y31{bottom:248.014096pt;}
.y134{bottom:254.746982pt;}
.y6b{bottom:256.107212pt;}
.y118{bottom:256.182662pt;}
.y12a{bottom:256.255214pt;}
.y9a{bottom:256.407543pt;}
.y30{bottom:261.922451pt;}
.y133{bottom:268.655338pt;}
.y10c{bottom:270.092081pt;}
.y129{bottom:270.163570pt;}
.y174{bottom:270.917411pt;}
.y2f{bottom:275.906258pt;}
.y173{bottom:281.575366pt;}
.yd1{bottom:282.710398pt;}
.y6a{bottom:284.000437pt;}
.y117{bottom:284.075887pt;}
.y128{bottom:284.147376pt;}
.y2e{bottom:289.815676pt;}
.y99{bottom:291.178432pt;}
.y172{bottom:292.157659pt;}
.yd0{bottom:296.618754pt;}
.y132{bottom:296.624012pt;}
.y10b{bottom:297.984243pt;}
.y127{bottom:298.055732pt;}
.y116{bottom:298.059693pt;}
.y171{bottom:302.816464pt;}
.y2d{bottom:303.799482pt;}
.y98{bottom:305.162238pt;}
.ycf{bottom:310.603623pt;}
.y10a{bottom:311.892599pt;}
.y115{bottom:311.968049pt;}
.y126{bottom:312.039538pt;}
.y69{bottom:312.043499pt;}
.y170{bottom:313.474418pt;}
.y2c{bottom:317.707838pt;}
.y97{bottom:319.071657pt;}
.y16f{bottom:324.056712pt;}
.yce{bottom:324.511979pt;}
.y109{bottom:325.876405pt;}
.y125{bottom:325.948956pt;}
.y68{bottom:325.952918pt;}
.y96{bottom:333.055463pt;}
.y16e{bottom:334.714667pt;}
.y16c{bottom:334.721186pt;}
.y16d{bottom:338.494667pt;}
.ycd{bottom:338.495785pt;}
.y108{bottom:339.785823pt;}
.y114{bottom:339.861274pt;}
.y124{bottom:339.932762pt;}
.y67{bottom:339.936724pt;}
.y16b{bottom:345.303480pt;}
.y2b{bottom:345.600000pt;}
.y95{bottom:346.963819pt;}
.ycc{bottom:352.479591pt;}
.y107{bottom:353.769629pt;}
.y123{bottom:353.841118pt;}
.y66{bottom:353.845080pt;}
.y16a{bottom:355.961434pt;}
.y94{bottom:360.947625pt;}
.ycb{bottom:366.389009pt;}
.y169{bottom:366.543728pt;}
.y113{bottom:367.753436pt;}
.y122{bottom:367.824924pt;}
.y65{bottom:367.828886pt;}
.y93{bottom:374.855981pt;}
.y168{bottom:377.202532pt;}
.yca{bottom:380.372816pt;}
.y106{bottom:381.661791pt;}
.y121{bottom:381.734343pt;}
.y64{bottom:381.738304pt;}
.y167{bottom:387.860487pt;}
.y92{bottom:388.840850pt;}
.yc9{bottom:394.281171pt;}
.y2a{bottom:395.189367pt;}
.y112{bottom:395.646660pt;}
.y120{bottom:395.718149pt;}
.y63{bottom:395.722110pt;}
.y166{bottom:398.442781pt;}
.y91{bottom:402.749205pt;}
.y29{bottom:407.964002pt;}
.yc8{bottom:408.264977pt;}
.y165{bottom:409.100735pt;}
.y105{bottom:409.555016pt;}
.y11f{bottom:409.626505pt;}
.y62{bottom:409.630466pt;}
.y90{bottom:416.733012pt;}
.y164{bottom:419.683879pt;}
.y28{bottom:420.738637pt;}
.yc7{bottom:422.173333pt;}
.yc5{bottom:422.174699pt;}
.y104{bottom:423.538822pt;}
.y11e{bottom:423.610311pt;}
.y61{bottom:423.614272pt;}
.yc6{bottom:426.936000pt;}
.y163{bottom:430.341833pt;}
.y8f{bottom:430.641367pt;}
.y27{bottom:433.437716pt;}
.yc4{bottom:436.158505pt;}
.y103{bottom:437.447178pt;}
.y11d{bottom:437.518667pt;}
.y60{bottom:437.522628pt;}
.y162{bottom:440.999788pt;}
.y11c{bottom:442.280000pt;}
.y8e{bottom:444.626236pt;}
.y26{bottom:446.212351pt;}
.yc3{bottom:450.066861pt;}
.y102{bottom:451.432047pt;}
.y5f{bottom:451.507497pt;}
.y161{bottom:451.582082pt;}
.y8d{bottom:458.534592pt;}
.y25{bottom:458.986985pt;}
.y160{bottom:462.240886pt;}
.yc0{bottom:464.050505pt;}
.yc2{bottom:464.050667pt;}
.y101{bottom:465.340403pt;}
.y5e{bottom:465.415853pt;}
.yc1{bottom:468.737333pt;}
.y24{bottom:471.686065pt;}
.y8c{bottom:472.518398pt;}
.y15f{bottom:472.823180pt;}
.y1a{bottom:473.576678pt;}
.ybf{bottom:477.958861pt;}
.y100{bottom:479.324209pt;}
.y5d{bottom:479.399659pt;}
.y15e{bottom:483.481134pt;}
.y23{bottom:484.460699pt;}
.y19{bottom:484.990389pt;}
.y8b{bottom:486.426754pt;}
.ybe{bottom:491.942667pt;}
.ybc{bottom:491.943838pt;}
.yff{bottom:493.232565pt;}
.y5c{bottom:493.308015pt;}
.y15d{bottom:494.064278pt;}
.y18{bottom:496.404100pt;}
.ybd{bottom:496.629333pt;}
.y22{bottom:497.235334pt;}
.y8a{bottom:500.411623pt;}
.y15c{bottom:504.722233pt;}
.ybb{bottom:505.852194pt;}
.yfe{bottom:507.217433pt;}
.y5b{bottom:507.292884pt;}
.y17{bottom:507.818661pt;}
.y21{bottom:509.934413pt;}
.y89{bottom:514.319979pt;}
.y15b{bottom:515.380187pt;}
.y16{bottom:519.232372pt;}
.yba{bottom:519.836000pt;}
.yb8{bottom:519.839946pt;}
.yfd{bottom:521.125789pt;}
.y5a{bottom:521.201240pt;}
.y20{bottom:522.709048pt;}
.yb9{bottom:524.522667pt;}
.y15a{bottom:525.962481pt;}
.y88{bottom:528.303785pt;}
.y15{bottom:530.722594pt;}
.yb7{bottom:533.749365pt;}
.yfc{bottom:535.109595pt;}
.y59{bottom:535.185046pt;}
.y1f{bottom:535.483683pt;}
.y159{bottom:536.621285pt;}
.y14{bottom:542.136305pt;}
.y87{bottom:542.212141pt;}
.y158{bottom:547.203579pt;}
.yb6{bottom:547.733171pt;}
.y1e{bottom:548.258318pt;}
.yfb{bottom:549.017951pt;}
.y58{bottom:549.093401pt;}
.y13{bottom:553.550017pt;}
.y86{bottom:556.197009pt;}
.y157{bottom:557.861534pt;}
.y1d{bottom:560.957397pt;}
.yb5{bottom:561.641527pt;}
.yfa{bottom:563.001757pt;}
.y57{bottom:563.078270pt;}
.y12{bottom:564.964578pt;}
.y156{bottom:568.519488pt;}
.y85{bottom:570.105365pt;}
.y1c{bottom:573.732032pt;}
.yb4{bottom:575.625333pt;}
.y11{bottom:576.378289pt;}
.yf9{bottom:576.911176pt;}
.y111{bottom:576.986626pt;}
.y56{bottom:577.062076pt;}
.y155{bottom:579.102632pt;}
.y84{bottom:584.089171pt;}
.y1b{bottom:586.506667pt;}
.y10{bottom:587.792000pt;}
.y154{bottom:589.760586pt;}
.yf8{bottom:590.894982pt;}
.y55{bottom:590.970432pt;}
.y83{bottom:597.997527pt;}
.y153{bottom:600.342880pt;}
.yb3{bottom:603.518558pt;}
.yf7{bottom:604.803338pt;}
.y110{bottom:604.878788pt;}
.y54{bottom:604.954238pt;}
.y152{bottom:611.001685pt;}
.y82{bottom:611.981333pt;}
.yf{bottom:612.510667pt;}
.yf6{bottom:618.787144pt;}
.y53{bottom:618.863657pt;}
.y151{bottom:621.583978pt;}
.y80{bottom:625.893285pt;}
.y81{bottom:630.652000pt;}
.y150{bottom:632.241933pt;}
.yb2{bottom:632.544599pt;}
.yf5{bottom:632.696562pt;}
.y10f{bottom:632.772013pt;}
.y52{bottom:632.847463pt;}
.y7f{bottom:639.877091pt;}
.y14f{bottom:642.899887pt;}
.yb1{bottom:646.529468pt;}
.yf4{bottom:646.680369pt;}
.y51{bottom:646.755819pt;}
.y14e{bottom:653.483031pt;}
.y7e{bottom:653.860897pt;}
.ye{bottom:656.504000pt;}
.yd{bottom:660.282667pt;}
.yb0{bottom:660.437824pt;}
.yf3{bottom:660.588724pt;}
.y10e{bottom:660.664175pt;}
.y50{bottom:660.739625pt;}
.y14d{bottom:664.140986pt;}
.y7d{bottom:667.770316pt;}
.yc{bottom:667.917333pt;}
.yb{bottom:671.697333pt;}
.yaf{bottom:674.421630pt;}
.yf2{bottom:674.572531pt;}
.y4f{bottom:674.647981pt;}
.y14c{bottom:674.723279pt;}
.ya{bottom:679.332000pt;}
.y7c{bottom:681.754122pt;}
.y9{bottom:683.112000pt;}
.y14b{bottom:685.381234pt;}
.yae{bottom:688.329986pt;}
.yf1{bottom:688.481949pt;}
.y10d{bottom:688.557399pt;}
.y4e{bottom:688.632850pt;}
.y7b{bottom:695.662478pt;}
.y14a{bottom:696.040038pt;}
.y7{bottom:701.253333pt;}
.yad{bottom:702.314855pt;}
.yf0{bottom:702.465755pt;}
.y4d{bottom:702.541205pt;}
.y149{bottom:706.622332pt;}
.y8{bottom:707.528000pt;}
.yac{bottom:716.223210pt;}
.yef{bottom:716.449561pt;}
.y4c{bottom:716.525012pt;}
.y148{bottom:717.280287pt;}
.y7a{bottom:723.554640pt;}
.y147{bottom:727.862580pt;}
.yab{bottom:730.207017pt;}
.yee{bottom:730.357917pt;}
.y4b{bottom:730.433367pt;}
.y6{bottom:734.589081pt;}
.y146{bottom:738.521385pt;}
.yaa{bottom:744.115372pt;}
.yed{bottom:744.342786pt;}
.y4a{bottom:744.418236pt;}
.y145{bottom:749.179339pt;}
.y5{bottom:757.568000pt;}
.ya9{bottom:758.099179pt;}
.yec{bottom:758.251142pt;}
.y49{bottom:758.326592pt;}
.y144{bottom:759.761633pt;}
.y143{bottom:770.420438pt;}
.ya8{bottom:772.008597pt;}
.yeb{bottom:772.234948pt;}
.y48{bottom:772.310398pt;}
.y142{bottom:781.002731pt;}
.ya7{bottom:785.992403pt;}
.yea{bottom:786.143304pt;}
.y47{bottom:786.218754pt;}
.y141{bottom:791.660686pt;}
.ye9{bottom:800.128173pt;}
.y46{bottom:800.203623pt;}
.y140{bottom:802.242980pt;}
.y13f{bottom:812.901784pt;}
.ya6{bottom:813.884565pt;}
.ye8{bottom:814.036528pt;}
.y45{bottom:814.111979pt;}
.y13e{bottom:823.559739pt;}
.y39{bottom:827.641333pt;}
.ye7{bottom:828.020334pt;}
.y44{bottom:828.095785pt;}
.y13d{bottom:834.142032pt;}
.ye6{bottom:841.928690pt;}
.y43{bottom:842.004141pt;}
.y13c{bottom:844.799987pt;}
.y13b{bottom:855.383131pt;}
.ye5{bottom:855.912496pt;}
.y42{bottom:855.989009pt;}
.y38{bottom:863.546667pt;}
.y13a{bottom:866.041085pt;}
.y41{bottom:869.897365pt;}
.y139{bottom:876.699040pt;}
.ye4{bottom:883.805721pt;}
.y40{bottom:883.881171pt;}
.y138{bottom:887.281333pt;}
.y3f{bottom:897.789527pt;}
.y37{bottom:901.341333pt;}
.y3e{bottom:911.773333pt;}
.y1{bottom:937.651340pt;}
.y175{bottom:937.845052pt;}
.y79{bottom:937.852000pt;}
.y3c{bottom:937.864673pt;}
.h6{height:20.907656pt;}
.h11{height:22.417031pt;}
.he{height:23.522344pt;}
.hd{height:28.021406pt;}
.h7{height:29.887031pt;}
.hc{height:29.887500pt;}
.hb{height:31.200285pt;}
.hf{height:31.896502pt;}
.h10{height:32.505188pt;}
.h8{height:32.689219pt;}
.h5{height:32.997656pt;}
.h2{height:33.623437pt;}
.h9{height:37.359844pt;}
.h4{height:49.501875pt;}
.h3{height:63.044531pt;}
.ha{height:65.378906pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w2{width:725.666667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x2{left:51.853333pt;}
.x6{left:57.600000pt;}
.xa{left:58.733733pt;}
.x9{left:67.954968pt;}
.x1f{left:80.200496pt;}
.x1e{left:112.023889pt;}
.x7{left:119.129985pt;}
.x20{left:126.235345pt;}
.x21{left:131.451867pt;}
.x22{left:138.934667pt;}
.x3{left:154.885333pt;}
.x4{left:169.928000pt;}
.x1c{left:181.340123pt;}
.x1a{left:217.322667pt;}
.x1b{left:228.510667pt;}
.xd{left:232.441333pt;}
.x13{left:233.424000pt;}
.x14{left:241.058667pt;}
.x8{left:263.660000pt;}
.xb{left:270.462667pt;}
.x16{left:288.604000pt;}
.x17{left:295.861333pt;}
.x1{left:303.386667pt;}
.x5{left:313.625333pt;}
.xc{left:333.505333pt;}
.x15{left:341.064000pt;}
.xf{left:360.226667pt;}
.x1d{left:505.014812pt;}
.x18{left:526.261333pt;}
.x19{left:530.721333pt;}
.x11{left:567.760000pt;}
.xe{left:573.586667pt;}
.x10{left:622.860796pt;}
.x12{left:654.305497pt;}
}




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