
    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_f4de928aee57a528191adb39.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922363;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_bc08819342bd57d107e2c71d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e9ad2ffe82d1926c20436a11.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0d670233ab624880bcb3a787.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_475d83e5eca89dab253f87a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4f9d7adf04b82fca5a8347f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.833984;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_e20639865e5135ce6473c493.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.903320;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_e7ea091cccbb356bb7a514e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls30{letter-spacing:-0.914400px;}
.ls2e{letter-spacing:-0.907200px;}
.ls2d{letter-spacing:-0.900000px;}
.ls2f{letter-spacing:-0.885600px;}
.ls1e{letter-spacing:-0.021600px;}
.ls15{letter-spacing:-0.014400px;}
.ls27{letter-spacing:-0.010748px;}
.ls28{letter-spacing:-0.005374px;}
.ls7{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.010748px;}
.ls0{letter-spacing:0.014400px;}
.ls23{letter-spacing:0.016122px;}
.ls2{letter-spacing:0.061080px;}
.lsc{letter-spacing:0.200736px;}
.ls3{letter-spacing:0.224040px;}
.ls6{letter-spacing:0.224100px;}
.ls12{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.242064px;}
.ls1c{letter-spacing:0.253872px;}
.ls19{letter-spacing:0.258000px;}
.ls9{letter-spacing:0.289296px;}
.ls2b{letter-spacing:0.318816px;}
.ls14{letter-spacing:0.320280px;}
.ls2a{letter-spacing:0.383760px;}
.ls1d{letter-spacing:0.414000px;}
.lsd{letter-spacing:0.419184px;}
.lsb{letter-spacing:0.454608px;}
.ls13{letter-spacing:0.478224px;}
.lsf{letter-spacing:0.484128px;}
.ls8{letter-spacing:0.490032px;}
.ls4{letter-spacing:0.513648px;}
.lse{letter-spacing:0.537264px;}
.ls2c{letter-spacing:0.543168px;}
.lsa{letter-spacing:0.554976px;}
.ls16{letter-spacing:0.578592px;}
.ls10{letter-spacing:0.602208px;}
.ls17{letter-spacing:0.637632px;}
.ls1b{letter-spacing:0.702576px;}
.ls1a{letter-spacing:0.720660px;}
.ls1f{letter-spacing:0.861984px;}
.ls20{letter-spacing:1.301400px;}
.ls1{letter-spacing:1.319400px;}
.ls26{letter-spacing:1.608600px;}
.ls5{letter-spacing:6.859380px;}
.ls25{letter-spacing:8.980860px;}
.ls24{letter-spacing:15.661800px;}
.ls21{letter-spacing:56.484000px;}
.ls11{letter-spacing:72.013200px;}
.ls22{letter-spacing:72.684000px;}
.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;}
}
.ws13{word-spacing:-18.014400px;}
.wsf{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.985600px;}
.ws12{word-spacing:-15.397632px;}
.ws28{word-spacing:-15.303168px;}
.ws11{word-spacing:-15.238224px;}
.ws27{word-spacing:-15.013872px;}
.ws4{word-spacing:-0.614016px;}
.ws9{word-spacing:-0.596304px;}
.ws5{word-spacing:-0.572688px;}
.ws2{word-spacing:-0.549072px;}
.wsd{word-spacing:-0.543168px;}
.ws6{word-spacing:-0.513648px;}
.ws8{word-spacing:-0.478224px;}
.ws3{word-spacing:-0.348336px;}
.ws7{word-spacing:-0.259776px;}
.ws1{word-spacing:-0.086400px;}
.ws0{word-spacing:-0.072000px;}
.ws18{word-spacing:-0.069861px;}
.ws29{word-spacing:-0.059040px;}
.ws14{word-spacing:-0.050400px;}
.wse{word-spacing:0.000000px;}
.wsa{word-spacing:11.436048px;}
.wsb{word-spacing:11.441952px;}
.wsc{word-spacing:11.737152px;}
.ws24{word-spacing:29.477241px;}
.ws26{word-spacing:30.928192px;}
.ws16{word-spacing:56.712720px;}
.ws17{word-spacing:57.128431px;}
.ws21{word-spacing:83.947000px;}
.ws1a{word-spacing:83.947600px;}
.ws20{word-spacing:218.799953px;}
.ws1b{word-spacing:227.240872px;}
.ws1f{word-spacing:276.866902px;}
.ws22{word-spacing:277.232041px;}
.ws15{word-spacing:290.100454px;}
.ws1d{word-spacing:304.101182px;}
.ws19{word-spacing:470.856937px;}
.ws1e{word-spacing:518.060910px;}
.ws1c{word-spacing:573.078807px;}
.ws23{word-spacing:598.481189px;}
.ws25{word-spacing:607.196169px;}
._8{margin-left:-7.992000px;}
._2a{margin-left:-5.416800px;}
._b{margin-left:-4.406400px;}
._11{margin-left:-3.061800px;}
._4{margin-left:-2.001600px;}
._7{margin-left:-1.000200px;}
._0{width:1.562400px;}
._3{width:2.800800px;}
._6{width:3.873600px;}
._10{width:4.960800px;}
._a{width:6.328800px;}
._d{width:7.441200px;}
._1{width:9.226800px;}
._5{width:10.303200px;}
._14{width:11.365800px;}
._2{width:12.816000px;}
._15{width:14.564400px;}
._9{width:15.613200px;}
._16{width:16.687800px;}
._c{width:19.152000px;}
._f{width:20.440200px;}
._17{width:22.349400px;}
._19{width:23.961600px;}
._1a{width:24.969600px;}
._1b{width:26.316000px;}
._1e{width:27.914400px;}
._e{width:29.095200px;}
._1d{width:30.463200px;}
._18{width:31.927200px;}
._20{width:36.741600px;}
._29{width:38.685600px;}
._1c{width:46.837800px;}
._2c{width:47.859000px;}
._1f{width:53.892000px;}
._23{width:57.088008px;}
._2b{width:65.116800px;}
._12{width:77.342400px;}
._13{width:78.537600px;}
._21{width:83.624252px;}
._27{width:110.270402px;}
._22{width:168.711462px;}
._28{width:208.948534px;}
._24{width:244.475752px;}
._26{width:275.974266px;}
._25{width:303.166439px;}
.fc5{color:rgb(83,141,213);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:53.738910px;}
.fs3{font-size:59.040000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf9{bottom:6.157633px;}
.y1{bottom:18.750000px;}
.yf8{bottom:22.951033px;}
.y3{bottom:37.860030px;}
.y2{bottom:58.740030px;}
.yf7{bottom:73.331233px;}
.y30{bottom:79.260030px;}
.y171{bottom:80.340030px;}
.y90{bottom:85.020030px;}
.yd5{bottom:86.100030px;}
.y99{bottom:87.540030px;}
.yf6{bottom:90.124633px;}
.y84{bottom:90.420030px;}
.y125{bottom:93.660030px;}
.yb4{bottom:96.540030px;}
.y2f{bottom:96.900030px;}
.yd4{bottom:97.260030px;}
.y170{bottom:100.860030px;}
.y131{bottom:101.940030px;}
.y5e{bottom:103.380030px;}
.y8f{bottom:105.540030px;}
.yf5{bottom:106.918033px;}
.y98{bottom:108.420030px;}
.y14e{bottom:109.860030px;}
.y83{bottom:110.940030px;}
.y11c{bottom:113.820030px;}
.y5d{bottom:114.540030px;}
.yc2{bottom:117.420030px;}
.y2e{bottom:118.140030px;}
.y124{bottom:119.580030px;}
.yb3{bottom:120.660030px;}
.y16f{bottom:121.740030px;}
.y130{bottom:122.820030px;}
.yf4{bottom:123.711433px;}
.y8e{bottom:126.420030px;}
.y14d{bottom:130.740030px;}
.y11b{bottom:131.100030px;}
.yb2{bottom:131.820000px;}
.y2d{bottom:132.180000px;}
.yf1{bottom:135.060000px;}
.y97{bottom:137.940000px;}
.y82{bottom:140.820000px;}
.y12f{bottom:143.340000px;}
.y8d{bottom:146.940000px;}
.y11a{bottom:148.380000px;}
.y16e{bottom:151.260000px;}
.y2c{bottom:153.420000px;}
.y5c{bottom:155.940000px;}
.y96{bottom:158.820000px;}
.y14c{bottom:160.260000px;}
.y81{bottom:161.340000px;}
.yea{bottom:162.060000px;}
.y12e{bottom:163.860000px;}
.y119{bottom:165.660000px;}
.y2b{bottom:167.100000px;}
.y8c{bottom:167.820000px;}
.y16d{bottom:172.140000px;}
.yf3{bottom:174.091633px;}
.yf0{bottom:176.460000px;}
.y5b{bottom:176.820000px;}
.y95{bottom:179.340000px;}
.y14b{bottom:181.140000px;}
.y118{bottom:182.940000px;}
.y2a{bottom:184.740000px;}
.yc0{bottom:188.340000px;}
.y80{bottom:190.860000px;}
.ye9{bottom:191.580000px;}
.y12d{bottom:193.740000px;}
.y5a{bottom:197.340000px;}
.y94{bottom:199.860000px;}
.y117{bottom:200.220000px;}
.y16c{bottom:201.660000px;}
.y29{bottom:205.980000px;}
.yef{bottom:206.340000px;}
.ybf{bottom:208.860000px;}
.y14a{bottom:210.660000px;}
.y7f{bottom:211.740000px;}
.ye8{bottom:212.460000px;}
.y12c{bottom:214.260000px;}
.y59{bottom:217.860000px;}
.y28{bottom:220.740000px;}
.y16b{bottom:222.540000px;}
.y116{bottom:224.340000px;}
.yb1{bottom:226.860000px;}
.ybe{bottom:229.740000px;}
.y149{bottom:231.540000px;}
.y7e{bottom:232.260000px;}
.ye7{bottom:232.980000px;}
.y115{bottom:235.140000px;}
.y58{bottom:238.740000px;}
.y16a{bottom:243.060000px;}
.y12b{bottom:244.140000px;}
.yb0{bottom:247.740000px;}
.y93{bottom:250.260000px;}
.y7d{bottom:253.140000px;}
.ye6{bottom:253.860000px;}
.y57{bottom:259.260000px;}
.y27{bottom:261.060000px;}
.y12a{bottom:264.660000px;}
.yaf{bottom:268.260000px;}
.y92{bottom:271.140000px;}
.y169{bottom:272.940000px;}
.y7c{bottom:273.660000px;}
.y56{bottom:280.140000px;}
.y148{bottom:281.940000px;}
.ye5{bottom:283.380000px;}
.yae{bottom:289.140000px;}
.y26{bottom:290.940000px;}
.yd3{bottom:291.660000px;}
.y168{bottom:293.460000px;}
.y129{bottom:294.540000px;}
.y8b{bottom:300.660000px;}
.y114{bottom:301.380000px;}
.y147{bottom:302.460000px;}
.y7b{bottom:303.540000px;}
.y55{bottom:309.660000px;}
.yd2{bottom:312.540000px;}
.ye4{bottom:313.260000px;}
.y128{bottom:315.060000px;}
.y25{bottom:320.460000px;}
.y8a{bottom:321.540000px;}
.y113{bottom:322.260000px;}
.y146{bottom:323.340000px;}
.y7a{bottom:324.060000px;}
.y54{bottom:330.540000px;}
.yd1{bottom:333.060000px;}
.y127{bottom:335.940000px;}
.ye3{bottom:339.180000px;}
.ybd{bottom:342.060000px;}
.y112{bottom:342.780000px;}
.y167{bottom:343.860000px;}
.y79{bottom:344.940000px;}
.y24{bottom:350.340000px;}
.y53{bottom:351.060000px;}
.y145{bottom:352.860000px;}
.yd0{bottom:353.940000px;}
.yad{bottom:360.060000px;}
.ybc{bottom:362.940000px;}
.y111{bottom:363.660000px;}
.y78{bottom:365.460000px;}
.y52{bottom:371.940000px;}
.y166{bottom:373.740000px;}
.y23{bottom:379.860000px;}
.yac{bottom:380.940000px;}
.y144{bottom:382.740000px;}
.ybb{bottom:383.460000px;}
.y110{bottom:384.180000px;}
.y126{bottom:386.340000px;}
.y51{bottom:392.460000px;}
.y165{bottom:394.260000px;}
.y77{bottom:395.340000px;}
.yab{bottom:401.460000px;}
.y143{bottom:403.260000px;}
.yba{bottom:404.340000px;}
.y123{bottom:406.860000px;}
.y22{bottom:409.740000px;}
.y50{bottom:413.340000px;}
.y10f{bottom:414.060000px;}
.y76{bottom:415.860000px;}
.yaa{bottom:422.340000px;}
.y142{bottom:424.140000px;}
.yb9{bottom:424.860000px;}
.y122{bottom:427.740000px;}
.y21{bottom:430.260000px;}
.y4f{bottom:433.860000px;}
.y10e{bottom:434.580000px;}
.y75{bottom:436.740000px;}
.ya9{bottom:442.860000px;}
.y164{bottom:444.660000px;}
.yb8{bottom:445.740000px;}
.y20{bottom:451.140000px;}
.y141{bottom:453.660000px;}
.y89{bottom:454.740000px;}
.y10d{bottom:455.460000px;}
.y74{bottom:457.260000px;}
.y4e{bottom:463.740000px;}
.y163{bottom:465.540000px;}
.yb7{bottom:466.260000px;}
.y1f{bottom:471.660000px;}
.y140{bottom:474.540000px;}
.ycd{bottom:475.260000px;}
.y10c{bottom:475.980000px;}
.y73{bottom:478.140000px;}
.y175{bottom:483.540000px;}
.y4d{bottom:484.260000px;}
.y121{bottom:487.140000px;}
.y1e{bottom:492.540000px;}
.y162{bottom:495.060000px;}
.yb6{bottom:496.140000px;}
.y10b{bottom:496.860000px;}
.y72{bottom:498.660000px;}
.y13f{bottom:504.060000px;}
.y4c{bottom:505.140000px;}
.y120{bottom:507.660000px;}
.y1d{bottom:513.060000px;}
.ya8{bottom:514.140000px;}
.y161{bottom:515.940000px;}
.yb5{bottom:516.660000px;}
.y10a{bottom:517.380000px;}
.y71{bottom:519.540000px;}
.y13e{bottom:524.940000px;}
.y4b{bottom:525.660000px;}
.y11f{bottom:528.540000px;}
.y1c{bottom:533.940000px;}
.ya7{bottom:534.660000px;}
.y160{bottom:536.460000px;}
.y109{bottom:538.260000px;}
.y4a{bottom:546.540000px;}
.y70{bottom:549.060000px;}
.y1b{bottom:554.460000px;}
.ya6{bottom:555.540000px;}
.y15f{bottom:557.340000px;}
.y108{bottom:558.780000px;}
.y49{bottom:567.060000px;}
.y6f{bottom:569.940000px;}
.y13d{bottom:575.340000px;}
.ya5{bottom:576.060000px;}
.y1a{bottom:584.340000px;}
.y15e{bottom:586.860000px;}
.y88{bottom:587.940000px;}
.y107{bottom:588.660000px;}
.y6e{bottom:590.460000px;}
.y48{bottom:596.940000px;}
.y13c{bottom:604.860000px;}
.ya4{bottom:605.940000px;}
.y15d{bottom:607.740000px;}
.ycc{bottom:608.460000px;}
.y106{bottom:609.180000px;}
.y11e{bottom:611.340000px;}
.ye2{bottom:611.700000px;}
.y19{bottom:613.860000px;}
.y47{bottom:617.460000px;}
.y6d{bottom:620.340000px;}
.y13b{bottom:625.740000px;}
.ya3{bottom:626.460000px;}
.ycb{bottom:629.340000px;}
.y105{bottom:630.060000px;}
.y18{bottom:634.740000px;}
.y15c{bottom:637.260000px;}
.y46{bottom:638.340000px;}
.y6c{bottom:640.860000px;}
.ye1{bottom:641.580000px;}
.ya2{bottom:647.340000px;}
.yca{bottom:649.860000px;}
.y104{bottom:650.580000px;}
.y13a{bottom:655.260000px;}
.y15b{bottom:658.140000px;}
.y45{bottom:658.860000px;}
.y6b{bottom:661.740000px;}
.y17{bottom:664.260000px;}
.ya1{bottom:667.860000px;}
.yc9{bottom:670.740000px;}
.ye0{bottom:671.100000px;}
.y103{bottom:671.460000px;}
.y139{bottom:676.140000px;}
.y44{bottom:679.740000px;}
.y6a{bottom:682.260000px;}
.y174{bottom:685.140000px;}
.y15a{bottom:687.660000px;}
.ya0{bottom:688.740000px;}
.yc8{bottom:691.260000px;}
.ydf{bottom:691.980000px;}
.y16{bottom:694.140000px;}
.y43{bottom:700.260000px;}
.y102{bottom:700.980000px;}
.y69{bottom:703.140000px;}
.y138{bottom:705.660000px;}
.y159{bottom:708.540000px;}
.y9f{bottom:709.260000px;}
.yde{bottom:712.500000px;}
.y42{bottom:721.140000px;}
.y101{bottom:721.860000px;}
.y15{bottom:723.660000px;}
.y137{bottom:726.540000px;}
.y9e{bottom:730.140000px;}
.ydd{bottom:733.380000px;}
.y173{bottom:735.540000px;}
.y158{bottom:738.060000px;}
.yee{bottom:739.140000px;}
.y41{bottom:741.660000px;}
.y100{bottom:742.380000px;}
.y87{bottom:750.660000px;}
.y14{bottom:753.540000px;}
.ydc{bottom:753.900000px;}
.y136{bottom:756.060000px;}
.y157{bottom:758.940000px;}
.ycf{bottom:759.660000px;}
.y91{bottom:762.540000px;}
.yff{bottom:763.260000px;}
.yed{bottom:768.660000px;}
.y40{bottom:771.540000px;}
.y13{bottom:774.060000px;}
.ydb{bottom:774.780000px;}
.y135{bottom:776.940000px;}
.y156{bottom:779.460000px;}
.yc7{bottom:780.540000px;}
.yfe{bottom:783.780000px;}
.y172{bottom:785.940000px;}
.y3f{bottom:792.060000px;}
.y12{bottom:794.940000px;}
.yda{bottom:795.300000px;}
.yec{bottom:798.540000px;}
.yc6{bottom:801.060000px;}
.yfd{bottom:804.660000px;}
.y134{bottom:806.460000px;}
.y155{bottom:809.340000px;}
.y3e{bottom:812.940000px;}
.y11{bottom:815.460000px;}
.yd9{bottom:816.180000px;}
.yc5{bottom:821.940000px;}
.yeb{bottom:824.100000px;}
.yfc{bottom:825.180000px;}
.y133{bottom:827.340000px;}
.y154{bottom:829.860000px;}
.y3d{bottom:833.460000px;}
.y10{bottom:836.340000px;}
.y9d{bottom:842.460000px;}
.yd8{bottom:845.700000px;}
.y3c{bottom:854.340000px;}
.yf{bottom:856.860000px;}
.y153{bottom:859.740000px;}
.y9c{bottom:863.340000px;}
.yfb{bottom:865.140000px;}
.y68{bottom:865.860000px;}
.y3b{bottom:874.860000px;}
.yd7{bottom:875.580000px;}
.ye{bottom:877.740000px;}
.y152{bottom:880.260000px;}
.y9b{bottom:883.860000px;}
.y67{bottom:886.740000px;}
.yfa{bottom:892.500000px;}
.y3a{bottom:895.740000px;}
.yd{bottom:898.260000px;}
.yd6{bottom:901.140000px;}
.y9a{bottom:904.740000px;}
.y66{bottom:907.260000px;}
.y151{bottom:910.140000px;}
.yf2{bottom:911.250000px;}
.y86{bottom:916.260000px;}
.yc{bottom:919.140000px;}
.y39{bottom:925.260000px;}
.y65{bottom:928.140000px;}
.yce{bottom:934.260000px;}
.y85{bottom:937.140000px;}
.y150{bottom:939.660000px;}
.y38{bottom:946.140000px;}
.yb{bottom:948.660000px;}
.yc4{bottom:955.140000px;}
.y64{bottom:957.660000px;}
.y37{bottom:966.660000px;}
.ya{bottom:969.540000px;}
.yc3{bottom:975.660000px;}
.y36{bottom:987.540000px;}
.y9{bottom:990.060000px;}
.yc1{bottom:996.540000px;}
.y132{bottom:999.060000px;}
.y35{bottom:1008.060000px;}
.y8{bottom:1010.940000px;}
.y63{bottom:1017.060000px;}
.y14f{bottom:1019.940000px;}
.y34{bottom:1028.940000px;}
.y7{bottom:1031.460000px;}
.y62{bottom:1037.940000px;}
.y11d{bottom:1040.460000px;}
.y33{bottom:1049.460000px;}
.y61{bottom:1058.460000px;}
.y6{bottom:1061.340000px;}
.y32{bottom:1070.340000px;}
.y60{bottom:1079.340000px;}
.y5{bottom:1090.860000px;}
.y5f{bottom:1099.860000px;}
.y4{bottom:1111.740000px;}
.y31{bottom:1120.740000px;}
.h9{height:27.014766px;}
.h7{height:27.375469px;}
.hd{height:39.018437px;}
.he{height:40.993594px;}
.ha{height:41.022422px;}
.h8{height:41.570156px;}
.hc{height:44.318857px;}
.h6{height:49.992188px;}
.h4{height:50.027344px;}
.h2{height:50.695313px;}
.h3{height:63.949219px;}
.h5{height:66.138047px;}
.hb{height:202.640400px;}
.h1{height:1225.500000px;}
.h0{height:1263.000000px;}
.w2{width:635.359350px;}
.w1{width:855.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1a{left:2.241139px;}
.x1{left:18.750000px;}
.x3{left:109.440000px;}
.x8{left:117.320490px;}
.x19{left:129.670560px;}
.xb{left:162.614850px;}
.x1b{left:183.686700px;}
.x18{left:187.153950px;}
.x15{left:190.440000px;}
.xe{left:194.489850px;}
.x16{left:232.461900px;}
.x17{left:234.755850px;}
.x12{left:248.265000px;}
.xd{left:252.315000px;}
.xf{left:262.463400px;}
.x13{left:286.716900px;}
.x1c{left:291.458550px;}
.x9{left:346.113000px;}
.xa{left:428.114850px;}
.x10{left:454.702200px;}
.x5{left:520.240050px;}
.x4{left:526.225350px;}
.x6{left:527.772300px;}
.x1d{left:695.774850px;}
.x11{left:713.362050px;}
.x14{left:719.234700px;}
.xc{left:726.856200px;}
.x2{left:736.823100px;}
.x7{left:746.789850px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls30{letter-spacing:-0.812800pt;}
.ls2e{letter-spacing:-0.806400pt;}
.ls2d{letter-spacing:-0.800000pt;}
.ls2f{letter-spacing:-0.787200pt;}
.ls1e{letter-spacing:-0.019200pt;}
.ls15{letter-spacing:-0.012800pt;}
.ls27{letter-spacing:-0.009554pt;}
.ls28{letter-spacing:-0.004777pt;}
.ls7{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.009554pt;}
.ls0{letter-spacing:0.012800pt;}
.ls23{letter-spacing:0.014330pt;}
.ls2{letter-spacing:0.054293pt;}
.lsc{letter-spacing:0.178432pt;}
.ls3{letter-spacing:0.199147pt;}
.ls6{letter-spacing:0.199200pt;}
.ls12{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.215168pt;}
.ls1c{letter-spacing:0.225664pt;}
.ls19{letter-spacing:0.229333pt;}
.ls9{letter-spacing:0.257152pt;}
.ls2b{letter-spacing:0.283392pt;}
.ls14{letter-spacing:0.284693pt;}
.ls2a{letter-spacing:0.341120pt;}
.ls1d{letter-spacing:0.368000pt;}
.lsd{letter-spacing:0.372608pt;}
.lsb{letter-spacing:0.404096pt;}
.ls13{letter-spacing:0.425088pt;}
.lsf{letter-spacing:0.430336pt;}
.ls8{letter-spacing:0.435584pt;}
.ls4{letter-spacing:0.456576pt;}
.lse{letter-spacing:0.477568pt;}
.ls2c{letter-spacing:0.482816pt;}
.lsa{letter-spacing:0.493312pt;}
.ls16{letter-spacing:0.514304pt;}
.ls10{letter-spacing:0.535296pt;}
.ls17{letter-spacing:0.566784pt;}
.ls1b{letter-spacing:0.624512pt;}
.ls1a{letter-spacing:0.640587pt;}
.ls1f{letter-spacing:0.766208pt;}
.ls20{letter-spacing:1.156800pt;}
.ls1{letter-spacing:1.172800pt;}
.ls26{letter-spacing:1.429867pt;}
.ls5{letter-spacing:6.097227pt;}
.ls25{letter-spacing:7.982987pt;}
.ls24{letter-spacing:13.921600pt;}
.ls21{letter-spacing:50.208000pt;}
.ls11{letter-spacing:64.011733pt;}
.ls22{letter-spacing:64.608000pt;}
.ws13{word-spacing:-16.012800pt;}
.wsf{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.987200pt;}
.ws12{word-spacing:-13.686784pt;}
.ws28{word-spacing:-13.602816pt;}
.ws11{word-spacing:-13.545088pt;}
.ws27{word-spacing:-13.345664pt;}
.ws4{word-spacing:-0.545792pt;}
.ws9{word-spacing:-0.530048pt;}
.ws5{word-spacing:-0.509056pt;}
.ws2{word-spacing:-0.488064pt;}
.wsd{word-spacing:-0.482816pt;}
.ws6{word-spacing:-0.456576pt;}
.ws8{word-spacing:-0.425088pt;}
.ws3{word-spacing:-0.309632pt;}
.ws7{word-spacing:-0.230912pt;}
.ws1{word-spacing:-0.076800pt;}
.ws0{word-spacing:-0.064000pt;}
.ws18{word-spacing:-0.062098pt;}
.ws29{word-spacing:-0.052480pt;}
.ws14{word-spacing:-0.044800pt;}
.wse{word-spacing:0.000000pt;}
.wsa{word-spacing:10.165376pt;}
.wsb{word-spacing:10.170624pt;}
.wsc{word-spacing:10.433024pt;}
.ws24{word-spacing:26.201992pt;}
.ws26{word-spacing:27.491726pt;}
.ws16{word-spacing:50.411307pt;}
.ws17{word-spacing:50.780828pt;}
.ws21{word-spacing:74.619556pt;}
.ws1a{word-spacing:74.620089pt;}
.ws20{word-spacing:194.488847pt;}
.ws1b{word-spacing:201.991886pt;}
.ws1f{word-spacing:246.103912pt;}
.ws22{word-spacing:246.428481pt;}
.ws15{word-spacing:257.867070pt;}
.ws1d{word-spacing:270.312161pt;}
.ws19{word-spacing:418.539499pt;}
.ws1e{word-spacing:460.498587pt;}
.ws1c{word-spacing:509.403384pt;}
.ws23{word-spacing:531.983279pt;}
.ws25{word-spacing:539.729928pt;}
._8{margin-left:-7.104000pt;}
._2a{margin-left:-4.814933pt;}
._b{margin-left:-3.916800pt;}
._11{margin-left:-2.721600pt;}
._4{margin-left:-1.779200pt;}
._7{margin-left:-0.889067pt;}
._0{width:1.388800pt;}
._3{width:2.489600pt;}
._6{width:3.443200pt;}
._10{width:4.409600pt;}
._a{width:5.625600pt;}
._d{width:6.614400pt;}
._1{width:8.201600pt;}
._5{width:9.158400pt;}
._14{width:10.102933pt;}
._2{width:11.392000pt;}
._15{width:12.946133pt;}
._9{width:13.878400pt;}
._16{width:14.833600pt;}
._c{width:17.024000pt;}
._f{width:18.169067pt;}
._17{width:19.866133pt;}
._19{width:21.299200pt;}
._1a{width:22.195200pt;}
._1b{width:23.392000pt;}
._1e{width:24.812800pt;}
._e{width:25.862400pt;}
._1d{width:27.078400pt;}
._18{width:28.379733pt;}
._20{width:32.659200pt;}
._29{width:34.387200pt;}
._1c{width:41.633600pt;}
._2c{width:42.541333pt;}
._1f{width:47.904000pt;}
._23{width:50.744896pt;}
._2b{width:57.881600pt;}
._12{width:68.748800pt;}
._13{width:69.811200pt;}
._21{width:74.332669pt;}
._27{width:98.018135pt;}
._22{width:149.965744pt;}
._28{width:185.732030pt;}
._24{width:217.311780pt;}
._26{width:245.310459pt;}
._25{width:269.481279pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:47.767920pt;}
.fs3{font-size:52.480000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:5.473452pt;}
.y1{bottom:16.666667pt;}
.yf8{bottom:20.400918pt;}
.y3{bottom:33.653360pt;}
.y2{bottom:52.213360pt;}
.yf7{bottom:65.183318pt;}
.y30{bottom:70.453360pt;}
.y171{bottom:71.413360pt;}
.y90{bottom:75.573360pt;}
.yd5{bottom:76.533360pt;}
.y99{bottom:77.813360pt;}
.yf6{bottom:80.110785pt;}
.y84{bottom:80.373360pt;}
.y125{bottom:83.253360pt;}
.yb4{bottom:85.813360pt;}
.y2f{bottom:86.133360pt;}
.yd4{bottom:86.453360pt;}
.y170{bottom:89.653360pt;}
.y131{bottom:90.613360pt;}
.y5e{bottom:91.893360pt;}
.y8f{bottom:93.813360pt;}
.yf5{bottom:95.038252pt;}
.y98{bottom:96.373360pt;}
.y14e{bottom:97.653360pt;}
.y83{bottom:98.613360pt;}
.y11c{bottom:101.173360pt;}
.y5d{bottom:101.813360pt;}
.yc2{bottom:104.373360pt;}
.y2e{bottom:105.013360pt;}
.y124{bottom:106.293360pt;}
.yb3{bottom:107.253360pt;}
.y16f{bottom:108.213360pt;}
.y130{bottom:109.173360pt;}
.yf4{bottom:109.965718pt;}
.y8e{bottom:112.373360pt;}
.y14d{bottom:116.213360pt;}
.y11b{bottom:116.533360pt;}
.yb2{bottom:117.173333pt;}
.y2d{bottom:117.493333pt;}
.yf1{bottom:120.053333pt;}
.y97{bottom:122.613333pt;}
.y82{bottom:125.173333pt;}
.y12f{bottom:127.413333pt;}
.y8d{bottom:130.613333pt;}
.y11a{bottom:131.893333pt;}
.y16e{bottom:134.453333pt;}
.y2c{bottom:136.373333pt;}
.y5c{bottom:138.613333pt;}
.y96{bottom:141.173333pt;}
.y14c{bottom:142.453333pt;}
.y81{bottom:143.413333pt;}
.yea{bottom:144.053333pt;}
.y12e{bottom:145.653333pt;}
.y119{bottom:147.253333pt;}
.y2b{bottom:148.533333pt;}
.y8c{bottom:149.173333pt;}
.y16d{bottom:153.013333pt;}
.yf3{bottom:154.748118pt;}
.yf0{bottom:156.853333pt;}
.y5b{bottom:157.173333pt;}
.y95{bottom:159.413333pt;}
.y14b{bottom:161.013333pt;}
.y118{bottom:162.613333pt;}
.y2a{bottom:164.213333pt;}
.yc0{bottom:167.413333pt;}
.y80{bottom:169.653333pt;}
.ye9{bottom:170.293333pt;}
.y12d{bottom:172.213333pt;}
.y5a{bottom:175.413333pt;}
.y94{bottom:177.653333pt;}
.y117{bottom:177.973333pt;}
.y16c{bottom:179.253333pt;}
.y29{bottom:183.093333pt;}
.yef{bottom:183.413333pt;}
.ybf{bottom:185.653333pt;}
.y14a{bottom:187.253333pt;}
.y7f{bottom:188.213333pt;}
.ye8{bottom:188.853333pt;}
.y12c{bottom:190.453333pt;}
.y59{bottom:193.653333pt;}
.y28{bottom:196.213333pt;}
.y16b{bottom:197.813333pt;}
.y116{bottom:199.413333pt;}
.yb1{bottom:201.653333pt;}
.ybe{bottom:204.213333pt;}
.y149{bottom:205.813333pt;}
.y7e{bottom:206.453333pt;}
.ye7{bottom:207.093333pt;}
.y115{bottom:209.013333pt;}
.y58{bottom:212.213333pt;}
.y16a{bottom:216.053333pt;}
.y12b{bottom:217.013333pt;}
.yb0{bottom:220.213333pt;}
.y93{bottom:222.453333pt;}
.y7d{bottom:225.013333pt;}
.ye6{bottom:225.653333pt;}
.y57{bottom:230.453333pt;}
.y27{bottom:232.053333pt;}
.y12a{bottom:235.253333pt;}
.yaf{bottom:238.453333pt;}
.y92{bottom:241.013333pt;}
.y169{bottom:242.613333pt;}
.y7c{bottom:243.253333pt;}
.y56{bottom:249.013333pt;}
.y148{bottom:250.613333pt;}
.ye5{bottom:251.893333pt;}
.yae{bottom:257.013333pt;}
.y26{bottom:258.613333pt;}
.yd3{bottom:259.253333pt;}
.y168{bottom:260.853333pt;}
.y129{bottom:261.813333pt;}
.y8b{bottom:267.253333pt;}
.y114{bottom:267.893333pt;}
.y147{bottom:268.853333pt;}
.y7b{bottom:269.813333pt;}
.y55{bottom:275.253333pt;}
.yd2{bottom:277.813333pt;}
.ye4{bottom:278.453333pt;}
.y128{bottom:280.053333pt;}
.y25{bottom:284.853333pt;}
.y8a{bottom:285.813333pt;}
.y113{bottom:286.453333pt;}
.y146{bottom:287.413333pt;}
.y7a{bottom:288.053333pt;}
.y54{bottom:293.813333pt;}
.yd1{bottom:296.053333pt;}
.y127{bottom:298.613333pt;}
.ye3{bottom:301.493333pt;}
.ybd{bottom:304.053333pt;}
.y112{bottom:304.693333pt;}
.y167{bottom:305.653333pt;}
.y79{bottom:306.613333pt;}
.y24{bottom:311.413333pt;}
.y53{bottom:312.053333pt;}
.y145{bottom:313.653333pt;}
.yd0{bottom:314.613333pt;}
.yad{bottom:320.053333pt;}
.ybc{bottom:322.613333pt;}
.y111{bottom:323.253333pt;}
.y78{bottom:324.853333pt;}
.y52{bottom:330.613333pt;}
.y166{bottom:332.213333pt;}
.y23{bottom:337.653333pt;}
.yac{bottom:338.613333pt;}
.y144{bottom:340.213333pt;}
.ybb{bottom:340.853333pt;}
.y110{bottom:341.493333pt;}
.y126{bottom:343.413333pt;}
.y51{bottom:348.853333pt;}
.y165{bottom:350.453333pt;}
.y77{bottom:351.413333pt;}
.yab{bottom:356.853333pt;}
.y143{bottom:358.453333pt;}
.yba{bottom:359.413333pt;}
.y123{bottom:361.653333pt;}
.y22{bottom:364.213333pt;}
.y50{bottom:367.413333pt;}
.y10f{bottom:368.053333pt;}
.y76{bottom:369.653333pt;}
.yaa{bottom:375.413333pt;}
.y142{bottom:377.013333pt;}
.yb9{bottom:377.653333pt;}
.y122{bottom:380.213333pt;}
.y21{bottom:382.453333pt;}
.y4f{bottom:385.653333pt;}
.y10e{bottom:386.293333pt;}
.y75{bottom:388.213333pt;}
.ya9{bottom:393.653333pt;}
.y164{bottom:395.253333pt;}
.yb8{bottom:396.213333pt;}
.y20{bottom:401.013333pt;}
.y141{bottom:403.253333pt;}
.y89{bottom:404.213333pt;}
.y10d{bottom:404.853333pt;}
.y74{bottom:406.453333pt;}
.y4e{bottom:412.213333pt;}
.y163{bottom:413.813333pt;}
.yb7{bottom:414.453333pt;}
.y1f{bottom:419.253333pt;}
.y140{bottom:421.813333pt;}
.ycd{bottom:422.453333pt;}
.y10c{bottom:423.093333pt;}
.y73{bottom:425.013333pt;}
.y175{bottom:429.813333pt;}
.y4d{bottom:430.453333pt;}
.y121{bottom:433.013333pt;}
.y1e{bottom:437.813333pt;}
.y162{bottom:440.053333pt;}
.yb6{bottom:441.013333pt;}
.y10b{bottom:441.653333pt;}
.y72{bottom:443.253333pt;}
.y13f{bottom:448.053333pt;}
.y4c{bottom:449.013333pt;}
.y120{bottom:451.253333pt;}
.y1d{bottom:456.053333pt;}
.ya8{bottom:457.013333pt;}
.y161{bottom:458.613333pt;}
.yb5{bottom:459.253333pt;}
.y10a{bottom:459.893333pt;}
.y71{bottom:461.813333pt;}
.y13e{bottom:466.613333pt;}
.y4b{bottom:467.253333pt;}
.y11f{bottom:469.813333pt;}
.y1c{bottom:474.613333pt;}
.ya7{bottom:475.253333pt;}
.y160{bottom:476.853333pt;}
.y109{bottom:478.453333pt;}
.y4a{bottom:485.813333pt;}
.y70{bottom:488.053333pt;}
.y1b{bottom:492.853333pt;}
.ya6{bottom:493.813333pt;}
.y15f{bottom:495.413333pt;}
.y108{bottom:496.693333pt;}
.y49{bottom:504.053333pt;}
.y6f{bottom:506.613333pt;}
.y13d{bottom:511.413333pt;}
.ya5{bottom:512.053333pt;}
.y1a{bottom:519.413333pt;}
.y15e{bottom:521.653333pt;}
.y88{bottom:522.613333pt;}
.y107{bottom:523.253333pt;}
.y6e{bottom:524.853333pt;}
.y48{bottom:530.613333pt;}
.y13c{bottom:537.653333pt;}
.ya4{bottom:538.613333pt;}
.y15d{bottom:540.213333pt;}
.ycc{bottom:540.853333pt;}
.y106{bottom:541.493333pt;}
.y11e{bottom:543.413333pt;}
.ye2{bottom:543.733333pt;}
.y19{bottom:545.653333pt;}
.y47{bottom:548.853333pt;}
.y6d{bottom:551.413333pt;}
.y13b{bottom:556.213333pt;}
.ya3{bottom:556.853333pt;}
.ycb{bottom:559.413333pt;}
.y105{bottom:560.053333pt;}
.y18{bottom:564.213333pt;}
.y15c{bottom:566.453333pt;}
.y46{bottom:567.413333pt;}
.y6c{bottom:569.653333pt;}
.ye1{bottom:570.293333pt;}
.ya2{bottom:575.413333pt;}
.yca{bottom:577.653333pt;}
.y104{bottom:578.293333pt;}
.y13a{bottom:582.453333pt;}
.y15b{bottom:585.013333pt;}
.y45{bottom:585.653333pt;}
.y6b{bottom:588.213333pt;}
.y17{bottom:590.453333pt;}
.ya1{bottom:593.653333pt;}
.yc9{bottom:596.213333pt;}
.ye0{bottom:596.533333pt;}
.y103{bottom:596.853333pt;}
.y139{bottom:601.013333pt;}
.y44{bottom:604.213333pt;}
.y6a{bottom:606.453333pt;}
.y174{bottom:609.013333pt;}
.y15a{bottom:611.253333pt;}
.ya0{bottom:612.213333pt;}
.yc8{bottom:614.453333pt;}
.ydf{bottom:615.093333pt;}
.y16{bottom:617.013333pt;}
.y43{bottom:622.453333pt;}
.y102{bottom:623.093333pt;}
.y69{bottom:625.013333pt;}
.y138{bottom:627.253333pt;}
.y159{bottom:629.813333pt;}
.y9f{bottom:630.453333pt;}
.yde{bottom:633.333333pt;}
.y42{bottom:641.013333pt;}
.y101{bottom:641.653333pt;}
.y15{bottom:643.253333pt;}
.y137{bottom:645.813333pt;}
.y9e{bottom:649.013333pt;}
.ydd{bottom:651.893333pt;}
.y173{bottom:653.813333pt;}
.y158{bottom:656.053333pt;}
.yee{bottom:657.013333pt;}
.y41{bottom:659.253333pt;}
.y100{bottom:659.893333pt;}
.y87{bottom:667.253333pt;}
.y14{bottom:669.813333pt;}
.ydc{bottom:670.133333pt;}
.y136{bottom:672.053333pt;}
.y157{bottom:674.613333pt;}
.ycf{bottom:675.253333pt;}
.y91{bottom:677.813333pt;}
.yff{bottom:678.453333pt;}
.yed{bottom:683.253333pt;}
.y40{bottom:685.813333pt;}
.y13{bottom:688.053333pt;}
.ydb{bottom:688.693333pt;}
.y135{bottom:690.613333pt;}
.y156{bottom:692.853333pt;}
.yc7{bottom:693.813333pt;}
.yfe{bottom:696.693333pt;}
.y172{bottom:698.613333pt;}
.y3f{bottom:704.053333pt;}
.y12{bottom:706.613333pt;}
.yda{bottom:706.933333pt;}
.yec{bottom:709.813333pt;}
.yc6{bottom:712.053333pt;}
.yfd{bottom:715.253333pt;}
.y134{bottom:716.853333pt;}
.y155{bottom:719.413333pt;}
.y3e{bottom:722.613333pt;}
.y11{bottom:724.853333pt;}
.yd9{bottom:725.493333pt;}
.yc5{bottom:730.613333pt;}
.yeb{bottom:732.533333pt;}
.yfc{bottom:733.493333pt;}
.y133{bottom:735.413333pt;}
.y154{bottom:737.653333pt;}
.y3d{bottom:740.853333pt;}
.y10{bottom:743.413333pt;}
.y9d{bottom:748.853333pt;}
.yd8{bottom:751.733333pt;}
.y3c{bottom:759.413333pt;}
.yf{bottom:761.653333pt;}
.y153{bottom:764.213333pt;}
.y9c{bottom:767.413333pt;}
.yfb{bottom:769.013333pt;}
.y68{bottom:769.653333pt;}
.y3b{bottom:777.653333pt;}
.yd7{bottom:778.293333pt;}
.ye{bottom:780.213333pt;}
.y152{bottom:782.453333pt;}
.y9b{bottom:785.653333pt;}
.y67{bottom:788.213333pt;}
.yfa{bottom:793.333333pt;}
.y3a{bottom:796.213333pt;}
.yd{bottom:798.453333pt;}
.yd6{bottom:801.013333pt;}
.y9a{bottom:804.213333pt;}
.y66{bottom:806.453333pt;}
.y151{bottom:809.013333pt;}
.yf2{bottom:810.000000pt;}
.y86{bottom:814.453333pt;}
.yc{bottom:817.013333pt;}
.y39{bottom:822.453333pt;}
.y65{bottom:825.013333pt;}
.yce{bottom:830.453333pt;}
.y85{bottom:833.013333pt;}
.y150{bottom:835.253333pt;}
.y38{bottom:841.013333pt;}
.yb{bottom:843.253333pt;}
.yc4{bottom:849.013333pt;}
.y64{bottom:851.253333pt;}
.y37{bottom:859.253333pt;}
.ya{bottom:861.813333pt;}
.yc3{bottom:867.253333pt;}
.y36{bottom:877.813333pt;}
.y9{bottom:880.053333pt;}
.yc1{bottom:885.813333pt;}
.y132{bottom:888.053333pt;}
.y35{bottom:896.053333pt;}
.y8{bottom:898.613333pt;}
.y63{bottom:904.053333pt;}
.y14f{bottom:906.613333pt;}
.y34{bottom:914.613333pt;}
.y7{bottom:916.853333pt;}
.y62{bottom:922.613333pt;}
.y11d{bottom:924.853333pt;}
.y33{bottom:932.853333pt;}
.y61{bottom:940.853333pt;}
.y6{bottom:943.413333pt;}
.y32{bottom:951.413333pt;}
.y60{bottom:959.413333pt;}
.y5{bottom:969.653333pt;}
.y5f{bottom:977.653333pt;}
.y4{bottom:988.213333pt;}
.y31{bottom:996.213333pt;}
.h9{height:24.013125pt;}
.h7{height:24.333750pt;}
.hd{height:34.683055pt;}
.he{height:36.438750pt;}
.ha{height:36.464375pt;}
.h8{height:36.951250pt;}
.hc{height:39.394539pt;}
.h6{height:44.437500pt;}
.h4{height:44.468750pt;}
.h2{height:45.062500pt;}
.h3{height:56.843750pt;}
.h5{height:58.789375pt;}
.hb{height:180.124800pt;}
.h1{height:1089.333333pt;}
.h0{height:1122.666667pt;}
.w2{width:564.763867pt;}
.w1{width:760.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:1.992124pt;}
.x1{left:16.666667pt;}
.x3{left:97.280000pt;}
.x8{left:104.284880pt;}
.x19{left:115.262720pt;}
.xb{left:144.546533pt;}
.x1b{left:163.277067pt;}
.x18{left:166.359067pt;}
.x15{left:169.280000pt;}
.xe{left:172.879867pt;}
.x16{left:206.632800pt;}
.x17{left:208.671867pt;}
.x12{left:220.680000pt;}
.xd{left:224.280000pt;}
.xf{left:233.300800pt;}
.x13{left:254.859467pt;}
.x1c{left:259.074267pt;}
.x9{left:307.656000pt;}
.xa{left:380.546533pt;}
.x10{left:404.179733pt;}
.x5{left:462.435600pt;}
.x4{left:467.755867pt;}
.x6{left:469.130933pt;}
.x1d{left:618.466533pt;}
.x11{left:634.099600pt;}
.x14{left:639.319733pt;}
.xc{left:646.094400pt;}
.x2{left:654.953867pt;}
.x7{left:663.813200pt;}
}




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