
    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_9f628bd5bb46d9d9b458a026.woff')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_5ff8f929062ad4406cfd583a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e5472c11ead579e38d84eb40.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_247e075a8547613ac9ef21ef.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b433058b3dc831b847c363d0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.844727;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_18b7c4ab04dea6f14eb258cb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.036133;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_6a386a7ccc3471a4dd217c13.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_624a949c1fabdd59803b75cf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.894640px;}
.v4{vertical-align:30.952425px;}
.v2{vertical-align:32.392143px;}
.v5{vertical-align:38.131076px;}
.v3{vertical-align:64.801692px;}
.v6{vertical-align:75.582234px;}
.v7{vertical-align:77.038065px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.067679px;}
.ls3{letter-spacing:0.338397px;}
.ls2{letter-spacing:25.280277px;}
.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;}
}
.ws1{word-spacing:-56.160091px;}
.ws3{word-spacing:-25.106429px;}
.ws19{word-spacing:-21.792752px;}
.ws5{word-spacing:-21.522034px;}
.ws4{word-spacing:-21.454355px;}
.wse{word-spacing:-16.739942px;}
.wsa{word-spacing:-16.380149px;}
.ws0{word-spacing:-14.040023px;}
.ws17{word-spacing:-3.705146px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:17.564145px;}
.ws14{word-spacing:127.207083px;}
.wsb{word-spacing:131.286136px;}
.wsf{word-spacing:139.435056px;}
.ws7{word-spacing:142.399931px;}
.ws15{word-spacing:158.493771px;}
.ws16{word-spacing:159.163369px;}
.wsc{word-spacing:160.328902px;}
.wsd{word-spacing:160.984108px;}
.ws8{word-spacing:168.873394px;}
.ws11{word-spacing:170.546530px;}
.ws10{word-spacing:171.216127px;}
.ws13{word-spacing:171.885725px;}
.ws12{word-spacing:348.325584px;}
.ws9{word-spacing:394.647704px;}
.ws18{word-spacing:2264.724712px;}
._19{margin-left:-6.078136px;}
._f{margin-left:-4.276805px;}
._6{margin-left:-2.571845px;}
._1{margin-left:-1.082870px;}
._0{width:1.015190px;}
._9{width:2.678450px;}
._a{width:4.155847px;}
._13{width:5.620316px;}
._5{width:7.521144px;}
._3{width:9.318266px;}
._18{width:10.536928px;}
._8{width:11.568979px;}
._7{width:12.748341px;}
._b{width:14.651992px;}
._10{width:15.907723px;}
._12{width:17.370741px;}
._11{width:18.532821px;}
._1b{width:19.627012px;}
._c{width:20.908824px;}
._d{width:22.481305px;}
._4{width:23.652016px;}
._1a{width:25.312078px;}
._14{width:26.336178px;}
._17{width:27.816753px;}
._21{width:29.514730px;}
._3f{width:30.584143px;}
._1d{width:33.501280px;}
._2{width:35.158117px;}
._e{width:36.748842px;}
._15{width:38.332844px;}
._16{width:39.837646px;}
._1c{width:44.712533px;}
._41{width:48.357472px;}
._40{width:57.680952px;}
._2d{width:67.472192px;}
._2c{width:69.189751px;}
._20{width:74.108892px;}
._34{width:77.405492px;}
._44{width:78.508050px;}
._3c{width:80.007149px;}
._23{width:88.616315px;}
._3b{width:110.138025px;}
._2b{width:112.695428px;}
._42{width:114.039711px;}
._33{width:122.860381px;}
._22{width:128.606608px;}
._27{width:138.805823px;}
._24{width:145.053004px;}
._3e{width:176.260714px;}
._32{width:178.019464px;}
._3a{width:187.286472px;}
._36{width:188.625667px;}
._3d{width:192.297660px;}
._2e{width:194.399613px;}
._25{width:196.391838px;}
._2a{width:197.761403px;}
._35{width:204.136624px;}
._38{width:205.365609px;}
._2f{width:208.814145px;}
._26{width:209.978271px;}
._31{width:220.310552px;}
._39{width:221.435953px;}
._37{width:274.184022px;}
._30{width:298.536686px;}
._29{width:301.102142px;}
._1e{width:313.558444px;}
._1f{width:335.012799px;}
._43{width:337.431767px;}
._28{width:362.671166px;}
.fc3{color:rgb(5,99,193);}
.fc4{color:rgb(30,30,30);}
.fc2{color:rgb(9,9,9);}
.fc1{color:rgb(28,28,28);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:45.360414px;}
.fs4{font-size:56.160091px;}
.fs0{font-size:62.639307px;}
.fs6{font-size:65.520598px;}
.fs8{font-size:66.959768px;}
.fs1{font-size:67.679353px;}
.fs7{font-size:78.480505px;}
.fs2{font-size:79.200090px;}
.fs9{font-size:80.640736px;}
.fs5{font-size:89.999768px;}
.fsa{font-size:101.520505px;}
.y0{bottom:0.000000px;}
.y13{bottom:3.054923px;}
.y16{bottom:3.059191px;}
.y10{bottom:3.059233px;}
.y1b{bottom:3.059275px;}
.y24{bottom:3.063543px;}
.y19{bottom:3.067811px;}
.y1e{bottom:3.067894px;}
.y1a7{bottom:8.096397px;}
.y1b8{bottom:8.096410px;}
.y193{bottom:8.101591px;}
.y19d{bottom:8.104667px;}
.y1{bottom:51.133211px;}
.ya4{bottom:112.510052px;}
.y130{bottom:115.025314px;}
.y17b{bottom:123.668409px;}
.y1ad{bottom:124.034999px;}
.y151{bottom:124.752750px;}
.y5e{bottom:128.527266px;}
.y18f{bottom:129.611606px;}
.y131{bottom:134.100840px;}
.y12f{bottom:134.463632px;}
.y79{bottom:140.589240px;}
.ya3{bottom:140.769964px;}
.yb4{bottom:145.990368px;}
.yf0{bottom:151.013769px;}
.y17a{bottom:151.752842px;}
.y1ac{bottom:151.933565px;}
.y1c2{bottom:152.103901px;}
.y150{bottom:152.832039px;}
.y12e{bottom:153.717960px;}
.y5d{bottom:156.606556px;}
.y18e{bottom:157.690896px;}
.yca{bottom:162.180267px;}
.y78{bottom:168.668530px;}
.ya2{bottom:168.854396px;}
.yef{bottom:169.909327px;}
.y10f{bottom:169.922578px;}
.yb3{bottom:174.074700px;}
.y12c{bottom:177.120651px;}
.ycb{bottom:178.016409px;}
.yc9{bottom:178.380606px;}
.y179{bottom:179.651307px;}
.y1ab{bottom:180.007610px;}
.y14f{bottom:180.906084px;}
.y5c{bottom:184.690988px;}
.y18d{bottom:185.770084px;}
.yee{bottom:188.809865px;}
.y110{bottom:188.824491px;}
.y10e{bottom:189.187183px;}
.yc8{bottom:194.580946px;}
.y12d{bottom:196.017375px;}
.y12b{bottom:196.385256px;}
.y77{bottom:196.752962px;}
.yf1{bottom:197.807750px;}
.yb2{bottom:201.973266px;}
.yed{bottom:207.535444px;}
.y178{bottom:207.730596px;}
.y9c{bottom:207.911320px;}
.y10d{bottom:208.625501px;}
.y1aa{bottom:208.804650px;}
.y14e{bottom:208.985373px;}
.y8e{bottom:213.307203px;}
.y18c{bottom:213.673793px;}
.y42{bottom:214.917813px;}
.yc7{bottom:214.920348px;}
.y12a{bottom:215.644772px;}
.y5b{bottom:224.104114px;}
.y76{bottom:224.832151px;}
.y2a{bottom:225.173525px;}
.yec{bottom:226.435982px;}
.yb1{bottom:230.047311px;}
.yc6{bottom:231.120688px;}
.y10c{bottom:231.844202px;}
.y177{bottom:235.815029px;}
.y159{bottom:235.985365px;}
.y1b6{bottom:236.888982px;}
.y14d{bottom:237.069705px;}
.y129{bottom:239.047363px;}
.y8d{bottom:241.391636px;}
.y18b{bottom:241.753083px;}
.yeb{bottom:245.151602px;}
.y198{bottom:245.166153px;}
.y41{bottom:247.855389px;}
.y10b{bottom:251.282520px;}
.yc5{bottom:251.635661px;}
.y75{bottom:252.730717px;}
.y15f{bottom:252.906297px;}
.y128{bottom:258.301791px;}
.yb0{bottom:258.307324px;}
.y5a{bottom:263.713494px;}
.y9b{bottom:264.069797px;}
.y1b5{bottom:264.968271px;}
.y29{bottom:267.296149px;}
.yc4{bottom:267.836084px;}
.yea{bottom:268.191206px;}
.y8c{bottom:269.651548px;}
.y18a{bottom:269.827128px;}
.y197{bottom:273.245442px;}
.y10a{bottom:274.506309px;}
.y14c{bottom:276.312495px;}
.y40{bottom:280.623846px;}
.y74{bottom:280.985485px;}
.ya1{bottom:281.171453px;}
.y126{bottom:281.704382px;}
.y28{bottom:282.960987px;}
.yaf{bottom:286.391756px;}
.ye9{bottom:286.906826px;}
.yc3{bottom:288.175403px;}
.y176{bottom:292.149087px;}
.y9a{bottom:292.329810px;}
.y1b4{bottom:292.866837px;}
.y1c1{bottom:293.047560px;}
.y109{bottom:293.939539px;}
.y8b{bottom:297.725694px;}
.y189{bottom:298.087141px;}
.y127{bottom:300.601206px;}
.y125{bottom:300.963898px;}
.y196{bottom:301.329774px;}
.y27{bottom:301.496475px;}
.y59{bottom:302.945997px;}
.yc2{bottom:304.375743px;}
.y14b{bottom:304.386641px;}
.y73{bottom:309.069918px;}
.ye8{bottom:310.496301px;}
.y3f{bottom:313.204891px;}
.y107{bottom:317.163328px;}
.y175{bottom:320.047552px;}
.y26{bottom:320.220504px;}
.y124{bottom:320.402216px;}
.y99{bottom:320.414243px;}
.y1b3{bottom:321.849642px;}
.y25{bottom:323.275427px;}
.yc1{bottom:324.715145px;}
.yae{bottom:325.624159px;}
.y8a{bottom:325.804882px;}
.y188{bottom:325.990850px;}
.ye7{bottom:329.391859px;}
.y195{bottom:330.126813px;}
.y58{bottom:331.030430px;}
.y14a{bottom:332.465829px;}
.y106{bottom:336.601646px;}
.y72{bottom:337.149207px;}
.y23{bottom:338.755992px;}
.yc0{bottom:340.915485px;}
.y22{bottom:341.819534px;}
.y122{bottom:343.799719px;}
.y108{bottom:345.781905px;}
.y3e{bottom:346.142526px;}
.y174{bottom:348.131984px;}
.y98{bottom:348.312708px;}
.y15e{bottom:348.483145px;}
.y1a9{bottom:349.928932px;}
.ye5{bottom:352.971278px;}
.y89{bottom:353.708591px;}
.y187{bottom:354.070038px;}
.y105{bottom:355.866301px;}
.y21{bottom:357.655676px;}
.y194{bottom:358.928945px;}
.y57{bottom:359.109669px;}
.y20{bottom:360.723487px;}
.y149{bottom:360.730985px;}
.ybf{bottom:361.974662px;}
.y121{bottom:363.059235px;}
.yad{bottom:365.047723px;}
.ye6{bottom:371.336980px;}
.ye4{bottom:371.696857px;}
.y123{bottom:372.244533px;}
.y104{bottom:375.125817px;}
.y1f{bottom:376.199783px;}
.y173{bottom:376.211274px;}
.y71{bottom:376.386803px;}
.ya0{bottom:376.567527px;}
.y1c0{bottom:378.002977px;}
.ybe{bottom:378.175002px;}
.y1a8{bottom:378.183700px;}
.y3d{bottom:378.723630px;}
.y192{bottom:379.087317px;}
.y88{bottom:381.787881px;}
.y186{bottom:382.149328px;}
.y120{bottom:382.323840px;}
.y56{bottom:387.188908px;}
.y148{bottom:388.810275px;}
.ye3{bottom:390.597443px;}
.yac{bottom:393.132105px;}
.y1d{bottom:394.915193px;}
.y1c{bottom:397.983088px;}
.y1a6{bottom:398.171735px;}
.y102{bottom:398.523320px;}
.ybd{bottom:398.702863px;}
.y11f{bottom:401.583356px;}
.y172{bottom:404.285319px;}
.y70{bottom:404.466042px;}
.y1bf{bottom:406.087409px;}
.y87{bottom:410.052986px;}
.y185{bottom:410.223373px;}
.ye1{bottom:413.272094px;}
.y1a{bottom:413.459300px;}
.ybc{bottom:414.898934px;}
.y55{bottom:415.263003px;}
.y15d{bottom:415.810317px;}
.y147{bottom:416.708790px;}
.y103{bottom:417.425232px;}
.y101{bottom:417.782836px;}
.yab{bottom:421.386924px;}
.y3c{bottom:422.634340px;}
.y11e{bottom:424.802057px;}
.ye2{bottom:432.167653px;}
.y18{bottom:432.174794px;}
.ye0{bottom:432.352619px;}
.y171{bottom:432.364608px;}
.y6f{bottom:432.731198px;}
.y1be{bottom:434.166648px;}
.ybb{bottom:434.698401px;}
.y1b2{bottom:435.065122px;}
.y17{bottom:435.242605px;}
.y100{bottom:437.221154px;}
.y184{bottom:438.307805px;}
.y54{bottom:443.347385px;}
.y11d{bottom:444.061573px;}
.yaa{bottom:449.285439px;}
.y86{bottom:449.466163px;}
.y15{bottom:450.898824px;}
.ydf{bottom:451.068239px;}
.y14{bottom:453.958015px;}
.y15c{bottom:455.223493px;}
.y3b{bottom:455.584071px;}
.y132{bottom:455.944265px;}
.y146{bottom:455.946386px;}
.yff{bottom:460.261053px;}
.y170{bottom:460.448990px;}
.ycc{bottom:460.796423px;}
.y6e{bottom:460.810437px;}
.y1bd{bottom:462.968780px;}
.y183{bottom:466.387044px;}
.y12{bottom:469.622854px;}
.y53{bottom:471.426675px;}
.y97{bottom:471.963651px;}
.y11{bottom:472.677777px;}
.yde{bottom:474.297740px;}
.ya9{bottom:477.364729px;}
.ycd{bottom:478.436397px;}
.yfe{bottom:479.520569px;}
.y15b{bottom:483.307926px;}
.y145{bottom:484.025676px;}
.yf{bottom:488.158341px;}
.y3a{bottom:488.340372px;}
.y85{bottom:488.708953px;}
.y1a5{bottom:491.048070px;}
.ye{bottom:491.217574px;}
.y111{bottom:491.403211px;}
.ydd{bottom:493.193298px;}
.y182{bottom:494.466283px;}
.y191{bottom:494.652200px;}
.yce{bottom:495.896447px;}
.y133{bottom:496.440345px;}
.y16f{bottom:499.862167px;}
.y6d{bottom:500.042890px;}
.yf2{bottom:504.710611px;}
.ya8{bottom:505.449111px;}
.y52{bottom:510.844994px;}
.y15a{bottom:511.387165px;}
.y144{bottom:512.290781px;}
.y112{bottom:512.639775px;}
.ycf{bottom:513.536463px;}
.yd{bottom:515.340294px;}
.y84{bottom:516.783048px;}
.y1a4{bottom:519.127309px;}
.y39{bottom:521.102751px;}
.y181{bottom:522.550716px;}
.y190{bottom:522.721102px;}
.y9f{bottom:528.127323px;}
.yf3{bottom:528.834921px;}
.yd0{bottom:530.996513px;}
.ya7{bottom:533.528350px;}
.y113{bottom:534.065368px;}
.y134{bottom:537.120316px;}
.y16e{bottom:539.104957px;}
.y6c{bottom:539.471597px;}
.y143{bottom:540.370020px;}
.y83{bottom:544.862287px;}
.y1b1{bottom:547.929441px;}
.yd1{bottom:548.636529px;}
.y51{bottom:550.087784px;}
.y180{bottom:550.624811px;}
.yf4{bottom:552.959279px;}
.y38{bottom:553.859053px;}
.y114{bottom:555.296794px;}
.y158{bottom:556.025838px;}
.yc{bottom:557.998156px;}
.yd2{bottom:566.096579px;}
.y16d{bottom:567.189389px;}
.y6b{bottom:567.540499px;}
.y142{bottom:568.444116px;}
.ya6{bottom:572.765996px;}
.y82{bottom:572.946720px;}
.y1b0{bottom:576.003536px;}
.y115{bottom:576.722387px;}
.yf5{bottom:577.073582px;}
.y135{bottom:577.800287px;}
.y50{bottom:578.167023px;}
.y17f{bottom:578.523327px;}
.y96{bottom:578.704050px;}
.yd3{bottom:583.736553px;}
.y157{bottom:584.105077px;}
.y9e{bottom:584.290994px;}
.y37{bottom:586.622612px;}
.y16c{bottom:595.444208px;}
.y6a{bottom:595.624931px;}
.y141{bottom:596.523355px;}
.y116{bottom:597.964040px;}
.y81{bottom:601.025959px;}
.yd4{bottom:601.376568px;}
.yf6{bottom:601.377879px;}
.y1a3{bottom:604.082775px;}
.y17e{bottom:606.783289px;}
.y95{bottom:606.969206px;}
.ya5{bottom:612.359896px;}
.y4f{bottom:617.585393px;}
.y136{bottom:618.480258px;}
.yd5{bottom:618.836619px;}
.y36{bottom:619.377733px;}
.y117{bottom:619.379406px;}
.y16b{bottom:623.523447px;}
.y69{bottom:623.704170px;}
.yf7{bottom:625.492230px;}
.yb{bottom:627.118887px;}
.y1a2{bottom:632.167208px;}
.y17d{bottom:634.867721px;}
.y94{bottom:635.048445px;}
.y140{bottom:635.766145px;}
.yd6{bottom:636.476634px;}
.y80{bottom:640.444328px;}
.y118{bottom:640.626147px;}
.y4e{bottom:645.664632px;}
.yf8{bottom:649.616540px;}
.y16a{bottom:651.602686px;}
.y68{bottom:651.788603px;}
.y35{bottom:652.142531px;}
.y137{bottom:659.165367px;}
.y1a1{bottom:660.246447px;}
.yd7{bottom:660.783423px;}
.y119{bottom:662.041513px;}
.y17c{bottom:662.946960px;}
.y93{bottom:663.122540px;}
.y13f{bottom:664.020964px;}
.y156{bottom:668.523567px;}
.yf9{bottom:673.735871px;}
.y67{bottom:679.867842px;}
.y11a{bottom:683.284214px;}
.y4d{bottom:684.907422px;}
.y1af{bottom:689.046512px;}
.y92{bottom:691.021056px;}
.y13e{bottom:692.103329px;}
.y34{bottom:695.880493px;}
.y155{bottom:696.424150px;}
.yfa{bottom:697.859204px;}
.y169{bottom:699.307455px;}
.y138{bottom:699.844340px;}
.y11b{bottom:704.699530px;}
.y66{bottom:707.940878px;}
.y1bc{bottom:717.127818px;}
.y91{bottom:719.102362px;}
.y13d{bottom:720.002903px;}
.yfb{bottom:721.973556px;}
.y4c{bottom:724.323725px;}
.ya{bottom:724.501014px;}
.y154{bottom:724.505457px;}
.y168{bottom:727.380542px;}
.y33{bottom:729.002972px;}
.y139{bottom:729.720188px;}
.y11c{bottom:730.074405px;}
.y65{bottom:735.840453px;}
.yba{bottom:741.243547px;}
.y1a0{bottom:745.027393px;}
.yfc{bottom:746.279805px;}
.y90{bottom:747.183668px;}
.y13c{bottom:748.084209px;}
.y153{bottom:752.586763px;}
.y167{bottom:755.461848px;}
.y32{bottom:761.584076px;}
.y4b{bottom:763.739977px;}
.y64{bottom:763.921759px;}
.yfd{bottom:770.219678px;}
.y19f{bottom:773.100429px;}
.y1ae{bottom:773.827457px;}
.y9d{bottom:775.265000px;}
.yb9{bottom:780.659850px;}
.y152{bottom:780.841607px;}
.y166{bottom:783.543154px;}
.y13b{bottom:789.665032px;}
.y4a{bottom:792.003065px;}
.y63{bottom:792.184823px;}
.y31{bottom:794.339197px;}
.y9{bottom:800.094263px;}
.y13a{bottom:800.826491px;}
.y1bb{bottom:801.181761px;}
.y7f{bottom:803.346306px;}
.y8f{bottom:803.519794px;}
.yb8{bottom:808.741156px;}
.y165{bottom:811.624460px;}
.y8{bottom:818.636821px;}
.y49{bottom:820.084397px;}
.y62{bottom:820.266154px;}
.y30{bottom:827.103966px;}
.y19e{bottom:829.981826px;}
.y7e{bottom:831.419368px;}
.yb7{bottom:836.822462px;}
.y164{bottom:839.705792px;}
.ydc{bottom:843.481342px;}
.y48{bottom:848.165703px;}
.y19c{bottom:850.140222px;}
.y7{bottom:857.339642px;}
.y7d{bottom:859.500674px;}
.y2f{bottom:859.859087px;}
.yb6{bottom:864.903794px;}
.y163{bottom:867.787098px;}
.y47{bottom:876.247010px;}
.y1ba{bottom:886.144463px;}
.y7c{bottom:887.581981px;}
.y6{bottom:889.738627px;}
.y2e{bottom:892.623886px;}
.yb5{bottom:892.985100px;}
.y162{bottom:895.686647px;}
.y46{bottom:904.146584px;}
.y61{bottom:904.320071px;}
.y1b9{bottom:914.225770px;}
.y7b{bottom:915.663287px;}
.y161{bottom:923.941466px;}
.ydb{bottom:924.841495px;}
.y2d{bottom:925.378977px;}
.y5{bottom:928.622910px;}
.y45{bottom:932.401378px;}
.y60{bottom:932.583135px;}
.y1c3{bottom:942.298831px;}
.y19b{bottom:943.025860px;}
.y7a{bottom:943.744618px;}
.yda{bottom:951.665079px;}
.y160{bottom:952.022773px;}
.y2c{bottom:958.143775px;}
.y44{bottom:960.482684px;}
.y4{bottom:968.223862px;}
.y19a{bottom:971.098896px;}
.y5f{bottom:971.825925px;}
.yd9{bottom:978.480986px;}
.y1b7{bottom:991.083806px;}
.y2b{bottom:996.477310px;}
.y199{bottom:999.180215px;}
.y43{bottom:999.898987px;}
.y3{bottom:1001.340303px;}
.yd8{bottom:1005.297828px;}
.y2{bottom:1066.140810px;}
.ha{height:15.656136px;}
.h9{height:15.656177px;}
.he{height:15.656219px;}
.hc{height:15.660487px;}
.hb{height:15.664755px;}
.hd{height:15.664839px;}
.h27{height:27.898516px;}
.h25{height:27.898566px;}
.h26{height:27.899574px;}
.h28{height:28.081319px;}
.h6{height:31.517514px;}
.h8{height:38.034202px;}
.h5{height:39.021391px;}
.h7{height:39.029793px;}
.h1{height:42.728082px;}
.h1a{height:43.523308px;}
.h1b{height:45.525298px;}
.h18{height:45.868624px;}
.h1f{height:46.525269px;}
.h2{height:47.025254px;}
.h10{height:48.611489px;}
.h11{height:49.768118px;}
.h1e{height:53.188936px;}
.h3{height:53.676624px;}
.h23{height:54.652999px;}
.h4{height:57.412154px;}
.hf{height:58.239910px;}
.h12{height:58.511046px;}
.h19{height:62.534018px;}
.h24{height:68.803936px;}
.h14{height:69.973817px;}
.h15{height:69.990888px;}
.h17{height:69.991223px;}
.h16{height:71.447678px;}
.h1d{height:82.956344px;}
.h22{height:83.961113px;}
.h21{height:83.961512px;}
.h13{height:103.823084px;}
.h1c{height:121.107532px;}
.h20{height:123.563334px;}
.h0{height:1188.000000px;}
.w11{width:9.005183px;}
.wa{width:28.444820px;}
.we{width:32.767709px;}
.w1{width:33.296193px;}
.w4{width:37.070975px;}
.wd{width:41.215267px;}
.w6{width:51.476102px;}
.wf{width:61.554412px;}
.wc{width:64.796036px;}
.w10{width:64.802239px;}
.wb{width:78.477310px;}
.w13{width:140.034798px;}
.w9{width:186.297669px;}
.w3{width:188.277155px;}
.w2{width:193.135994px;}
.w12{width:206.094864px;}
.w8{width:404.457880px;}
.w7{width:551.158290px;}
.w5{width:609.656102px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x27{left:108.900027px;}
.x12{left:139.141566px;}
.x26{left:144.722525px;}
.x8{left:146.701518px;}
.x49{left:164.522298px;}
.x9{left:176.041877px;}
.x2b{left:180.725525px;}
.x42{left:183.060430px;}
.x4c{left:184.498951px;}
.x44{left:185.937599px;}
.x3{left:187.916523px;}
.x13{left:189.898461px;}
.x2c{left:192.602726px;}
.x14{left:195.296907px;}
.x3a{left:197.642487px;}
.x1a{left:201.599105px;}
.x31{left:202.680362px;}
.xf{left:205.198232px;}
.x1f{left:206.459638px;}
.x2e{left:208.798919px;}
.x1c{left:210.963694px;}
.x30{left:212.398073px;}
.x20{left:214.919298px;}
.x2f{left:216.541093px;}
.x46{left:217.978892px;}
.x54{left:220.139652px;}
.x53{left:223.559983px;}
.x1e{left:231.297050px;}
.x3b{left:234.359195px;}
.x43{left:235.617967px;}
.x38{left:242.279609px;}
.x3d{left:244.617304px;}
.x45{left:246.055900px;}
.x55{left:247.675713px;}
.x1d{left:254.879897px;}
.x21{left:267.123774px;}
.x1b{left:269.098156px;}
.x5{left:278.997470px;}
.x6{left:300.962434px;}
.x2{left:318.775384px;}
.xa{left:320.041226px;}
.x4{left:323.459720px;}
.x33{left:325.619458px;}
.x3f{left:331.921659px;}
.x32{left:333.721557px;}
.x3e{left:340.381547px;}
.x24{left:346.681632px;}
.x10{left:351.898642px;}
.x23{left:353.701637px;}
.x4b{left:368.997901px;}
.x4a{left:374.574508px;}
.x28{left:376.383526px;}
.x34{left:381.423708px;}
.x7{left:383.221332px;}
.x35{left:384.838858px;}
.x29{left:386.821087px;}
.x40{left:390.062160px;}
.x2d{left:391.683934px;}
.x17{left:394.203824px;}
.x36{left:395.636440px;}
.x3c{left:400.499861px;}
.x18{left:403.198211px;}
.x39{left:404.815627px;}
.x22{left:407.338906px;}
.x4d{left:416.337088px;}
.x48{left:434.339184px;}
.x47{left:449.456258px;}
.x25{left:489.956550px;}
.x4f{left:553.498919px;}
.x4e{left:556.369819px;}
.xb{left:563.220529px;}
.xc{left:568.079367px;}
.x11{left:570.058853px;}
.x50{left:605.877686px;}
.x16{left:617.036094px;}
.x41{left:626.577945px;}
.x2a{left:676.625965px;}
.x15{left:678.595599px;}
.x19{left:682.557305px;}
.x52{left:688.137833px;}
.x51{left:689.211836px;}
.x37{left:698.752639px;}
.xe{left:704.880420px;}
.xd{left:719.285548px;}
.x1{left:723.411558px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.017458pt;}
.v4{vertical-align:27.513267pt;}
.v2{vertical-align:28.793016pt;}
.v5{vertical-align:33.894290pt;}
.v3{vertical-align:57.601504pt;}
.v6{vertical-align:67.184208pt;}
.v7{vertical-align:68.478280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.060159pt;}
.ls3{letter-spacing:0.300797pt;}
.ls2{letter-spacing:22.471358pt;}
.ws1{word-spacing:-49.920081pt;}
.ws3{word-spacing:-22.316825pt;}
.ws19{word-spacing:-19.371335pt;}
.ws5{word-spacing:-19.130697pt;}
.ws4{word-spacing:-19.070538pt;}
.wse{word-spacing:-14.879948pt;}
.wsa{word-spacing:-14.560133pt;}
.ws0{word-spacing:-12.480020pt;}
.ws17{word-spacing:-3.293463pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:15.612574pt;}
.ws14{word-spacing:113.072963pt;}
.wsb{word-spacing:116.698787pt;}
.wsf{word-spacing:123.942272pt;}
.ws7{word-spacing:126.577716pt;}
.ws15{word-spacing:140.883352pt;}
.ws16{word-spacing:141.478550pt;}
.wsc{word-spacing:142.514580pt;}
.wsd{word-spacing:143.096985pt;}
.ws8{word-spacing:150.109683pt;}
.ws11{word-spacing:151.596915pt;}
.ws10{word-spacing:152.192113pt;}
.ws13{word-spacing:152.787311pt;}
.ws12{word-spacing:309.622741pt;}
.ws9{word-spacing:350.797959pt;}
.ws18{word-spacing:2013.088633pt;}
._19{margin-left:-5.402788pt;}
._f{margin-left:-3.801604pt;}
._6{margin-left:-2.286084pt;}
._1{margin-left:-0.962551pt;}
._0{width:0.902391pt;}
._9{width:2.380844pt;}
._a{width:3.694086pt;}
._13{width:4.995837pt;}
._5{width:6.685461pt;}
._3{width:8.282903pt;}
._18{width:9.366159pt;}
._8{width:10.283537pt;}
._7{width:11.331858pt;}
._b{width:13.023993pt;}
._10{width:14.140198pt;}
._12{width:15.440659pt;}
._11{width:16.473619pt;}
._1b{width:17.446233pt;}
._c{width:18.585621pt;}
._d{width:19.983382pt;}
._4{width:21.024014pt;}
._1a{width:22.499625pt;}
._14{width:23.409936pt;}
._17{width:24.726003pt;}
._21{width:26.235316pt;}
._3f{width:27.185905pt;}
._1d{width:29.778916pt;}
._2{width:31.251660pt;}
._e{width:32.665637pt;}
._15{width:34.073639pt;}
._16{width:35.411240pt;}
._1c{width:39.744474pt;}
._41{width:42.984419pt;}
._40{width:51.271957pt;}
._2d{width:59.975282pt;}
._2c{width:61.502001pt;}
._20{width:65.874571pt;}
._34{width:68.804882pt;}
._44{width:69.784933pt;}
._3c{width:71.117466pt;}
._23{width:78.770058pt;}
._3b{width:97.900467pt;}
._2b{width:100.173714pt;}
._42{width:101.368632pt;}
._33{width:109.209227pt;}
._22{width:114.316985pt;}
._27{width:123.382953pt;}
._24{width:128.936004pt;}
._3e{width:156.676190pt;}
._32{width:158.239523pt;}
._3a{width:166.476864pt;}
._36{width:167.667259pt;}
._3d{width:170.931254pt;}
._2e{width:172.799656pt;}
._25{width:174.570523pt;}
._2a{width:175.787913pt;}
._35{width:181.454777pt;}
._38{width:182.547208pt;}
._2f{width:185.612573pt;}
._26{width:186.647352pt;}
._31{width:195.831602pt;}
._39{width:196.831959pt;}
._37{width:243.719131pt;}
._30{width:265.365943pt;}
._29{width:267.646348pt;}
._1e{width:278.718617pt;}
._1f{width:297.789155pt;}
._43{width:299.939349pt;}
._28{width:322.374370pt;}
.fs3{font-size:40.320368pt;}
.fs4{font-size:49.920081pt;}
.fs0{font-size:55.679384pt;}
.fs6{font-size:58.240531pt;}
.fs8{font-size:59.519794pt;}
.fs1{font-size:60.159425pt;}
.fs7{font-size:69.760449pt;}
.fs2{font-size:70.400080pt;}
.fs9{font-size:71.680654pt;}
.fs5{font-size:79.999793pt;}
.fsa{font-size:90.240449pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:2.715487pt;}
.y16{bottom:2.719281pt;}
.y10{bottom:2.719318pt;}
.y1b{bottom:2.719355pt;}
.y24{bottom:2.723149pt;}
.y19{bottom:2.726943pt;}
.y1e{bottom:2.727017pt;}
.y1a7{bottom:7.196797pt;}
.y1b8{bottom:7.196809pt;}
.y193{bottom:7.201414pt;}
.y19d{bottom:7.204148pt;}
.y1{bottom:45.451743pt;}
.ya4{bottom:100.008935pt;}
.y130{bottom:102.244723pt;}
.y17b{bottom:109.927475pt;}
.y1ad{bottom:110.253333pt;}
.y151{bottom:110.891333pt;}
.y5e{bottom:114.246459pt;}
.y18f{bottom:115.210317pt;}
.y131{bottom:119.200747pt;}
.y12f{bottom:119.523228pt;}
.y79{bottom:124.968214pt;}
.ya3{bottom:125.128857pt;}
.yb4{bottom:129.769216pt;}
.yf0{bottom:134.234461pt;}
.y17a{bottom:134.891415pt;}
.y1ac{bottom:135.052058pt;}
.y1c2{bottom:135.203468pt;}
.y150{bottom:135.850701pt;}
.y12e{bottom:136.638187pt;}
.y5d{bottom:139.205827pt;}
.y18e{bottom:140.169685pt;}
.yca{bottom:144.160237pt;}
.y78{bottom:149.927582pt;}
.ya2{bottom:150.092797pt;}
.yef{bottom:151.030513pt;}
.y10f{bottom:151.042292pt;}
.yb3{bottom:154.733067pt;}
.y12c{bottom:157.440578pt;}
.ycb{bottom:158.236808pt;}
.yc9{bottom:158.560539pt;}
.y179{bottom:159.690051pt;}
.y1ab{bottom:160.006765pt;}
.y14f{bottom:160.805408pt;}
.y5c{bottom:164.169767pt;}
.y18d{bottom:165.128964pt;}
.yee{bottom:167.830991pt;}
.y110{bottom:167.843992pt;}
.y10e{bottom:168.166385pt;}
.yc8{bottom:172.960841pt;}
.y12d{bottom:174.237667pt;}
.y12b{bottom:174.564672pt;}
.y77{bottom:174.891522pt;}
.yf1{bottom:175.829111pt;}
.yb2{bottom:179.531792pt;}
.yed{bottom:184.475950pt;}
.y178{bottom:184.649419pt;}
.y9c{bottom:184.810062pt;}
.y10d{bottom:185.444890pt;}
.y1aa{bottom:185.604133pt;}
.y14e{bottom:185.764776pt;}
.y8e{bottom:189.606403pt;}
.y18c{bottom:189.932261pt;}
.y42{bottom:191.038056pt;}
.yc7{bottom:191.040310pt;}
.y12a{bottom:191.684242pt;}
.y5b{bottom:199.203657pt;}
.y76{bottom:199.850801pt;}
.y2a{bottom:200.154245pt;}
.yec{bottom:201.276428pt;}
.yb1{bottom:204.486499pt;}
.yc6{bottom:205.440611pt;}
.y10c{bottom:206.083735pt;}
.y177{bottom:209.613359pt;}
.y159{bottom:209.764769pt;}
.y1b6{bottom:210.567984pt;}
.y14d{bottom:210.728627pt;}
.y129{bottom:212.486545pt;}
.y8d{bottom:214.570343pt;}
.y18b{bottom:214.891629pt;}
.yeb{bottom:217.912535pt;}
.y198{bottom:217.925469pt;}
.y41{bottom:220.315901pt;}
.y10b{bottom:223.362240pt;}
.yc5{bottom:223.676143pt;}
.y75{bottom:224.649526pt;}
.y15f{bottom:224.805597pt;}
.y128{bottom:229.601592pt;}
.yb0{bottom:229.606510pt;}
.y5a{bottom:234.411995pt;}
.y9b{bottom:234.728709pt;}
.y1b5{bottom:235.527352pt;}
.y29{bottom:237.596576pt;}
.yc4{bottom:238.076520pt;}
.yea{bottom:238.392183pt;}
.y8c{bottom:239.690265pt;}
.y18a{bottom:239.846336pt;}
.y197{bottom:242.884837pt;}
.y10a{bottom:244.005608pt;}
.y14c{bottom:245.611107pt;}
.y40{bottom:249.443418pt;}
.y74{bottom:249.764876pt;}
.ya1{bottom:249.930180pt;}
.y126{bottom:250.403895pt;}
.y28{bottom:251.520878pt;}
.yaf{bottom:254.570450pt;}
.ye9{bottom:255.028290pt;}
.yc3{bottom:256.155914pt;}
.y176{bottom:259.688077pt;}
.y9a{bottom:259.848720pt;}
.y1b4{bottom:260.326077pt;}
.y1c1{bottom:260.486720pt;}
.y109{bottom:261.279590pt;}
.y8b{bottom:264.645061pt;}
.y189{bottom:264.966347pt;}
.y127{bottom:267.201072pt;}
.y125{bottom:267.523465pt;}
.y196{bottom:267.848688pt;}
.y27{bottom:267.996866pt;}
.y59{bottom:269.285331pt;}
.yc2{bottom:270.556216pt;}
.y14b{bottom:270.565903pt;}
.y73{bottom:274.728816pt;}
.ye8{bottom:275.996712pt;}
.y3f{bottom:278.404348pt;}
.y107{bottom:281.922958pt;}
.y175{bottom:284.486713pt;}
.y26{bottom:284.640448pt;}
.y124{bottom:284.801970pt;}
.y99{bottom:284.812660pt;}
.y1b3{bottom:286.088571pt;}
.y25{bottom:287.355935pt;}
.yc1{bottom:288.635685pt;}
.yae{bottom:289.443697pt;}
.y8a{bottom:289.604340pt;}
.y188{bottom:289.769644pt;}
.ye7{bottom:292.792764pt;}
.y195{bottom:293.446056pt;}
.y58{bottom:294.249271pt;}
.y14a{bottom:295.525182pt;}
.y106{bottom:299.201463pt;}
.y72{bottom:299.688184pt;}
.y23{bottom:301.116437pt;}
.yc0{bottom:303.035986pt;}
.y22{bottom:303.839586pt;}
.y122{bottom:305.599750pt;}
.y108{bottom:307.361693pt;}
.y3e{bottom:307.682245pt;}
.y174{bottom:309.450653pt;}
.y98{bottom:309.611296pt;}
.y15e{bottom:309.762795pt;}
.y1a9{bottom:311.047939pt;}
.ye5{bottom:313.752247pt;}
.y89{bottom:314.407637pt;}
.y187{bottom:314.728923pt;}
.y105{bottom:316.325601pt;}
.y21{bottom:317.916157pt;}
.y194{bottom:319.047952pt;}
.y57{bottom:319.208595pt;}
.y20{bottom:320.643099pt;}
.y149{bottom:320.649765pt;}
.ybf{bottom:321.755255pt;}
.y121{bottom:322.719320pt;}
.yad{bottom:324.486865pt;}
.ye6{bottom:330.077316pt;}
.ye4{bottom:330.397206pt;}
.y123{bottom:330.884029pt;}
.y104{bottom:333.445171pt;}
.y1f{bottom:334.399807pt;}
.y173{bottom:334.410021pt;}
.y71{bottom:334.566047pt;}
.ya0{bottom:334.726690pt;}
.y1c0{bottom:336.002646pt;}
.ybe{bottom:336.155557pt;}
.y1a8{bottom:336.163289pt;}
.y3d{bottom:336.643227pt;}
.y192{bottom:336.966504pt;}
.y88{bottom:339.367005pt;}
.y186{bottom:339.688291pt;}
.y120{bottom:339.843413pt;}
.y56{bottom:344.167918pt;}
.y148{bottom:345.609133pt;}
.ye3{bottom:347.197727pt;}
.yac{bottom:349.450760pt;}
.y1d{bottom:351.035727pt;}
.y1c{bottom:353.762745pt;}
.y1a6{bottom:353.930432pt;}
.y102{bottom:354.242951pt;}
.ybd{bottom:354.402545pt;}
.y11f{bottom:356.962983pt;}
.y172{bottom:359.364728pt;}
.y70{bottom:359.525371pt;}
.y1bf{bottom:360.966586pt;}
.y87{bottom:364.491543pt;}
.y185{bottom:364.642998pt;}
.ye1{bottom:367.352973pt;}
.y1a{bottom:367.519378pt;}
.ybc{bottom:368.799053pt;}
.y55{bottom:369.122670pt;}
.y15d{bottom:369.609170pt;}
.y147{bottom:370.407814pt;}
.y103{bottom:371.044651pt;}
.y101{bottom:371.362521pt;}
.yab{bottom:374.566154pt;}
.y3c{bottom:375.674969pt;}
.y11e{bottom:377.601828pt;}
.ye2{bottom:384.149025pt;}
.y18{bottom:384.155373pt;}
.ye0{bottom:384.313439pt;}
.y171{bottom:384.324096pt;}
.y6f{bottom:384.649954pt;}
.y1be{bottom:385.925909pt;}
.ybb{bottom:386.398578pt;}
.y1b2{bottom:386.724553pt;}
.y17{bottom:386.882315pt;}
.y100{bottom:388.641026pt;}
.y184{bottom:389.606938pt;}
.y54{bottom:394.086565pt;}
.y11d{bottom:394.721398pt;}
.yaa{bottom:399.364835pt;}
.y86{bottom:399.525478pt;}
.y15{bottom:400.798955pt;}
.ydf{bottom:400.949546pt;}
.y14{bottom:403.518235pt;}
.y15c{bottom:404.643105pt;}
.y3b{bottom:404.963619pt;}
.y132{bottom:405.283791pt;}
.y146{bottom:405.285677pt;}
.yff{bottom:409.120936pt;}
.y170{bottom:409.287991pt;}
.ycc{bottom:409.596821pt;}
.y6e{bottom:409.609277pt;}
.y1bd{bottom:411.527805pt;}
.y183{bottom:414.566261pt;}
.y12{bottom:417.442537pt;}
.y53{bottom:419.045933pt;}
.y97{bottom:419.523245pt;}
.y11{bottom:420.158024pt;}
.yde{bottom:421.597991pt;}
.ya9{bottom:424.324203pt;}
.ycd{bottom:425.276797pt;}
.yfe{bottom:426.240506pt;}
.y15b{bottom:429.607045pt;}
.y145{bottom:430.245045pt;}
.yf{bottom:433.918525pt;}
.y3a{bottom:434.080331pt;}
.y85{bottom:434.407958pt;}
.y1a5{bottom:436.487173pt;}
.ye{bottom:436.637843pt;}
.y111{bottom:436.802854pt;}
.ydd{bottom:438.394043pt;}
.y182{bottom:439.525585pt;}
.y191{bottom:439.690845pt;}
.yce{bottom:440.796842pt;}
.y133{bottom:441.280307pt;}
.y16f{bottom:444.321926pt;}
.y6d{bottom:444.482569pt;}
.yf2{bottom:448.631654pt;}
.ya8{bottom:449.288098pt;}
.y52{bottom:454.084439pt;}
.y15a{bottom:454.566368pt;}
.y144{bottom:455.369583pt;}
.y112{bottom:455.679800pt;}
.ycf{bottom:456.476856pt;}
.yd{bottom:458.080261pt;}
.y84{bottom:459.362709pt;}
.y1a4{bottom:461.446497pt;}
.y39{bottom:463.202446pt;}
.y181{bottom:464.489525pt;}
.y190{bottom:464.640979pt;}
.y9f{bottom:469.446509pt;}
.yf3{bottom:470.075485pt;}
.yd0{bottom:471.996901pt;}
.ya7{bottom:474.247422pt;}
.y113{bottom:474.724772pt;}
.y134{bottom:477.440281pt;}
.y16e{bottom:479.204406pt;}
.y6c{bottom:479.530309pt;}
.y143{bottom:480.328907pt;}
.y83{bottom:484.322033pt;}
.y1b1{bottom:487.048392pt;}
.yd1{bottom:487.676914pt;}
.y51{bottom:488.966919pt;}
.y180{bottom:489.444277pt;}
.yf4{bottom:491.519359pt;}
.y38{bottom:492.319158pt;}
.y114{bottom:493.597150pt;}
.y158{bottom:494.245189pt;}
.yc{bottom:495.998361pt;}
.yd2{bottom:503.196959pt;}
.y16d{bottom:504.168346pt;}
.y6b{bottom:504.480443pt;}
.y142{bottom:505.283658pt;}
.ya6{bottom:509.125330pt;}
.y82{bottom:509.285973pt;}
.y1b0{bottom:512.003144pt;}
.y115{bottom:512.642122pt;}
.yf5{bottom:512.954295pt;}
.y135{bottom:513.600255pt;}
.y50{bottom:513.926243pt;}
.y17f{bottom:514.242957pt;}
.y96{bottom:514.403600pt;}
.yd3{bottom:518.876936pt;}
.y157{bottom:519.204513pt;}
.y9e{bottom:519.369773pt;}
.y37{bottom:521.442322pt;}
.y16c{bottom:529.283741pt;}
.y6a{bottom:529.444384pt;}
.y141{bottom:530.242982pt;}
.y116{bottom:531.523591pt;}
.y81{bottom:534.245296pt;}
.yd4{bottom:534.556949pt;}
.yf6{bottom:534.558115pt;}
.y1a3{bottom:536.962467pt;}
.y17e{bottom:539.362923pt;}
.y95{bottom:539.528183pt;}
.ya5{bottom:544.319907pt;}
.y4f{bottom:548.964794pt;}
.y136{bottom:549.760229pt;}
.yd5{bottom:550.076994pt;}
.y36{bottom:550.557985pt;}
.y117{bottom:550.559472pt;}
.y16b{bottom:554.243064pt;}
.y69{bottom:554.403707pt;}
.yf7{bottom:555.993093pt;}
.yb{bottom:557.439011pt;}
.y1a2{bottom:561.926407pt;}
.y17d{bottom:564.326864pt;}
.y94{bottom:564.487507pt;}
.y140{bottom:565.125462pt;}
.yd6{bottom:565.757008pt;}
.y80{bottom:569.283848pt;}
.y118{bottom:569.445464pt;}
.y4e{bottom:573.924117pt;}
.yf8{bottom:577.436925pt;}
.y16a{bottom:579.202387pt;}
.y68{bottom:579.367647pt;}
.y35{bottom:579.682250pt;}
.y137{bottom:585.924771pt;}
.y1a1{bottom:586.885731pt;}
.yd7{bottom:587.363043pt;}
.y119{bottom:588.481345pt;}
.y17c{bottom:589.286187pt;}
.y93{bottom:589.442258pt;}
.y13f{bottom:590.240856pt;}
.y156{bottom:594.243171pt;}
.yf9{bottom:598.876330pt;}
.y67{bottom:604.326971pt;}
.y11a{bottom:607.363745pt;}
.y4d{bottom:608.806597pt;}
.y1af{bottom:612.485788pt;}
.y92{bottom:614.240939pt;}
.y13e{bottom:615.202959pt;}
.y34{bottom:618.560438pt;}
.y155{bottom:619.043689pt;}
.yfa{bottom:620.319293pt;}
.y169{bottom:621.606626pt;}
.y138{bottom:622.083858pt;}
.y11b{bottom:626.399582pt;}
.y66{bottom:629.280781pt;}
.y1bc{bottom:637.446949pt;}
.y91{bottom:639.202100pt;}
.y13d{bottom:640.002581pt;}
.yfb{bottom:641.754272pt;}
.y4c{bottom:643.843311pt;}
.ya{bottom:644.000901pt;}
.y154{bottom:644.004850pt;}
.y168{bottom:646.560481pt;}
.y33{bottom:648.002642pt;}
.y139{bottom:648.640167pt;}
.y11c{bottom:648.955026pt;}
.y65{bottom:654.080403pt;}
.yba{bottom:658.883153pt;}
.y1a0{bottom:662.246571pt;}
.yfc{bottom:663.359827pt;}
.y90{bottom:664.163261pt;}
.y13c{bottom:664.963742pt;}
.y153{bottom:668.966011pt;}
.y167{bottom:671.521643pt;}
.y32{bottom:676.963624pt;}
.y4b{bottom:678.879979pt;}
.y64{bottom:679.041564pt;}
.yfd{bottom:684.639714pt;}
.y19f{bottom:687.200381pt;}
.y1ae{bottom:687.846629pt;}
.y9d{bottom:689.124444pt;}
.yb9{bottom:693.919867pt;}
.y152{bottom:694.081428pt;}
.y166{bottom:696.482804pt;}
.y13b{bottom:701.924473pt;}
.y4a{bottom:704.002725pt;}
.y63{bottom:704.164287pt;}
.y31{bottom:706.079287pt;}
.y9{bottom:711.194900pt;}
.y13a{bottom:711.845770pt;}
.y1bb{bottom:712.161565pt;}
.y7f{bottom:714.085606pt;}
.y8f{bottom:714.239817pt;}
.yb8{bottom:718.881028pt;}
.y165{bottom:721.443965pt;}
.y8{bottom:727.677174pt;}
.y49{bottom:728.963908pt;}
.y62{bottom:729.125470pt;}
.y30{bottom:735.203526pt;}
.y19e{bottom:737.761623pt;}
.y7e{bottom:739.039438pt;}
.yb7{bottom:743.842189pt;}
.y164{bottom:746.405148pt;}
.ydc{bottom:749.761193pt;}
.y48{bottom:753.925070pt;}
.y19c{bottom:755.680197pt;}
.y7{bottom:762.079682pt;}
.y7d{bottom:764.000599pt;}
.y2f{bottom:764.319189pt;}
.yb6{bottom:768.803372pt;}
.y163{bottom:771.366310pt;}
.y47{bottom:778.886231pt;}
.y1ba{bottom:787.683967pt;}
.y7c{bottom:788.961761pt;}
.y6{bottom:790.878779pt;}
.y2e{bottom:793.443454pt;}
.yb5{bottom:793.764534pt;}
.y162{bottom:796.165909pt;}
.y46{bottom:803.685852pt;}
.y61{bottom:803.840063pt;}
.y1b9{bottom:812.645129pt;}
.y7b{bottom:813.922922pt;}
.y161{bottom:821.281303pt;}
.ydb{bottom:822.081329pt;}
.y2d{bottom:822.559091pt;}
.y5{bottom:825.442587pt;}
.y45{bottom:828.801225pt;}
.y60{bottom:828.962786pt;}
.y1c3{bottom:837.598961pt;}
.y19b{bottom:838.245209pt;}
.y7a{bottom:838.884105pt;}
.yda{bottom:845.924515pt;}
.y160{bottom:846.242465pt;}
.y2c{bottom:851.683356pt;}
.y44{bottom:853.762386pt;}
.y4{bottom:860.643433pt;}
.y19a{bottom:863.199019pt;}
.y5f{bottom:863.845266pt;}
.yd9{bottom:869.760877pt;}
.y1b7{bottom:880.963383pt;}
.y2b{bottom:885.757609pt;}
.y199{bottom:888.160191pt;}
.y43{bottom:888.799099pt;}
.y3{bottom:890.080269pt;}
.yd8{bottom:893.598069pt;}
.y2{bottom:947.680720pt;}
.ha{height:13.916565pt;}
.h9{height:13.916602pt;}
.he{height:13.916639pt;}
.hc{height:13.920433pt;}
.hb{height:13.924227pt;}
.hd{height:13.924301pt;}
.h27{height:24.798680pt;}
.h25{height:24.798725pt;}
.h26{height:24.799622pt;}
.h28{height:24.961172pt;}
.h6{height:28.015568pt;}
.h8{height:33.808180pt;}
.h5{height:34.685681pt;}
.h7{height:34.693150pt;}
.h1{height:37.980518pt;}
.h1a{height:38.687385pt;}
.h1b{height:40.466932pt;}
.h18{height:40.772110pt;}
.h1f{height:41.355794pt;}
.h2{height:41.800226pt;}
.h10{height:43.210212pt;}
.h11{height:44.238327pt;}
.h1e{height:47.279054pt;}
.h3{height:47.712555pt;}
.h23{height:48.580443pt;}
.h4{height:51.033026pt;}
.hf{height:51.768809pt;}
.h12{height:52.009819pt;}
.h19{height:55.585794pt;}
.h24{height:61.159054pt;}
.h14{height:62.198948pt;}
.h15{height:62.214123pt;}
.h17{height:62.214421pt;}
.h16{height:63.509047pt;}
.h1d{height:73.738972pt;}
.h22{height:74.632100pt;}
.h21{height:74.632455pt;}
.h13{height:92.287186pt;}
.h1c{height:107.651140pt;}
.h20{height:109.834074pt;}
.h0{height:1056.000000pt;}
.w11{width:8.004607pt;}
.wa{width:25.284285pt;}
.we{width:29.126853pt;}
.w1{width:29.596616pt;}
.w4{width:32.951977pt;}
.wd{width:36.635793pt;}
.w6{width:45.756535pt;}
.wf{width:54.715033pt;}
.wc{width:57.596477pt;}
.w10{width:57.601990pt;}
.wb{width:69.757609pt;}
.w13{width:124.475376pt;}
.w9{width:165.597928pt;}
.w3{width:167.357471pt;}
.w2{width:171.676439pt;}
.w12{width:183.195435pt;}
.w8{width:359.518116pt;}
.w7{width:489.918480pt;}
.w5{width:541.916535pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x27{left:96.800024pt;}
.x12{left:123.681392pt;}
.x26{left:128.642245pt;}
.x8{left:130.401350pt;}
.x49{left:146.242043pt;}
.x9{left:156.481668pt;}
.x2b{left:160.644911pt;}
.x42{left:162.720382pt;}
.x4c{left:163.999067pt;}
.x44{left:165.277866pt;}
.x3{left:167.036909pt;}
.x13{left:168.798632pt;}
.x2c{left:171.202423pt;}
.x14{left:173.597251pt;}
.x3a{left:175.682210pt;}
.x1a{left:179.199205pt;}
.x31{left:180.160322pt;}
.xf{left:182.398429pt;}
.x1f{left:183.519678pt;}
.x2e{left:185.599039pt;}
.x1c{left:187.523283pt;}
.x30{left:188.798287pt;}
.x20{left:191.039376pt;}
.x2f{left:192.480972pt;}
.x46{left:193.759015pt;}
.x54{left:195.679691pt;}
.x53{left:198.719985pt;}
.x1e{left:205.597378pt;}
.x3b{left:208.319284pt;}
.x43{left:209.438193pt;}
.x38{left:215.359652pt;}
.x3d{left:217.437603pt;}
.x45{left:218.716356pt;}
.x55{left:220.156189pt;}
.x1d{left:226.559908pt;}
.x21{left:237.443355pt;}
.x1b{left:239.198361pt;}
.x5{left:247.997751pt;}
.x6{left:267.522164pt;}
.x2{left:283.355897pt;}
.xa{left:284.481090pt;}
.x4{left:287.519751pt;}
.x33{left:289.439518pt;}
.x3f{left:295.041475pt;}
.x32{left:296.641384pt;}
.x3e{left:302.561375pt;}
.x24{left:308.161451pt;}
.x10{left:312.798793pt;}
.x23{left:314.401455pt;}
.x4b{left:327.998134pt;}
.x4a{left:332.955118pt;}
.x28{left:334.563134pt;}
.x34{left:339.043296pt;}
.x7{left:340.641184pt;}
.x35{left:342.078985pt;}
.x29{left:343.840967pt;}
.x40{left:346.721920pt;}
.x2d{left:348.163497pt;}
.x17{left:350.403399pt;}
.x36{left:351.676836pt;}
.x3c{left:355.999877pt;}
.x18{left:358.398410pt;}
.x39{left:359.836113pt;}
.x22{left:362.079027pt;}
.x4d{left:370.077412pt;}
.x48{left:386.079274pt;}
.x47{left:399.516674pt;}
.x25{left:435.516933pt;}
.x4f{left:491.999039pt;}
.x4e{left:494.550950pt;}
.xb{left:500.640470pt;}
.xc{left:504.959437pt;}
.x11{left:506.718981pt;}
.x50{left:538.557943pt;}
.x16{left:548.476528pt;}
.x41{left:556.958173pt;}
.x2a{left:601.445302pt;}
.x15{left:603.196088pt;}
.x19{left:606.717605pt;}
.x52{left:611.678074pt;}
.x51{left:612.632744pt;}
.x37{left:621.113457pt;}
.xe{left:626.560373pt;}
.xd{left:639.364931pt;}
.x1{left:643.032496pt;}
}




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