
    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_8bb601e372fdbebefea58681.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_8ddd9c0a7f6c0b10b7800c34.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_b244753068bc5c913e29c56b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3681af4c644fe810ed98c57b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1bf0f1c90802f5b54749ecba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.804000;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_fee47b084788c1eee5610349.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.814000;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_8cf9f5390483abb4bf1f9071.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_2ae78be01330c02a53057ed6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_e758dac7e59d7a7a51184076.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4220893ef1c5eb90ae6d2e75.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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(0.462504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462504,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.v2{vertical-align:2.719959px;}
.v1{vertical-align:3.738382px;}
.v3{vertical-align:9.521769px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:1.113232px;}
.ls8{letter-spacing:1.185951px;}
.ls7{letter-spacing:10.118839px;}
.ls2{letter-spacing:10.742285px;}
.ls10{letter-spacing:11.361854px;}
.lse{letter-spacing:11.816470px;}
.lsd{letter-spacing:11.821252px;}
.ls9{letter-spacing:12.160779px;}
.ls6{letter-spacing:14.482287px;}
.ls14{letter-spacing:16.091632px;}
.ls5{letter-spacing:17.202289px;}
.ls3{letter-spacing:17.546593px;}
.lsf{letter-spacing:17.942289px;}
.lsb{letter-spacing:18.281815px;}
.lsc{letter-spacing:18.626124px;}
.ls0{letter-spacing:19.038201px;}
.ls11{letter-spacing:19.686229px;}
.ls13{letter-spacing:19.687741px;}
.ls12{letter-spacing:20.030527px;}
.ls1{letter-spacing:20.266594px;}
.lsa{letter-spacing:26.444792px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-47.820600px;}
.ws5{word-spacing:-43.038000px;}
.wse{word-spacing:-38.255400px;}
.ws9{word-spacing:-30.844287px;}
.ws7{word-spacing:-27.759510px;}
.ws10{word-spacing:-24.674733px;}
.wsc{word-spacing:-23.126042px;}
.ws1{word-spacing:-18.565183px;}
.ws8{word-spacing:-14.011436px;}
.ws6{word-spacing:-12.610134px;}
.wsa{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.wsf{word-spacing:-11.208832px;}
.ws2{word-spacing:-10.759500px;}
.ws4{word-spacing:-10.061328px;}
.wsd{word-spacing:-9.563850px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-17.343592px;}
._10{margin-left:-4.670246px;}
._8{margin-left:-3.434432px;}
._7{margin-left:-2.022786px;}
._9{margin-left:-1.015697px;}
._2{width:1.180487px;}
._0{width:2.329790px;}
._1{width:4.117900px;}
._3{width:5.503686px;}
._6{width:6.614941px;}
._5{width:7.863043px;}
._b{width:9.326335px;}
._d{width:10.700444px;}
._e{width:12.074701px;}
._11{width:15.187823px;}
._f{width:16.340299px;}
._12{width:18.119225px;}
._13{width:19.176061px;}
._a{width:20.318240px;}
._3e{width:21.446423px;}
._3d{width:22.915632px;}
._16{width:25.134507px;}
._15{width:26.291766px;}
._c{width:30.193927px;}
._14{width:38.069980px;}
._31{width:56.836048px;}
._2e{width:78.373838px;}
._34{width:89.135082px;}
._2a{width:94.249829px;}
._2b{width:95.632454px;}
._3c{width:110.175552px;}
._3a{width:111.361469px;}
._37{width:172.019232px;}
._39{width:193.763601px;}
._3b{width:201.475890px;}
._2f{width:217.022269px;}
._33{width:223.013680px;}
._38{width:228.308227px;}
._32{width:231.598192px;}
._36{width:262.967620px;}
._35{width:268.208609px;}
._30{width:364.529661px;}
._2d{width:407.146176px;}
._1c{width:413.538654px;}
._1d{width:437.185922px;}
._27{width:484.076181px;}
._25{width:491.541414px;}
._24{width:631.020603px;}
._26{width:644.595839px;}
._1b{width:679.796238px;}
._23{width:686.600268px;}
._1a{width:692.529855px;}
._22{width:696.661438px;}
._29{width:748.114951px;}
._28{width:749.300869px;}
._20{width:767.548695px;}
._1e{width:791.611341px;}
._1f{width:829.751975px;}
._2c{width:833.944767px;}
._21{width:839.086293px;}
._17{width:856.301223px;}
._18{width:904.426516px;}
._19{width:1057.830670px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs6{font-size:26.761800px;}
.fs7{font-size:38.255400px;}
.fsb{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:47.820600px;}
.fs1{font-size:57.384000px;}
.fs3{font-size:63.362400px;}
.fs2{font-size:80.697000px;}
.fsa{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y63{bottom:47.430000px;}
.y9d{bottom:78.415601px;}
.y107{bottom:78.491758px;}
.ye8{bottom:83.093035px;}
.y1a6{bottom:89.213834px;}
.y106{bottom:92.778222px;}
.y4{bottom:93.495000px;}
.y9c{bottom:94.147383px;}
.ye7{bottom:98.739936px;}
.y1a5{bottom:101.118915px;}
.y3{bottom:105.630000px;}
.y105{bottom:107.149686px;}
.y9b{bottom:109.794283px;}
.y1a4{bottom:113.109113px;}
.ye6{bottom:114.471717px;}
.y61{bottom:119.905636px;}
.y104{bottom:121.521150px;}
.y1a3{bottom:125.099312px;}
.y9a{bottom:125.527260px;}
.y165{bottom:126.462733px;}
.ye5{bottom:130.119813px;}
.y60{bottom:134.192100px;}
.y1a2{bottom:137.005349px;}
.y99{bottom:141.174161px;}
.y164{bottom:142.109633px;}
.y103{bottom:142.699953px;}
.ye4{bottom:145.851595px;}
.y1a1{bottom:148.995548px;}
.y102{bottom:155.540378px;}
.y98{bottom:156.905943px;}
.y163{bottom:157.841415px;}
.y5c{bottom:159.703536px;}
.y1a0{bottom:160.900628px;}
.ye3{bottom:161.498495px;}
.y101{bottom:168.381759px;}
.y97{bottom:172.552843px;}
.y19f{bottom:172.890827px;}
.y162{bottom:173.574392px;}
.y5b{bottom:174.075000px;}
.ye2{bottom:177.230277px;}
.y100{bottom:181.307302px;}
.y19e{bottom:184.881982px;}
.y96{bottom:188.285820px;}
.ye1{bottom:192.878373px;}
.yff{bottom:194.147727px;}
.y19d{bottom:196.787063px;}
.y95{bottom:203.932721px;}
.y161{bottom:204.953075px;}
.yfe{bottom:206.989109px;}
.ye0{bottom:208.610155px;}
.y19c{bottom:208.777261px;}
.y5a{bottom:217.618466px;}
.y94{bottom:219.664502px;}
.yfd{bottom:219.829534px;}
.y19b{bottom:220.682342px;}
.ydf{bottom:224.257055px;}
.y59{bottom:231.989930px;}
.yfc{bottom:232.670915px;}
.y19a{bottom:232.673497px;}
.y93{bottom:235.311403px;}
.y160{bottom:236.332952px;}
.yde{bottom:239.988837px;}
.y199{bottom:244.578577px;}
.yfb{bottom:245.511340px;}
.y58{bottom:246.361395px;}
.y92{bottom:251.043185px;}
.y15f{bottom:251.979853px;}
.ydd{bottom:255.635738px;}
.y198{bottom:256.568776px;}
.yfa{bottom:258.351765px;}
.y57{bottom:260.647859px;}
.y91{bottom:266.691281px;}
.y15e{bottom:267.711635px;}
.y197{bottom:268.559931px;}
.yf9{bottom:271.193147px;}
.ydc{bottom:271.368715px;}
.y56{bottom:275.019323px;}
.y196{bottom:280.465012px;}
.y15d{bottom:283.358535px;}
.yf8{bottom:284.118690px;}
.ydb{bottom:287.100497px;}
.y55{bottom:289.390787px;}
.y195{bottom:292.455210px;}
.yf7{bottom:296.960071px;}
.y90{bottom:298.069963px;}
.y15c{bottom:299.091512px;}
.yda{bottom:302.747397px;}
.y54{bottom:303.762251px;}
.y194{bottom:304.360291px;}
.yf6{bottom:309.800496px;}
.y15b{bottom:314.738413px;}
.y193{bottom:316.351446px;}
.y53{bottom:318.048715px;}
.yd9{bottom:318.479179px;}
.yf5{bottom:322.640921px;}
.y192{bottom:328.341645px;}
.y15a{bottom:330.470195px;}
.y52{bottom:332.420179px;}
.yd8{bottom:334.127275px;}
.yf4{bottom:335.482303px;}
.y191{bottom:340.246725px;}
.y4c{bottom:341.349300px;}
.y8f{bottom:341.609424px;}
.yae{bottom:344.501374px;}
.y159{bottom:346.117095px;}
.y51{bottom:346.791643px;}
.yf3{bottom:348.322728px;}
.yd7{bottom:349.859057px;}
.y190{bottom:352.236924px;}
.y4b{bottom:354.274844px;}
.y8e{bottom:357.257519px;}
.yad{bottom:360.148275px;}
.y50{bottom:361.078108px;}
.yf2{bottom:361.164109px;}
.y18f{bottom:364.142961px;}
.yd6{bottom:365.505957px;}
.y4a{bottom:367.115269px;}
.y8d{bottom:372.989301px;}
.yf1{bottom:374.089652px;}
.y4f{bottom:375.449572px;}
.yac{bottom:375.880057px;}
.y18e{bottom:376.133160px;}
.y158{bottom:377.496973px;}
.y49{bottom:379.956650px;}
.yd5{bottom:381.237739px;}
.yf0{bottom:386.930077px;}
.y18d{bottom:388.038240px;}
.y8c{bottom:388.636202px;}
.y4e{bottom:389.821036px;}
.yab{bottom:391.526957px;}
.y48{bottom:392.797075px;}
.yd4{bottom:396.885835px;}
.yef{bottom:399.771459px;}
.y18c{bottom:400.029395px;}
.y4d{bottom:404.107500px;}
.y8b{bottom:404.367983px;}
.y47{bottom:405.637500px;}
.yaa{bottom:407.259934px;}
.y157{bottom:408.875655px;}
.y18b{bottom:412.019594px;}
.yee{bottom:412.611884px;}
.yd3{bottom:412.617617px;}
.y8a{bottom:420.100961px;}
.ya9{bottom:422.906835px;}
.y18a{bottom:423.924674px;}
.y156{bottom:424.607437px;}
.yed{bottom:425.452309px;}
.yd2{bottom:428.264517px;}
.y46{bottom:433.446000px;}
.y89{bottom:435.747861px;}
.y189{bottom:435.914873px;}
.yec{bottom:438.293690px;}
.ya8{bottom:438.638616px;}
.y155{bottom:440.255532px;}
.yd1{bottom:443.996299px;}
.y188{bottom:447.820910px;}
.y88{bottom:451.479643px;}
.ya7{bottom:454.285517px;}
.y154{bottom:455.987314px;}
.yeb{bottom:458.022000px;}
.yd0{bottom:459.644395px;}
.y187{bottom:459.811109px;}
.y87{bottom:467.126543px;}
.ya6{bottom:470.018494px;}
.y153{bottom:471.634215px;}
.y186{bottom:471.801308px;}
.yea{bottom:477.751536px;}
.y86{bottom:482.859521px;}
.y45{bottom:482.938500px;}
.y185{bottom:483.706388px;}
.ya5{bottom:485.665394px;}
.y44{bottom:487.191000px;}
.y152{bottom:487.365997px;}
.ye9{bottom:492.123000px;}
.y131{bottom:493.312500px;}
.y184{bottom:495.697543px;}
.y43{bottom:495.780000px;}
.y85{bottom:498.506421px;}
.y42{bottom:500.031000px;}
.ya4{bottom:501.397176px;}
.y151{bottom:503.014092px;}
.y183{bottom:507.602624px;}
.y41{bottom:508.620000px;}
.y40{bottom:512.872500px;}
.y84{bottom:514.238203px;}
.y130{bottom:514.490265px;}
.ya3{bottom:517.044077px;}
.y150{bottom:518.745874px;}
.y182{bottom:519.592822px;}
.y3f{bottom:521.461500px;}
.y3e{bottom:525.714000px;}
.ycf{bottom:526.143721px;}
.y12f{bottom:527.416765px;}
.y83{bottom:529.885103px;}
.y181{bottom:531.497903px;}
.ya2{bottom:532.777054px;}
.y3d{bottom:534.303000px;}
.y14f{bottom:534.392775px;}
.y3c{bottom:538.554000px;}
.y12e{bottom:540.257190px;}
.yce{bottom:541.790621px;}
.y180{bottom:543.489058px;}
.y3b{bottom:547.143000px;}
.ya1{bottom:548.423954px;}
.y14e{bottom:550.124557px;}
.y3a{bottom:551.395500px;}
.y12d{bottom:553.098571px;}
.y17f{bottom:555.479257px;}
.ycd{bottom:557.523599px;}
.y39{bottom:559.984500px;}
.y82{bottom:561.264981px;}
.ya0{bottom:564.155736px;}
.y38{bottom:564.235500px;}
.y14d{bottom:565.771457px;}
.y12c{bottom:565.938996px;}
.y17e{bottom:567.384337px;}
.y37{bottom:572.824500px;}
.y36{bottom:577.077000px;}
.y12b{bottom:578.779421px;}
.y17d{bottom:579.375492px;}
.y9f{bottom:579.802637px;}
.y14c{bottom:581.504434px;}
.y35{bottom:585.751500px;}
.ycc{bottom:588.902281px;}
.y34{bottom:590.002500px;}
.y17c{bottom:591.280573px;}
.y12a{bottom:591.620803px;}
.y81{bottom:595.535614px;}
.y14b{bottom:597.151335px;}
.y33{bottom:598.591500px;}
.y32{bottom:602.844000px;}
.y17b{bottom:603.270772px;}
.y129{bottom:604.461228px;}
.y80{bottom:611.267396px;}
.y31{bottom:611.433000px;}
.y14a{bottom:612.883116px;}
.y17a{bottom:615.260970px;}
.y30{bottom:615.685500px;}
.y128{bottom:617.302609px;}
.y2f{bottom:624.274500px;}
.ycb{bottom:624.448529px;}
.y7f{bottom:626.914296px;}
.y179{bottom:627.167007px;}
.y2e{bottom:628.525500px;}
.y149{bottom:628.530017px;}
.y127{bottom:630.228152px;}
.y2d{bottom:637.114500px;}
.y178{bottom:639.157206px;}
.yca{bottom:640.095429px;}
.y2c{bottom:641.367000px;}
.y7e{bottom:642.646078px;}
.y126{bottom:643.068577px;}
.y148{bottom:644.262994px;}
.y2b{bottom:649.956000px;}
.y177{bottom:651.062286px;}
.y2a{bottom:654.208500px;}
.yc9{bottom:655.828406px;}
.y125{bottom:655.909959px;}
.y7d{bottom:658.292978px;}
.y1cd{bottom:658.549813px;}
.y147{bottom:659.909894px;}
.y29{bottom:662.797500px;}
.y176{bottom:663.052485px;}
.y28{bottom:667.048500px;}
.y124{bottom:668.750384px;}
.y1cc{bottom:670.540012px;}
.yc8{bottom:671.475307px;}
.y7c{bottom:674.025956px;}
.y175{bottom:675.043640px;}
.y146{bottom:675.641676px;}
.y27{bottom:675.723000px;}
.y26{bottom:679.890000px;}
.y1cb{bottom:682.445092px;}
.y174{bottom:686.948721px;}
.yc7{bottom:687.207088px;}
.y123{bottom:688.479650px;}
.y25{bottom:688.564500px;}
.y7b{bottom:689.672856px;}
.y145{bottom:691.288577px;}
.y24{bottom:692.815500px;}
.y1ca{bottom:694.435291px;}
.y173{bottom:698.938920px;}
.y122{bottom:701.320075px;}
.y23{bottom:701.404500px;}
.yc6{bottom:702.853989px;}
.y7a{bottom:705.404638px;}
.y22{bottom:705.657000px;}
.y1c9{bottom:706.426446px;}
.y144{bottom:707.021554px;}
.y172{bottom:710.844000px;}
.y121{bottom:714.160500px;}
.y21{bottom:714.246000px;}
.y1c8{bottom:718.331527px;}
.y20{bottom:718.497000px;}
.yc5{bottom:718.585771px;}
.y79{bottom:721.051538px;}
.y143{bottom:722.753336px;}
.y1f{bottom:727.086000px;}
.y1c7{bottom:730.321725px;}
.y1e{bottom:731.338500px;}
.y120{bottom:733.890072px;}
.yc4{bottom:734.233867px;}
.y78{bottom:736.784516px;}
.y171{bottom:738.399038px;}
.y142{bottom:738.400236px;}
.y1d{bottom:739.927500px;}
.y1c6{bottom:742.226806px;}
.y1c{bottom:744.180000px;}
.y11f{bottom:748.261536px;}
.yc3{bottom:749.965648px;}
.y77{bottom:752.431416px;}
.y1b{bottom:752.769000px;}
.y141{bottom:754.132018px;}
.y1c5{bottom:754.217961px;}
.y1a{bottom:757.020000px;}
.y11e{bottom:762.633000px;}
.y19{bottom:765.609000px;}
.yc2{bottom:765.612549px;}
.y1c4{bottom:766.208160px;}
.y76{bottom:768.163198px;}
.y170{bottom:769.778916px;}
.y140{bottom:769.780114px;}
.y18{bottom:769.861500px;}
.y1c3{bottom:778.113240px;}
.yc1{bottom:781.344331px;}
.y75{bottom:783.810098px;}
.y16f{bottom:785.510698px;}
.y13f{bottom:785.511896px;}
.y1c2{bottom:790.104395px;}
.y17{bottom:790.270500px;}
.y15{bottom:790.272150px;}
.yc0{bottom:796.992426px;}
.y16{bottom:797.329500px;}
.y74{bottom:799.543076px;}
.y13e{bottom:801.158796px;}
.y1c1{bottom:802.009476px;}
.y11d{bottom:805.407000px;}
.y14{bottom:809.745000px;}
.y12{bottom:809.746690px;}
.ybf{bottom:812.724208px;}
.y1c0{bottom:813.999674px;}
.y73{bottom:815.189976px;}
.y13{bottom:816.802500px;}
.y16e{bottom:816.890576px;}
.y13d{bottom:816.890578px;}
.y1bf{bottom:825.904755px;}
.y11c{bottom:826.585534px;}
.ybe{bottom:828.371109px;}
.y11{bottom:829.134000px;}
.yf{bottom:829.135650px;}
.y72{bottom:830.921758px;}
.y13c{bottom:832.537478px;}
.y10{bottom:836.191500px;}
.y1be{bottom:837.895910px;}
.y11b{bottom:839.426915px;}
.ybd{bottom:844.102891px;}
.y71{bottom:846.568658px;}
.y16d{bottom:848.269258px;}
.y13b{bottom:848.270456px;}
.ye{bottom:848.608500px;}
.yc{bottom:848.608690px;}
.y1bd{bottom:849.886109px;}
.y11a{bottom:852.267340px;}
.yd{bottom:855.666000px;}
.ybc{bottom:859.750986px;}
.y1bc{bottom:861.791189px;}
.y70{bottom:862.301636px;}
.y16c{bottom:863.916158px;}
.y13a{bottom:863.917356px;}
.y119{bottom:865.107765px;}
.yb{bottom:867.996000px;}
.y9{bottom:867.997650px;}
.y1bb{bottom:873.781388px;}
.ya{bottom:875.055000px;}
.ybb{bottom:875.482768px;}
.y6f{bottom:877.948536px;}
.y118{bottom:878.034265px;}
.y16b{bottom:879.649136px;}
.y139{bottom:879.649138px;}
.y1ba{bottom:885.687425px;}
.y7{bottom:887.470500px;}
.y117{bottom:890.874690px;}
.yba{bottom:891.214550px;}
.y6e{bottom:893.680318px;}
.y8{bottom:894.444000px;}
.y16a{bottom:895.296036px;}
.y138{bottom:895.296038px;}
.y1b9{bottom:897.677624px;}
.y116{bottom:903.716071px;}
.yb9{bottom:906.861450px;}
.y9e{bottom:909.327218px;}
.y1b8{bottom:909.667822px;}
.y169{bottom:911.027818px;}
.y137{bottom:911.029016px;}
.y115{bottom:916.556496px;}
.y1b7{bottom:921.572903px;}
.yb8{bottom:922.594428px;}
.y6{bottom:924.888000px;}
.y6d{bottom:925.059000px;}
.y168{bottom:926.674718px;}
.y136{bottom:926.675916px;}
.y114{bottom:929.396921px;}
.y1b6{bottom:933.564058px;}
.yb7{bottom:938.241328px;}
.y113{bottom:942.238303px;}
.y167{bottom:942.406500px;}
.y135{bottom:942.407698px;}
.y166{bottom:943.852500px;}
.y1b5{bottom:945.469138px;}
.y112{bottom:955.078728px;}
.y1b4{bottom:957.459337px;}
.y5{bottom:957.798000px;}
.y134{bottom:958.054598px;}
.y111{bottom:967.920109px;}
.y1b3{bottom:969.365374px;}
.yb6{bottom:969.620010px;}
.y133{bottom:973.787576px;}
.y110{bottom:980.845652px;}
.y1b2{bottom:981.355573px;}
.y6c{bottom:984.586787px;}
.y132{bottom:989.434476px;}
.y1b1{bottom:993.345772px;}
.y10f{bottom:993.686077px;}
.y6b{bottom:998.873251px;}
.y5f{bottom:1003.719000px;}
.yb5{bottom:1005.166258px;}
.y1b0{bottom:1005.250852px;}
.y10e{bottom:1006.527459px;}
.y6a{bottom:1013.244715px;}
.y1af{bottom:1017.242007px;}
.y10d{bottom:1019.367884px;}
.yb4{bottom:1020.813158px;}
.y69{bottom:1027.616179px;}
.y1ae{bottom:1029.147088px;}
.y10c{bottom:1032.208309px;}
.yb3{bottom:1036.546136px;}
.y1ad{bottom:1041.137286px;}
.y68{bottom:1041.902643px;}
.y5e{bottom:1045.474500px;}
.y10b{bottom:1051.937575px;}
.yb2{bottom:1052.193036px;}
.y1ac{bottom:1053.127485px;}
.y67{bottom:1056.274108px;}
.y10a{bottom:1064.778000px;}
.y1ab{bottom:1065.033522px;}
.yb1{bottom:1067.924818px;}
.y66{bottom:1070.645572px;}
.y1aa{bottom:1077.023721px;}
.yb0{bottom:1083.571718px;}
.y109{bottom:1084.507536px;}
.y65{bottom:1084.932036px;}
.y5d{bottom:1087.312500px;}
.y1a9{bottom:1088.928801px;}
.y108{bottom:1098.879000px;}
.y64{bottom:1099.303500px;}
.y1a8{bottom:1100.919000px;}
.y2{bottom:1127.505000px;}
.y62{bottom:1128.630000px;}
.y1ce{bottom:1128.640776px;}
.y1a7{bottom:1128.641744px;}
.yaf{bottom:1128.642000px;}
.h9{height:23.521113px;}
.ha{height:33.622910px;}
.h10{height:33.623438px;}
.hf{height:34.478653px;}
.h11{height:35.100320px;}
.hb{height:36.224038px;}
.hc{height:36.775371px;}
.h8{height:37.122363px;}
.h3{height:37.826367px;}
.h7{height:38.959629px;}
.hd{height:42.029824px;}
.h4{height:50.435156px;}
.h6{height:55.689609px;}
.h5{height:70.925098px;}
.he{height:73.551270px;}
.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;}
.x3d{left:61.398300px;}
.x3c{left:62.758950px;}
.x4d{left:63.949500px;}
.x45{left:65.140050px;}
.x4e{left:74.323810px;}
.x2b{left:90.061848px;}
.x62{left:112.080962px;}
.x66{left:130.279056px;}
.x2c{left:142.020600px;}
.x67{left:143.034363px;}
.x64{left:147.797160px;}
.xe{left:153.496500px;}
.xf{left:159.364500px;}
.x2d{left:165.231000px;}
.x61{left:167.100835px;}
.x37{left:193.039500px;}
.x65{left:197.374246px;}
.x38{left:199.332000px;}
.x47{left:200.775702px;}
.x63{left:206.473293px;}
.x22{left:225.354000px;}
.x23{left:230.881500px;}
.x3{left:233.008500px;}
.x4{left:239.046000px;}
.x49{left:247.292138px;}
.x10{left:252.567000px;}
.x11{left:256.479000px;}
.x50{left:259.540500px;}
.x48{left:263.279287px;}
.x39{left:264.981783px;}
.x40{left:268.211420px;}
.x4a{left:275.779978px;}
.x1a{left:277.059000px;}
.x2e{left:278.844000px;}
.x1b{left:280.545000px;}
.x2f{left:283.521000px;}
.x42{left:292.787372px;}
.x41{left:294.998808px;}
.x68{left:298.655417px;}
.x51{left:301.890000px;}
.x4c{left:302.995500px;}
.x1{left:304.661979px;}
.x3e{left:317.533505px;}
.x46{left:319.319473px;}
.x43{left:331.650077px;}
.x4f{left:342.624000px;}
.x4b{left:349.508232px;}
.x3f{left:353.334821px;}
.x5{left:354.784500px;}
.x6{left:361.417500px;}
.x7{left:365.925000px;}
.x8{left:371.791500px;}
.x44{left:373.063460px;}
.x59{left:376.299000px;}
.x12{left:384.463500px;}
.x30{left:387.777493px;}
.x13{left:390.756000px;}
.x3a{left:391.861500px;}
.x1c{left:393.987000px;}
.x9{left:395.432011px;}
.x1d{left:400.365000px;}
.x24{left:415.417500px;}
.x25{left:422.220000px;}
.x53{left:444.311979px;}
.x31{left:457.597500px;}
.x54{left:459.888932px;}
.x32{left:462.358500px;}
.x5c{left:468.909752px;}
.x55{left:470.774096px;}
.x58{left:477.831221px;}
.xa{left:487.956000px;}
.x1e{left:491.272500px;}
.xb{left:493.483500px;}
.x1f{left:494.844000px;}
.x14{left:502.837500px;}
.x56{left:507.424999px;}
.x15{left:509.641500px;}
.x60{left:516.016997px;}
.x16{left:541.954740px;}
.x3b{left:551.393767px;}
.x33{left:563.641500px;}
.x34{left:567.637500px;}
.x26{left:570.866606px;}
.x17{left:576.907024px;}
.x27{left:582.094500px;}
.x28{left:588.558000px;}
.x52{left:597.326979px;}
.x57{left:603.008814px;}
.x20{left:613.644000px;}
.x21{left:623.763000px;}
.x5d{left:634.648500px;}
.xc{left:662.967000px;}
.xd{left:669.600000px;}
.x35{left:675.380509px;}
.x5f{left:679.035690px;}
.x18{left:689.499000px;}
.x19{left:693.070500px;}
.x36{left:699.108000px;}
.x29{left:714.841500px;}
.x2a{left:721.474500px;}
.x5e{left:747.832288px;}
.x5a{left:750.897000px;}
.x5b{left:784.061563px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.417741pt;}
.v1{vertical-align:3.323006pt;}
.v3{vertical-align:8.463795pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.989540pt;}
.ls8{letter-spacing:1.054179pt;}
.ls7{letter-spacing:8.994524pt;}
.ls2{letter-spacing:9.548698pt;}
.ls10{letter-spacing:10.099426pt;}
.lse{letter-spacing:10.503529pt;}
.lsd{letter-spacing:10.507780pt;}
.ls9{letter-spacing:10.809581pt;}
.ls6{letter-spacing:12.873144pt;}
.ls14{letter-spacing:14.303673pt;}
.ls5{letter-spacing:15.290923pt;}
.ls3{letter-spacing:15.596971pt;}
.lsf{letter-spacing:15.948701pt;}
.lsb{letter-spacing:16.250503pt;}
.lsc{letter-spacing:16.556554pt;}
.ls0{letter-spacing:16.922845pt;}
.ls11{letter-spacing:17.498870pt;}
.ls13{letter-spacing:17.500214pt;}
.ls12{letter-spacing:17.804913pt;}
.ls1{letter-spacing:18.014750pt;}
.lsa{letter-spacing:23.506482pt;}
.wsb{word-spacing:-42.507200pt;}
.ws5{word-spacing:-38.256000pt;}
.wse{word-spacing:-34.004800pt;}
.ws9{word-spacing:-27.417144pt;}
.ws7{word-spacing:-24.675120pt;}
.ws10{word-spacing:-21.933096pt;}
.wsc{word-spacing:-20.556482pt;}
.ws1{word-spacing:-16.502385pt;}
.ws8{word-spacing:-12.454610pt;}
.ws6{word-spacing:-11.209008pt;}
.wsa{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.wsf{word-spacing:-9.963406pt;}
.ws2{word-spacing:-9.564000pt;}
.ws4{word-spacing:-8.943403pt;}
.wsd{word-spacing:-8.501200pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-15.416526pt;}
._10{margin-left:-4.151330pt;}
._8{margin-left:-3.052829pt;}
._7{margin-left:-1.798032pt;}
._9{margin-left:-0.902842pt;}
._2{width:1.049321pt;}
._0{width:2.070925pt;}
._1{width:3.660355pt;}
._3{width:4.892165pt;}
._6{width:5.879947pt;}
._5{width:6.989371pt;}
._b{width:8.290075pt;}
._d{width:9.511506pt;}
._e{width:10.733068pt;}
._11{width:13.500287pt;}
._f{width:14.524710pt;}
._12{width:16.105978pt;}
._13{width:17.045387pt;}
._a{width:18.060658pt;}
._3e{width:19.063487pt;}
._3d{width:20.369450pt;}
._16{width:22.341784pt;}
._15{width:23.370459pt;}
._c{width:26.839046pt;}
._14{width:33.839982pt;}
._31{width:50.520931pt;}
._2e{width:69.665634pt;}
._34{width:79.231184pt;}
._2a{width:83.777626pt;}
._2b{width:85.006626pt;}
._3c{width:97.933824pt;}
._3a{width:98.987973pt;}
._37{width:152.905984pt;}
._39{width:172.234312pt;}
._3b{width:179.089680pt;}
._2f{width:192.908684pt;}
._33{width:198.234382pt;}
._38{width:202.940646pt;}
._32{width:205.865059pt;}
._36{width:233.748995pt;}
._35{width:238.407653pt;}
._30{width:324.026365pt;}
._2d{width:361.907712pt;}
._1c{width:367.589914pt;}
._1d{width:388.609708pt;}
._27{width:430.289938pt;}
._25{width:436.925702pt;}
._24{width:560.907202pt;}
._26{width:572.974079pt;}
._1b{width:604.263322pt;}
._23{width:610.311349pt;}
._1a{width:615.582093pt;}
._22{width:619.254612pt;}
._29{width:664.991068pt;}
._28{width:666.045217pt;}
._20{width:682.265506pt;}
._1e{width:703.654525pt;}
._1f{width:737.557311pt;}
._2c{width:741.284237pt;}
._21{width:745.854482pt;}
._17{width:761.156642pt;}
._18{width:803.934681pt;}
._19{width:940.293929pt;}
.fs6{font-size:23.788267pt;}
.fs7{font-size:34.004800pt;}
.fsb{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:42.507200pt;}
.fs1{font-size:51.008000pt;}
.fs3{font-size:56.322133pt;}
.fs2{font-size:71.730667pt;}
.fsa{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y63{bottom:42.160000pt;}
.y9d{bottom:69.702756pt;}
.y107{bottom:69.770451pt;}
.ye8{bottom:73.860476pt;}
.y1a6{bottom:79.301186pt;}
.y106{bottom:82.469530pt;}
.y4{bottom:83.106667pt;}
.y9c{bottom:83.686562pt;}
.ye7{bottom:87.768832pt;}
.y1a5{bottom:89.883480pt;}
.y3{bottom:93.893333pt;}
.y105{bottom:95.244165pt;}
.y9b{bottom:97.594918pt;}
.y1a4{bottom:100.541434pt;}
.ye6{bottom:101.752638pt;}
.y61{bottom:106.582787pt;}
.y104{bottom:108.018800pt;}
.y1a3{bottom:111.199388pt;}
.y9a{bottom:111.579787pt;}
.y165{bottom:112.411318pt;}
.ye5{bottom:115.662056pt;}
.y60{bottom:119.281867pt;}
.y1a2{bottom:121.782532pt;}
.y99{bottom:125.488143pt;}
.y164{bottom:126.319674pt;}
.y103{bottom:126.844402pt;}
.ye4{bottom:129.645862pt;}
.y1a1{bottom:132.440487pt;}
.y102{bottom:138.258114pt;}
.y98{bottom:139.471949pt;}
.y163{bottom:140.303480pt;}
.y5c{bottom:141.958699pt;}
.y1a0{bottom:143.022781pt;}
.ye3{bottom:143.554218pt;}
.y101{bottom:149.672675pt;}
.y97{bottom:153.380305pt;}
.y19f{bottom:153.680735pt;}
.y162{bottom:154.288349pt;}
.y5b{bottom:154.733333pt;}
.ye2{bottom:157.538024pt;}
.y100{bottom:161.162047pt;}
.y19e{bottom:164.339540pt;}
.y96{bottom:167.365174pt;}
.ye1{bottom:171.447443pt;}
.yff{bottom:172.575758pt;}
.y19d{bottom:174.921833pt;}
.y95{bottom:181.273529pt;}
.y161{bottom:182.180511pt;}
.yfe{bottom:183.990319pt;}
.ye0{bottom:185.431249pt;}
.y19c{bottom:185.579788pt;}
.y5a{bottom:193.438637pt;}
.y94{bottom:195.257336pt;}
.yfd{bottom:195.404030pt;}
.y19b{bottom:196.162082pt;}
.ydf{bottom:199.339605pt;}
.y59{bottom:206.213271pt;}
.yfc{bottom:206.818591pt;}
.y19a{bottom:206.820886pt;}
.y93{bottom:209.165691pt;}
.y160{bottom:210.073735pt;}
.yde{bottom:213.323411pt;}
.y199{bottom:217.403180pt;}
.yfb{bottom:218.232302pt;}
.y58{bottom:218.987906pt;}
.y92{bottom:223.149498pt;}
.y15f{bottom:223.982091pt;}
.ydd{bottom:227.231767pt;}
.y198{bottom:228.061134pt;}
.yfa{bottom:229.646014pt;}
.y57{bottom:231.686985pt;}
.y91{bottom:237.058916pt;}
.y15e{bottom:237.965897pt;}
.y197{bottom:238.719939pt;}
.yf9{bottom:241.060575pt;}
.ydc{bottom:241.216636pt;}
.y56{bottom:244.461620pt;}
.y196{bottom:249.302233pt;}
.y15d{bottom:251.874253pt;}
.yf8{bottom:252.549947pt;}
.ydb{bottom:255.200442pt;}
.y55{bottom:257.236255pt;}
.y195{bottom:259.960187pt;}
.yf7{bottom:263.964508pt;}
.y90{bottom:264.951078pt;}
.y15c{bottom:265.859122pt;}
.yda{bottom:269.108798pt;}
.y54{bottom:270.010890pt;}
.y194{bottom:270.542481pt;}
.yf6{bottom:275.378219pt;}
.y15b{bottom:279.767478pt;}
.y193{bottom:281.201285pt;}
.y53{bottom:282.709969pt;}
.yd9{bottom:283.092604pt;}
.yf5{bottom:286.791930pt;}
.y192{bottom:291.859240pt;}
.y15a{bottom:293.751284pt;}
.y52{bottom:295.484604pt;}
.yd8{bottom:297.002022pt;}
.yf4{bottom:298.206491pt;}
.y191{bottom:302.441534pt;}
.y4c{bottom:303.421600pt;}
.y8f{bottom:303.652821pt;}
.yae{bottom:306.223444pt;}
.y159{bottom:307.659640pt;}
.y51{bottom:308.259239pt;}
.yf3{bottom:309.620202pt;}
.yd7{bottom:310.985828pt;}
.y190{bottom:313.099488pt;}
.y4b{bottom:314.910972pt;}
.y8e{bottom:317.562239pt;}
.yad{bottom:320.131800pt;}
.y50{bottom:320.958318pt;}
.yf2{bottom:321.034764pt;}
.y18f{bottom:323.682632pt;}
.yd6{bottom:324.894184pt;}
.y4a{bottom:326.324683pt;}
.y8d{bottom:331.546046pt;}
.yf1{bottom:332.524135pt;}
.y4f{bottom:333.732953pt;}
.yac{bottom:334.115606pt;}
.y18e{bottom:334.340586pt;}
.y158{bottom:335.552865pt;}
.y49{bottom:337.739244pt;}
.yd5{bottom:338.877990pt;}
.yf0{bottom:343.937847pt;}
.y18d{bottom:344.922880pt;}
.y8c{bottom:345.454401pt;}
.y4e{bottom:346.507587pt;}
.yab{bottom:348.023962pt;}
.y48{bottom:349.152956pt;}
.yd4{bottom:352.787409pt;}
.yef{bottom:355.352408pt;}
.y18c{bottom:355.581685pt;}
.y4d{bottom:359.206667pt;}
.y8b{bottom:359.438208pt;}
.y47{bottom:360.566667pt;}
.yaa{bottom:362.008830pt;}
.y157{bottom:363.445026pt;}
.y18b{bottom:366.239639pt;}
.yee{bottom:366.766119pt;}
.yd3{bottom:366.771215pt;}
.y8a{bottom:373.423076pt;}
.ya9{bottom:375.917186pt;}
.y18a{bottom:376.821933pt;}
.y156{bottom:377.428833pt;}
.yed{bottom:378.179830pt;}
.yd2{bottom:380.679571pt;}
.y46{bottom:385.285333pt;}
.y89{bottom:387.331432pt;}
.y189{bottom:387.479887pt;}
.yec{bottom:389.594391pt;}
.ya8{bottom:389.900992pt;}
.y155{bottom:391.338251pt;}
.yd1{bottom:394.663377pt;}
.y188{bottom:398.063031pt;}
.y88{bottom:401.315238pt;}
.ya7{bottom:403.809348pt;}
.y154{bottom:405.322057pt;}
.yeb{bottom:407.130667pt;}
.yd0{bottom:408.572795pt;}
.y187{bottom:408.720986pt;}
.y87{bottom:415.223594pt;}
.ya6{bottom:417.794217pt;}
.y153{bottom:419.230413pt;}
.y186{bottom:419.378940pt;}
.yea{bottom:424.668032pt;}
.y86{bottom:429.208463pt;}
.y45{bottom:429.278667pt;}
.y185{bottom:429.961234pt;}
.ya5{bottom:431.702573pt;}
.y44{bottom:433.058667pt;}
.y152{bottom:433.214219pt;}
.ye9{bottom:437.442667pt;}
.y131{bottom:438.500000pt;}
.y184{bottom:440.620038pt;}
.y43{bottom:440.693333pt;}
.y85{bottom:443.116819pt;}
.y42{bottom:444.472000pt;}
.ya4{bottom:445.686379pt;}
.y151{bottom:447.123638pt;}
.y183{bottom:451.202332pt;}
.y41{bottom:452.106667pt;}
.y40{bottom:455.886667pt;}
.y84{bottom:457.100625pt;}
.y130{bottom:457.324680pt;}
.ya3{bottom:459.594735pt;}
.y150{bottom:461.107444pt;}
.y182{bottom:461.860287pt;}
.y3f{bottom:463.521333pt;}
.y3e{bottom:467.301333pt;}
.ycf{bottom:467.683308pt;}
.y12f{bottom:468.814902pt;}
.y83{bottom:471.008981pt;}
.y181{bottom:472.442580pt;}
.ya2{bottom:473.579604pt;}
.y3d{bottom:474.936000pt;}
.y14f{bottom:475.015800pt;}
.y3c{bottom:478.714667pt;}
.y12e{bottom:480.228613pt;}
.yce{bottom:481.591664pt;}
.y180{bottom:483.101385pt;}
.y3b{bottom:486.349333pt;}
.ya1{bottom:487.487959pt;}
.y14e{bottom:488.999606pt;}
.y3a{bottom:490.129333pt;}
.y12d{bottom:491.643174pt;}
.y17f{bottom:493.759339pt;}
.ycd{bottom:495.576532pt;}
.y39{bottom:497.764000pt;}
.y82{bottom:498.902205pt;}
.ya0{bottom:501.471766pt;}
.y38{bottom:501.542667pt;}
.y14d{bottom:502.907962pt;}
.y12c{bottom:503.056886pt;}
.y17e{bottom:504.341633pt;}
.y37{bottom:509.177333pt;}
.y36{bottom:512.957333pt;}
.y12b{bottom:514.470597pt;}
.y17d{bottom:515.000438pt;}
.y9f{bottom:515.380121pt;}
.y14c{bottom:516.892830pt;}
.y35{bottom:520.668000pt;}
.ycc{bottom:523.468694pt;}
.y34{bottom:524.446667pt;}
.y17c{bottom:525.582731pt;}
.y12a{bottom:525.885158pt;}
.y81{bottom:529.364990pt;}
.y14b{bottom:530.801186pt;}
.y33{bottom:532.081333pt;}
.y32{bottom:535.861333pt;}
.y17b{bottom:536.240686pt;}
.y129{bottom:537.298869pt;}
.y80{bottom:543.348796pt;}
.y31{bottom:543.496000pt;}
.y14a{bottom:544.784992pt;}
.y17a{bottom:546.898640pt;}
.y30{bottom:547.276000pt;}
.y128{bottom:548.713430pt;}
.y2f{bottom:554.910667pt;}
.ycb{bottom:555.065359pt;}
.y7f{bottom:557.257152pt;}
.y179{bottom:557.481784pt;}
.y2e{bottom:558.689333pt;}
.y149{bottom:558.693348pt;}
.y127{bottom:560.202802pt;}
.y2d{bottom:566.324000pt;}
.y178{bottom:568.139739pt;}
.yca{bottom:568.973715pt;}
.y2c{bottom:570.104000pt;}
.y7e{bottom:571.240958pt;}
.y126{bottom:571.616513pt;}
.y148{bottom:572.678217pt;}
.y2b{bottom:577.738667pt;}
.y177{bottom:578.722032pt;}
.y2a{bottom:581.518667pt;}
.yc9{bottom:582.958583pt;}
.y125{bottom:583.031074pt;}
.y7d{bottom:585.149314pt;}
.y1cd{bottom:585.377612pt;}
.y147{bottom:586.586573pt;}
.y29{bottom:589.153333pt;}
.y176{bottom:589.379987pt;}
.y28{bottom:592.932000pt;}
.y124{bottom:594.444786pt;}
.y1cc{bottom:596.035566pt;}
.yc8{bottom:596.866939pt;}
.y7c{bottom:599.134183pt;}
.y175{bottom:600.038791pt;}
.y146{bottom:600.570379pt;}
.y27{bottom:600.642667pt;}
.y26{bottom:604.346667pt;}
.y1cb{bottom:606.617860pt;}
.y174{bottom:610.621085pt;}
.yc7{bottom:610.850745pt;}
.y123{bottom:611.981911pt;}
.y25{bottom:612.057333pt;}
.y7b{bottom:613.042539pt;}
.y145{bottom:614.478735pt;}
.y24{bottom:615.836000pt;}
.y1ca{bottom:617.275814pt;}
.y173{bottom:621.279040pt;}
.y122{bottom:623.395622pt;}
.y23{bottom:623.470667pt;}
.yc6{bottom:624.759101pt;}
.y7a{bottom:627.026345pt;}
.y22{bottom:627.250667pt;}
.y1c9{bottom:627.934619pt;}
.y144{bottom:628.463604pt;}
.y172{bottom:631.861333pt;}
.y121{bottom:634.809333pt;}
.y21{bottom:634.885333pt;}
.y1c8{bottom:638.516912pt;}
.y20{bottom:638.664000pt;}
.yc5{bottom:638.742907pt;}
.y79{bottom:640.934701pt;}
.y143{bottom:642.447410pt;}
.y1f{bottom:646.298667pt;}
.y1c7{bottom:649.174867pt;}
.y1e{bottom:650.078667pt;}
.y120{bottom:652.346730pt;}
.yc4{bottom:652.652326pt;}
.y78{bottom:654.919570pt;}
.y171{bottom:656.354701pt;}
.y142{bottom:656.355766pt;}
.y1d{bottom:657.713333pt;}
.y1c6{bottom:659.757161pt;}
.y1c{bottom:661.493333pt;}
.y11f{bottom:665.121365pt;}
.yc3{bottom:666.636132pt;}
.y77{bottom:668.827925pt;}
.y1b{bottom:669.128000pt;}
.y141{bottom:670.339572pt;}
.y1c5{bottom:670.415965pt;}
.y1a{bottom:672.906667pt;}
.y11e{bottom:677.896000pt;}
.y19{bottom:680.541333pt;}
.yc2{bottom:680.544488pt;}
.y1c4{bottom:681.073920pt;}
.y76{bottom:682.811732pt;}
.y170{bottom:684.247925pt;}
.y140{bottom:684.248990pt;}
.y18{bottom:684.321333pt;}
.y1c3{bottom:691.656213pt;}
.yc1{bottom:694.528294pt;}
.y75{bottom:696.720087pt;}
.y16f{bottom:698.231732pt;}
.y13f{bottom:698.232796pt;}
.y1c2{bottom:702.315018pt;}
.y17{bottom:702.462667pt;}
.y15{bottom:702.464134pt;}
.yc0{bottom:708.437712pt;}
.y16{bottom:708.737333pt;}
.y74{bottom:710.704956pt;}
.y13e{bottom:712.141152pt;}
.y1c1{bottom:712.897312pt;}
.y11d{bottom:715.917333pt;}
.y14{bottom:719.773333pt;}
.y12{bottom:719.774835pt;}
.ybf{bottom:722.421519pt;}
.y1c0{bottom:723.555266pt;}
.y73{bottom:724.613312pt;}
.y13{bottom:726.046667pt;}
.y16e{bottom:726.124956pt;}
.y13d{bottom:726.124958pt;}
.y1bf{bottom:734.137560pt;}
.y11c{bottom:734.742697pt;}
.ybe{bottom:736.329874pt;}
.y11{bottom:737.008000pt;}
.yf{bottom:737.009467pt;}
.y72{bottom:738.597118pt;}
.y13c{bottom:740.033314pt;}
.y10{bottom:743.281333pt;}
.y1be{bottom:744.796365pt;}
.y11b{bottom:746.157258pt;}
.ybd{bottom:750.313680pt;}
.y71{bottom:752.505474pt;}
.y16d{bottom:754.017118pt;}
.y13b{bottom:754.018183pt;}
.ye{bottom:754.318667pt;}
.yc{bottom:754.318835pt;}
.y1bd{bottom:755.454319pt;}
.y11a{bottom:757.570969pt;}
.yd{bottom:760.592000pt;}
.ybc{bottom:764.223099pt;}
.y1bc{bottom:766.036613pt;}
.y70{bottom:766.490343pt;}
.y16c{bottom:767.925474pt;}
.y13a{bottom:767.926539pt;}
.y119{bottom:768.984680pt;}
.yb{bottom:771.552000pt;}
.y9{bottom:771.553467pt;}
.y1bb{bottom:776.694567pt;}
.ya{bottom:777.826667pt;}
.ybb{bottom:778.206905pt;}
.y6f{bottom:780.398699pt;}
.y118{bottom:780.474902pt;}
.y16b{bottom:781.910343pt;}
.y139{bottom:781.910345pt;}
.y1ba{bottom:787.277711pt;}
.y7{bottom:788.862667pt;}
.y117{bottom:791.888613pt;}
.yba{bottom:792.190711pt;}
.y6e{bottom:794.382505pt;}
.y8{bottom:795.061333pt;}
.y16a{bottom:795.818699pt;}
.y138{bottom:795.818701pt;}
.y1b9{bottom:797.935665pt;}
.y116{bottom:803.303174pt;}
.yb9{bottom:806.099067pt;}
.y9e{bottom:808.290861pt;}
.y1b8{bottom:808.593620pt;}
.y169{bottom:809.802505pt;}
.y137{bottom:809.803570pt;}
.y115{bottom:814.716886pt;}
.y1b7{bottom:819.175914pt;}
.yb8{bottom:820.083936pt;}
.y6{bottom:822.122667pt;}
.y6d{bottom:822.274667pt;}
.y168{bottom:823.710861pt;}
.y136{bottom:823.711925pt;}
.y114{bottom:826.130597pt;}
.y1b6{bottom:829.834718pt;}
.yb7{bottom:833.992292pt;}
.y113{bottom:837.545158pt;}
.y167{bottom:837.694667pt;}
.y135{bottom:837.695732pt;}
.y166{bottom:838.980000pt;}
.y1b5{bottom:840.417012pt;}
.y112{bottom:848.958869pt;}
.y1b4{bottom:851.074966pt;}
.y5{bottom:851.376000pt;}
.y134{bottom:851.604087pt;}
.y111{bottom:860.373430pt;}
.y1b3{bottom:861.658110pt;}
.yb6{bottom:861.884454pt;}
.y133{bottom:865.588956pt;}
.y110{bottom:871.862802pt;}
.y1b2{bottom:872.316065pt;}
.y6c{bottom:875.188255pt;}
.y132{bottom:879.497312pt;}
.y1b1{bottom:882.974019pt;}
.y10f{bottom:883.276513pt;}
.y6b{bottom:887.887334pt;}
.y5f{bottom:892.194667pt;}
.yb5{bottom:893.481118pt;}
.y1b0{bottom:893.556313pt;}
.y10e{bottom:894.691074pt;}
.y6a{bottom:900.661969pt;}
.y1af{bottom:904.215118pt;}
.y10d{bottom:906.104786pt;}
.yb4{bottom:907.389474pt;}
.y69{bottom:913.436604pt;}
.y1ae{bottom:914.797411pt;}
.y10c{bottom:917.518497pt;}
.yb3{bottom:921.374343pt;}
.y1ad{bottom:925.455366pt;}
.y68{bottom:926.135683pt;}
.y5e{bottom:929.310667pt;}
.y10b{bottom:935.055622pt;}
.yb2{bottom:935.282699pt;}
.y1ac{bottom:936.113320pt;}
.y67{bottom:938.910318pt;}
.y10a{bottom:946.469333pt;}
.y1ab{bottom:946.696464pt;}
.yb1{bottom:949.266505pt;}
.y66{bottom:951.684953pt;}
.y1aa{bottom:957.354418pt;}
.yb0{bottom:963.174861pt;}
.y109{bottom:964.006699pt;}
.y65{bottom:964.384032pt;}
.y5d{bottom:966.500000pt;}
.y1a9{bottom:967.936712pt;}
.y108{bottom:976.781333pt;}
.y64{bottom:977.158667pt;}
.y1a8{bottom:978.594667pt;}
.y2{bottom:1002.226667pt;}
.y62{bottom:1003.226667pt;}
.y1ce{bottom:1003.236245pt;}
.y1a7{bottom:1003.237105pt;}
.yaf{bottom:1003.237333pt;}
.h9{height:20.907656pt;}
.ha{height:29.887031pt;}
.h10{height:29.887500pt;}
.hf{height:30.647691pt;}
.h11{height:31.200285pt;}
.hb{height:32.199145pt;}
.hc{height:32.689219pt;}
.h8{height:32.997656pt;}
.h3{height:33.623437pt;}
.h7{height:34.630781pt;}
.hd{height:37.359844pt;}
.h4{height:44.831250pt;}
.h6{height:49.501875pt;}
.h5{height:63.044531pt;}
.he{height:65.378906pt;}
.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;}
.x3d{left:54.576267pt;}
.x3c{left:55.785733pt;}
.x4d{left:56.844000pt;}
.x45{left:57.902267pt;}
.x4e{left:66.065609pt;}
.x2b{left:80.054976pt;}
.x62{left:99.627522pt;}
.x66{left:115.803605pt;}
.x2c{left:126.240533pt;}
.x67{left:127.141656pt;}
.x64{left:131.375254pt;}
.xe{left:136.441333pt;}
.xf{left:141.657333pt;}
.x2d{left:146.872000pt;}
.x61{left:148.534076pt;}
.x37{left:171.590667pt;}
.x65{left:175.443774pt;}
.x38{left:177.184000pt;}
.x47{left:178.467291pt;}
.x63{left:183.531816pt;}
.x22{left:200.314667pt;}
.x23{left:205.228000pt;}
.x3{left:207.118667pt;}
.x4{left:212.485333pt;}
.x49{left:219.815234pt;}
.x10{left:224.504000pt;}
.x11{left:227.981333pt;}
.x50{left:230.702667pt;}
.x48{left:234.026033pt;}
.x39{left:235.539362pt;}
.x40{left:238.410151pt;}
.x4a{left:245.137758pt;}
.x1a{left:246.274667pt;}
.x2e{left:247.861333pt;}
.x1b{left:249.373333pt;}
.x2f{left:252.018667pt;}
.x42{left:260.255442pt;}
.x41{left:262.221162pt;}
.x68{left:265.471482pt;}
.x51{left:268.346667pt;}
.x4c{left:269.329333pt;}
.x1{left:270.810648pt;}
.x3e{left:282.252005pt;}
.x46{left:283.839532pt;}
.x43{left:294.800068pt;}
.x4f{left:304.554667pt;}
.x4b{left:310.673984pt;}
.x3f{left:314.075397pt;}
.x5{left:315.364000pt;}
.x6{left:321.260000pt;}
.x7{left:325.266667pt;}
.x8{left:330.481333pt;}
.x44{left:331.611965pt;}
.x59{left:334.488000pt;}
.x12{left:341.745333pt;}
.x30{left:344.691105pt;}
.x13{left:347.338667pt;}
.x3a{left:348.321333pt;}
.x1c{left:350.210667pt;}
.x9{left:351.495121pt;}
.x1d{left:355.880000pt;}
.x24{left:369.260000pt;}
.x25{left:375.306667pt;}
.x53{left:394.943981pt;}
.x31{left:406.753333pt;}
.x54{left:408.790162pt;}
.x32{left:410.985333pt;}
.x5c{left:416.808668pt;}
.x55{left:418.465863pt;}
.x58{left:424.738863pt;}
.xa{left:433.738667pt;}
.x1e{left:436.686667pt;}
.xb{left:438.652000pt;}
.x1f{left:439.861333pt;}
.x14{left:446.966667pt;}
.x56{left:451.044444pt;}
.x15{left:453.014667pt;}
.x60{left:458.681775pt;}
.x16{left:481.737547pt;}
.x3b{left:490.127793pt;}
.x33{left:501.014667pt;}
.x34{left:504.566667pt;}
.x26{left:507.436983pt;}
.x17{left:512.806243pt;}
.x27{left:517.417333pt;}
.x28{left:523.162667pt;}
.x52{left:530.957314pt;}
.x57{left:536.007835pt;}
.x20{left:545.461333pt;}
.x21{left:554.456000pt;}
.x5d{left:564.132000pt;}
.xc{left:589.304000pt;}
.xd{left:595.200000pt;}
.x35{left:600.338230pt;}
.x5f{left:603.587280pt;}
.x18{left:612.888000pt;}
.x19{left:616.062667pt;}
.x36{left:621.429333pt;}
.x29{left:635.414667pt;}
.x2a{left:641.310667pt;}
.x5e{left:664.739812pt;}
.x5a{left:667.464000pt;}
.x5b{left:696.943611pt;}
}




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