
    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_e7dd89a7896e89fec3064b92.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_f78595b2787c09277f5b65e4.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_27270fe087df4220f31e51c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_9b93e800903e7e1b7623197e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_2bf37f85b6e970d948273c8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_2bf37f85b6e970d948273c8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_72ca8d8aee14c6fe745eac9b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_300a9eb56c003517f2674094.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.313477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2bf37f85b6e970d948273c8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_92da4300b69ff2187c749f0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cfa1eb5b68370fd9ac99ebcd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(-0.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);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000420,0.250000,-0.250000,0.000420,0,0);-ms-transform:matrix(0.000420,0.250000,-0.250000,0.000420,0,0);-webkit-transform:matrix(0.000420,0.250000,-0.250000,0.000420,0,0);}
.m3{transform:matrix(0.000425,0.250000,-0.250000,0.000425,0,0);-ms-transform:matrix(0.000425,0.250000,-0.250000,0.000425,0,0);-webkit-transform:matrix(0.000425,0.250000,-0.250000,0.000425,0,0);}
.m1{transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-27.600000px;}
.v1{vertical-align:-23.400000px;}
.v2{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.600000px;}
.v4{vertical-align:34.800000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.020003px;}
.ls11{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.088583px;}
.ls4{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.158400px;}
.ls3{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.277178px;}
.lsb{letter-spacing:0.285750px;}
.ls5{letter-spacing:0.318000px;}
.ls10{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.428626px;}
.ls17{letter-spacing:0.480000px;}
.lse{letter-spacing:0.522923px;}
.ls9{letter-spacing:1.200000px;}
.ls8{letter-spacing:3.600000px;}
.ls19{letter-spacing:13.200000px;}
.ls1{letter-spacing:18.600000px;}
.ls15{letter-spacing:19.800000px;}
.ls12{letter-spacing:22.800000px;}
.ls2{letter-spacing:29.601223px;}
.ls13{letter-spacing:52.296000px;}
.ls14{letter-spacing:57.780000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.500024px;}
.ws2{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.750000px;}
.wsa{word-spacing:-15.716250px;}
.wsc{word-spacing:-15.001896px;}
.ws4{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.287500px;}
.ws8{word-spacing:-10.500000px;}
.ws7{word-spacing:-10.058400px;}
.ws6{word-spacing:-9.900000px;}
.ws9{word-spacing:-8.700000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:164.220000px;}
.ws11{word-spacing:328.839600px;}
.wsd{word-spacing:347.360400px;}
.ws14{word-spacing:385.314000px;}
.ws17{word-spacing:390.132000px;}
.wse{word-spacing:399.747600px;}
.ws18{word-spacing:456.600000px;}
.ws10{word-spacing:483.624000px;}
.ws12{word-spacing:555.117600px;}
.ws15{word-spacing:593.602800px;}
.ws19{word-spacing:670.860000px;}
.ws13{word-spacing:759.180000px;}
.ws16{word-spacing:924.120000px;}
._14{margin-left:-2.376000px;}
._1{margin-left:-1.080000px;}
._4{width:1.008000px;}
._b{width:2.136000px;}
._5{width:4.032000px;}
._2{width:5.040000px;}
._3{width:6.048000px;}
._6{width:7.776000px;}
._c{width:9.768000px;}
._f{width:10.800000px;}
._7{width:12.744000px;}
._8{width:13.752000px;}
._d{width:15.264000px;}
._e{width:16.272000px;}
._1b{width:17.544000px;}
._a{width:19.872000px;}
._9{width:21.024000px;}
._10{width:22.176000px;}
._11{width:24.336000px;}
._17{width:26.289000px;}
._27{width:28.224000px;}
._1e{width:30.600000px;}
._16{width:34.416000px;}
._15{width:35.568000px;}
._1d{width:36.648000px;}
._18{width:38.804850px;}
._20{width:40.080000px;}
._1c{width:42.960000px;}
._26{width:44.784000px;}
._19{width:52.635149px;}
._1f{width:60.480000px;}
._1a{width:115.271549px;}
._25{width:218.160000px;}
._21{width:229.500000px;}
._12{width:386.454000px;}
._22{width:398.559600px;}
._23{width:444.247200px;}
._24{width:453.530400px;}
._13{width:459.054000px;}
._0{width:1115.784000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:34.800000px;}
.fs6{font-size:39.600000px;}
.fs7{font-size:42.000000px;}
.fsb{font-size:57.149999px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:60.007499px;}
.fsc{font-size:60.007584px;}
.fs9{font-size:62.864999px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:66.000095px;}
.fs3{font-size:70.200000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y122{bottom:3.899400px;}
.y161{bottom:3.899550px;}
.y1a5{bottom:3.899700px;}
.y7f{bottom:3.900000px;}
.y15a{bottom:3.900150px;}
.ye6{bottom:3.900300px;}
.y15f{bottom:3.900600px;}
.y10f{bottom:3.900750px;}
.ye3{bottom:13.858269px;}
.y63{bottom:21.795250px;}
.ydc{bottom:41.428569px;}
.yd2{bottom:51.003143px;}
.ydb{bottom:57.859193px;}
.yd1{bottom:67.433768px;}
.y1a7{bottom:69.848105px;}
.y7e{bottom:70.642502px;}
.y1a4{bottom:71.157297px;}
.y159{bottom:72.466347px;}
.y15e{bottom:73.775397px;}
.yda{bottom:74.289818px;}
.y121{bottom:75.084600px;}
.y1a3{bottom:77.320953px;}
.y20{bottom:77.400000px;}
.ye5{bottom:77.702700px;}
.y10e{bottom:79.011750px;}
.y160{bottom:80.320953px;}
.yd9{bottom:90.720443px;}
.yd0{bottom:106.720868px;}
.yd8{bottom:107.151068px;}
.ybd{bottom:109.252281px;}
.ybc{bottom:109.650000px;}
.y162{bottom:115.500000px;}
.y10d{bottom:120.150000px;}
.ye0{bottom:120.580568px;}
.y13e{bottom:120.600000px;}
.yba{bottom:122.250000px;}
.ycf{bottom:123.151493px;}
.y30{bottom:124.350000px;}
.y15d{bottom:126.900000px;}
.y47{bottom:127.800000px;}
.y60{bottom:130.650000px;}
.ybb{bottom:132.750000px;}
.yce{bottom:139.582117px;}
.y10c{bottom:140.850000px;}
.y13d{bottom:141.300000px;}
.yb9{bottom:142.950000px;}
.yd7{bottom:144.293467px;}
.y15c{bottom:144.300000px;}
.y2f{bottom:145.050000px;}
.y46{bottom:148.500000px;}
.y1a2{bottom:150.150000px;}
.y5f{bottom:151.350000px;}
.yd6{bottom:160.724092px;}
.y10b{bottom:161.550000px;}
.y13c{bottom:162.000000px;}
.yb8{bottom:163.650000px;}
.y2e{bottom:165.750000px;}
.ydf{bottom:168.444442px;}
.y15b{bottom:169.050000px;}
.y45{bottom:169.200000px;}
.ye1{bottom:170.514294px;}
.y5e{bottom:172.050000px;}
.y1a1{bottom:172.200000px;}
.yd5{bottom:177.154717px;}
.y10a{bottom:182.250000px;}
.y13b{bottom:182.700000px;}
.yb7{bottom:184.350000px;}
.y1a6{bottom:184.800000px;}
.yde{bottom:184.875067px;}
.y17d{bottom:185.550000px;}
.y2d{bottom:186.450000px;}
.ycd{bottom:188.441992px;}
.y44{bottom:189.900000px;}
.y5d{bottom:192.750000px;}
.y1a0{bottom:192.900000px;}
.yd4{bottom:193.585342px;}
.ydd{bottom:201.305692px;}
.y17c{bottom:202.800000px;}
.y109{bottom:202.950000px;}
.y13a{bottom:203.400000px;}
.yb6{bottom:205.050000px;}
.ycc{bottom:206.587117px;}
.y2c{bottom:207.150000px;}
.yd3{bottom:210.015967px;}
.y43{bottom:210.600000px;}
.y5c{bottom:213.450000px;}
.y19f{bottom:213.600000px;}
.y17b{bottom:220.200000px;}
.y108{bottom:223.650000px;}
.y139{bottom:224.100000px;}
.yb5{bottom:225.750000px;}
.y2b{bottom:227.850000px;}
.y42{bottom:231.300000px;}
.y5b{bottom:234.150000px;}
.y19e{bottom:234.300000px;}
.ycb{bottom:234.446466px;}
.y107{bottom:244.350000px;}
.y138{bottom:244.800000px;}
.yb4{bottom:246.450000px;}
.y2a{bottom:248.550000px;}
.y17a{bottom:249.900000px;}
.y41{bottom:252.000000px;}
.y19d{bottom:255.000000px;}
.y106{bottom:265.050000px;}
.y137{bottom:265.500000px;}
.yb3{bottom:267.150000px;}
.y29{bottom:269.250000px;}
.y40{bottom:272.700000px;}
.y19c{bottom:275.700000px;}
.y179{bottom:280.050000px;}
.y105{bottom:285.750000px;}
.y136{bottom:286.200000px;}
.y158{bottom:287.850000px;}
.y1f{bottom:289.950000px;}
.yca{bottom:295.163616px;}
.y5a{bottom:295.650000px;}
.y19b{bottom:296.400000px;}
.y96{bottom:296.700000px;}
.y177{bottom:297.300000px;}
.y104{bottom:306.450000px;}
.y135{bottom:306.900000px;}
.yb2{bottom:307.950000px;}
.y157{bottom:308.550000px;}
.y28{bottom:310.650000px;}
.yc9{bottom:312.451490px;}
.y3f{bottom:314.100000px;}
.y178{bottom:314.700000px;}
.y19a{bottom:317.100000px;}
.y95{bottom:317.400000px;}
.yb1{bottom:325.350000px;}
.y103{bottom:327.150000px;}
.y134{bottom:327.600000px;}
.y156{bottom:329.250000px;}
.yc8{bottom:329.739365px;}
.y1e{bottom:331.350000px;}
.y199{bottom:337.800000px;}
.y94{bottom:338.100000px;}
.yb0{bottom:342.600000px;}
.y102{bottom:347.850000px;}
.y176{bottom:348.150000px;}
.y133{bottom:348.300000px;}
.y155{bottom:349.950000px;}
.y1d{bottom:352.050000px;}
.y198{bottom:358.500000px;}
.y7b{bottom:358.800000px;}
.yaf{bottom:360.000000px;}
.y7d{bottom:361.200000px;}
.y174{bottom:365.550000px;}
.y101{bottom:368.550000px;}
.y132{bottom:369.000000px;}
.y1c{bottom:372.750000px;}
.y7a{bottom:376.050000px;}
.y3e{bottom:376.200000px;}
.y7c{bottom:378.450000px;}
.y197{bottom:379.200000px;}
.y93{bottom:379.500000px;}
.y175{bottom:382.800000px;}
.y100{bottom:389.250000px;}
.y131{bottom:389.700000px;}
.y1b{bottom:393.450000px;}
.y3d{bottom:396.900000px;}
.yae{bottom:398.550000px;}
.y196{bottom:399.900000px;}
.y92{bottom:400.200000px;}
.yff{bottom:409.950000px;}
.y130{bottom:410.400000px;}
.ye2{bottom:413.745814px;}
.y1a{bottom:414.150000px;}
.y3c{bottom:417.600000px;}
.yad{bottom:419.250000px;}
.yc7{bottom:419.316064px;}
.y173{bottom:419.400000px;}
.yc4{bottom:420.458914px;}
.y91{bottom:420.900000px;}
.y152{bottom:421.050000px;}
.yfe{bottom:430.650000px;}
.y12f{bottom:431.100000px;}
.y19{bottom:434.850000px;}
.yc6{bottom:436.603939px;}
.y172{bottom:436.650000px;}
.yc3{bottom:437.746789px;}
.y3b{bottom:438.300000px;}
.yac{bottom:439.950000px;}
.y195{bottom:441.300000px;}
.y90{bottom:441.600000px;}
.y154{bottom:447.000000px;}
.y120{bottom:450.750000px;}
.yfd{bottom:451.350000px;}
.y12e{bottom:451.800000px;}
.yc5{bottom:453.891814px;}
.yc2{bottom:455.034664px;}
.y18{bottom:455.550000px;}
.y14f{bottom:455.700000px;}
.y3a{bottom:459.000000px;}
.yab{bottom:460.650000px;}
.y8f{bottom:462.300000px;}
.y153{bottom:464.250000px;}
.y11f{bottom:468.000000px;}
.yfc{bottom:472.050000px;}
.y12d{bottom:472.500000px;}
.y151{bottom:472.950000px;}
.y171{bottom:475.500000px;}
.y17{bottom:476.250000px;}
.y39{bottom:479.700000px;}
.yaa{bottom:481.350000px;}
.y8e{bottom:483.000000px;}
.y11e{bottom:485.400000px;}
.y70{bottom:488.550000px;}
.y73{bottom:489.600000px;}
.y150{bottom:490.350000px;}
.yfb{bottom:492.750000px;}
.y12c{bottom:493.200000px;}
.y16{bottom:496.950000px;}
.y67{bottom:499.500000px;}
.y38{bottom:500.400000px;}
.ya9{bottom:502.050000px;}
.y11d{bottom:502.650000px;}
.y194{bottom:503.400000px;}
.y8d{bottom:503.700000px;}
.y6f{bottom:505.800000px;}
.y72{bottom:506.850000px;}
.yc1{bottom:508.180788px;}
.ybf{bottom:508.752213px;}
.y170{bottom:512.100000px;}
.yfa{bottom:513.450000px;}
.y12b{bottom:513.900000px;}
.y66{bottom:516.750000px;}
.y15{bottom:517.650000px;}
.y11c{bottom:520.050000px;}
.y37{bottom:521.100000px;}
.y6e{bottom:523.050000px;}
.y71{bottom:524.100000px;}
.y8c{bottom:524.400000px;}
.y14e{bottom:524.850000px;}
.y14a{bottom:526.200000px;}
.yc0{bottom:526.325913px;}
.ybe{bottom:526.754463px;}
.ye4{bottom:529.754763px;}
.yf9{bottom:534.150000px;}
.y12a{bottom:534.600000px;}
.y14{bottom:538.350000px;}
.y36{bottom:541.800000px;}
.y14d{bottom:542.100000px;}
.y149{bottom:543.450000px;}
.y193{bottom:544.800000px;}
.y8b{bottom:545.100000px;}
.y16f{bottom:545.250000px;}
.yf8{bottom:554.850000px;}
.y129{bottom:555.300000px;}
.y11b{bottom:558.600000px;}
.y27{bottom:559.050000px;}
.y14c{bottom:559.950000px;}
.y146{bottom:560.850000px;}
.y35{bottom:562.500000px;}
.y192{bottom:565.500000px;}
.y8a{bottom:565.800000px;}
.yf7{bottom:575.550000px;}
.y128{bottom:576.000000px;}
.y148{bottom:578.100000px;}
.y11a{bottom:579.300000px;}
.y14b{bottom:579.450000px;}
.y26{bottom:579.750000px;}
.ya8{bottom:581.700000px;}
.y34{bottom:583.200000px;}
.y191{bottom:586.200000px;}
.y89{bottom:586.500000px;}
.y147{bottom:595.500000px;}
.y16e{bottom:596.100000px;}
.yf6{bottom:596.250000px;}
.y127{bottom:596.700000px;}
.y64{bottom:596.850050px;}
.ya7{bottom:598.950000px;}
.y119{bottom:600.000000px;}
.y13{bottom:600.450000px;}
.y33{bottom:603.900000px;}
.y190{bottom:606.900000px;}
.y88{bottom:607.200000px;}
.ya6{bottom:616.350000px;}
.yf5{bottom:616.950000px;}
.y126{bottom:617.400000px;}
.y118{bottom:620.700000px;}
.y25{bottom:621.150000px;}
.y32{bottom:624.600000px;}
.y16d{bottom:627.150000px;}
.y18f{bottom:627.600000px;}
.y87{bottom:627.900000px;}
.y69{bottom:631.350000px;}
.y6b{bottom:631.950000px;}
.y125{bottom:638.100000px;}
.y117{bottom:641.400000px;}
.y12{bottom:641.850000px;}
.y145{bottom:645.750000px;}
.y86{bottom:648.600000px;}
.ya5{bottom:651.000000px;}
.y68{bottom:652.050000px;}
.y6a{bottom:652.650000px;}
.y62{bottom:653.700000px;}
.yf4{bottom:657.750000px;}
.y16c{bottom:658.350000px;}
.y124{bottom:658.800000px;}
.y116{bottom:662.100000px;}
.y11{bottom:662.550000px;}
.y141{bottom:665.250000px;}
.ya4{bottom:668.250000px;}
.y18e{bottom:669.000000px;}
.y85{bottom:669.300000px;}
.y140{bottom:673.800000px;}
.yf3{bottom:675.000000px;}
.y123{bottom:679.500000px;}
.y144{bottom:682.500000px;}
.y115{bottom:682.800000px;}
.y10{bottom:683.250000px;}
.ya3{bottom:685.650000px;}
.y31{bottom:686.100000px;}
.y16b{bottom:688.050000px;}
.y84{bottom:690.000000px;}
.yf2{bottom:692.400000px;}
.y143{bottom:699.900000px;}
.y114{bottom:703.500000px;}
.yf{bottom:703.950000px;}
.y16a{bottom:705.300000px;}
.y59{bottom:708.000000px;}
.yf1{bottom:709.650000px;}
.y83{bottom:710.700000px;}
.y56{bottom:713.250000px;}
.y61{bottom:717.450000px;}
.y142{bottom:717.600000px;}
.ya2{bottom:720.300000px;}
.y169{bottom:722.700000px;}
.ye{bottom:724.650000px;}
.y58{bottom:725.250000px;}
.yf0{bottom:727.050000px;}
.y55{bottom:730.500000px;}
.y18d{bottom:731.100000px;}
.y82{bottom:731.400000px;}
.y6d{bottom:734.550000px;}
.ya1{bottom:737.550000px;}
.y57{bottom:742.500000px;}
.yef{bottom:744.300000px;}
.yd{bottom:745.350000px;}
.y13f{bottom:747.000000px;}
.y54{bottom:747.750000px;}
.y18c{bottom:751.800000px;}
.y168{bottom:754.500000px;}
.ya0{bottom:754.950000px;}
.y6c{bottom:755.250000px;}
.yee{bottom:761.700000px;}
.yc{bottom:766.050000px;}
.y49{bottom:768.750000px;}
.y79{bottom:771.000000px;}
.y76{bottom:771.750000px;}
.y81{bottom:772.200000px;}
.y18b{bottom:772.500000px;}
.y113{bottom:778.950000px;}
.y166{bottom:781.650000px;}
.yb{bottom:786.750000px;}
.y78{bottom:788.250000px;}
.y75{bottom:789.000000px;}
.y80{bottom:789.600000px;}
.y65{bottom:790.800000px;}
.y51{bottom:791.387850px;}
.y18a{bottom:793.200000px;}
.y112{bottom:796.350000px;}
.y4c{bottom:796.800000px;}
.y53{bottom:796.851300px;}
.yed{bottom:800.250000px;}
.y52{bottom:805.118400px;}
.y77{bottom:805.500000px;}
.y74{bottom:806.250000px;}
.y9f{bottom:806.850000px;}
.ya{bottom:807.450000px;}
.y167{bottom:807.600000px;}
.y111{bottom:813.600000px;}
.y189{bottom:813.900000px;}
.y165{bottom:816.300000px;}
.yec{bottom:820.950000px;}
.y9e{bottom:824.250000px;}
.y9{bottom:828.150000px;}
.y4b{bottom:829.152300px;}
.y110{bottom:831.000000px;}
.y164{bottom:833.550000px;}
.y188{bottom:834.600000px;}
.yeb{bottom:841.650000px;}
.y48{bottom:846.750000px;}
.y8{bottom:848.850000px;}
.y4a{bottom:849.450000px;}
.y9d{bottom:859.500000px;}
.yea{bottom:862.350000px;}
.y24{bottom:869.550000px;}
.y163{bottom:872.400000px;}
.y9c{bottom:876.900000px;}
.ye9{bottom:883.050000px;}
.y23{bottom:890.250000px;}
.y9b{bottom:894.150000px;}
.ye8{bottom:903.750000px;}
.y187{bottom:906.000000px;}
.y22{bottom:910.950000px;}
.y186{bottom:923.250000px;}
.y9a{bottom:928.800000px;}
.y7{bottom:931.650000px;}
.y185{bottom:940.650000px;}
.y99{bottom:946.200000px;}
.y50{bottom:946.650000px;}
.y4e{bottom:947.250000px;}
.y6{bottom:952.350000px;}
.y184{bottom:957.900000px;}
.y98{bottom:963.450000px;}
.y4f{bottom:964.800000px;}
.ye7{bottom:965.250000px;}
.y4d{bottom:965.400000px;}
.y17f{bottom:968.700000px;}
.y5{bottom:973.050000px;}
.y183{bottom:975.300000px;}
.y17e{bottom:986.100000px;}
.y21{bottom:993.750000px;}
.y182{bottom:1012.800000px;}
.y4{bottom:1014.450000px;}
.y97{bottom:1017.300000px;}
.y181{bottom:1030.200000px;}
.y3{bottom:1035.150000px;}
.y180{bottom:1047.450000px;}
.y2{bottom:1055.850000px;}
.y1{bottom:1117.950000px;}
.h17{height:18.014850px;}
.hd{height:18.015000px;}
.h10{height:30.534961px;}
.h1c{height:34.746680px;}
.h1b{height:34.843359px;}
.h1a{height:36.852539px;}
.h7{height:46.788574px;}
.h19{height:49.042969px;}
.h14{height:50.145776px;}
.h6{height:52.646484px;}
.h13{height:52.653065px;}
.h16{height:52.653139px;}
.hc{height:52.792969px;}
.h12{height:55.160353px;}
.h9{height:55.432617px;}
.h8{height:57.911133px;}
.ha{height:57.911216px;}
.h4{height:58.072266px;}
.h3{height:63.175781px;}
.h1{height:63.351562px;}
.h2{height:63.949219px;}
.hf{height:64.452539px;}
.h5{height:64.775391px;}
.he{height:72.492188px;}
.h18{height:87.446484px;}
.h15{height:835.564941px;}
.hb{height:918.000000px;}
.h11{height:1078.747719px;}
.h0{height:1188.000000px;}
.wc{width:21.598500px;}
.w8{width:21.599357px;}
.w9{width:21.599400px;}
.w6{width:21.599443px;}
.w3{width:21.599550px;}
.wa{width:21.599700px;}
.w5{width:21.599850px;}
.w7{width:21.600000px;}
.wb{width:31.514700px;}
.w2{width:822.601456px;}
.w4{width:874.352405px;}
.w1{width:913.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:4.500000px;}
.x3e{left:27.487495px;}
.x54{left:29.001892px;}
.x1{left:127.800000px;}
.x66{left:137.250000px;}
.x64{left:138.450000px;}
.x7{left:144.600000px;}
.x6f{left:149.100000px;}
.x6a{left:151.050000px;}
.x11{left:153.750000px;}
.x10{left:154.800000px;}
.x7d{left:156.000000px;}
.x69{left:159.900000px;}
.x3d{left:161.250000px;}
.x6b{left:162.300000px;}
.x7c{left:163.950000px;}
.x5a{left:165.600000px;}
.x4{left:166.950000px;}
.x7e{left:169.050000px;}
.x6e{left:170.850000px;}
.x6d{left:172.200000px;}
.x71{left:175.950000px;}
.xe{left:177.043350px;}
.x9{left:180.900000px;}
.x5b{left:185.850000px;}
.x5e{left:187.950000px;}
.x55{left:191.586006px;}
.x65{left:199.200000px;}
.xd{left:200.400000px;}
.x40{left:202.014527px;}
.x6{left:218.250000px;}
.x3f{left:221.588402px;}
.x1f{left:228.750000px;}
.x49{left:233.017802px;}
.xa{left:237.600000px;}
.x48{left:240.732602px;}
.x32{left:244.950000px;}
.x20{left:247.950000px;}
.xc{left:251.100000px;}
.x31{left:253.800000px;}
.x36{left:255.900000px;}
.x37{left:259.350000px;}
.x4b{left:261.305477px;}
.x43{left:262.306352px;}
.x4a{left:263.448602px;}
.x42{left:267.735602px;}
.x2{left:270.450000px;}
.x38{left:273.000000px;}
.x5c{left:275.550000px;}
.xf{left:277.200000px;}
.x3{left:281.250000px;}
.x4c{left:282.307876px;}
.x27{left:288.301500px;}
.x1e{left:289.950000px;}
.x24{left:294.300000px;}
.x7f{left:298.650000px;}
.x82{left:300.900000px;}
.x72{left:305.550000px;}
.x6c{left:313.350000px;}
.x2b{left:314.850000px;}
.x81{left:316.350000px;}
.x76{left:323.850000px;}
.x73{left:325.500000px;}
.x2c{left:326.850000px;}
.x75{left:333.750000px;}
.x78{left:344.850000px;}
.x67{left:350.700000px;}
.x79{left:357.750000px;}
.x47{left:360.455551px;}
.x8{left:363.300000px;}
.x57{left:365.027850px;}
.x5{left:369.000000px;}
.x50{left:376.879575px;}
.x51{left:379.879950px;}
.x53{left:384.600750px;}
.x13{left:388.950000px;}
.x12{left:391.800000px;}
.x28{left:409.800000px;}
.x52{left:411.455325px;}
.x14{left:415.500000px;}
.x29{left:418.500000px;}
.xb{left:421.500000px;}
.x70{left:423.300000px;}
.x68{left:424.350000px;}
.x3b{left:430.050000px;}
.x2a{left:438.000000px;}
.x2f{left:440.700000px;}
.x30{left:452.700000px;}
.x1a{left:465.300000px;}
.x19{left:466.350000px;}
.x17{left:490.006650px;}
.x4f{left:505.324199px;}
.x4e{left:506.324399px;}
.x16{left:511.950000px;}
.x4d{left:530.326199px;}
.x44{left:532.040549px;}
.x5d{left:533.250000px;}
.x23{left:543.750000px;}
.x46{left:545.756548px;}
.x22{left:547.350000px;}
.x45{left:551.185798px;}
.x7a{left:553.050000px;}
.x3a{left:556.350000px;}
.x15{left:560.700000px;}
.x83{left:564.750000px;}
.x74{left:566.250000px;}
.x85{left:567.600000px;}
.x2d{left:571.050000px;}
.x80{left:577.500000px;}
.x2e{left:583.050000px;}
.x41{left:585.472198px;}
.x86{left:586.650000px;}
.x77{left:588.900000px;}
.x84{left:592.650000px;}
.x34{left:597.150000px;}
.x18{left:598.650000px;}
.x7b{left:601.800000px;}
.x33{left:606.000000px;}
.x39{left:611.550000px;}
.x21{left:615.000000px;}
.x35{left:620.700000px;}
.x26{left:626.400000px;}
.x5f{left:660.900000px;}
.x56{left:677.480247px;}
.x1c{left:718.650000px;}
.x1b{left:721.500000px;}
.x1d{left:745.906650px;}
.x61{left:752.730565px;}
.x63{left:757.966957px;}
.x58{left:759.276135px;}
.x62{left:760.585464px;}
.x87{left:763.203303px;}
.x59{left:764.512527px;}
.x3c{left:766.600929px;}
.x60{left:768.658539px;}
.x88{left:771.058501px;}
.x89{left:772.367116px;}
@media print{
.v5{vertical-align:-24.533333pt;}
.v1{vertical-align:-20.800000pt;}
.v2{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.533333pt;}
.v4{vertical-align:30.933333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.017780pt;}
.ls11{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.078740pt;}
.ls4{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.140800pt;}
.ls3{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.246380pt;}
.lsb{letter-spacing:0.254000pt;}
.ls5{letter-spacing:0.282667pt;}
.ls10{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.381001pt;}
.ls17{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.464821pt;}
.ls9{letter-spacing:1.066667pt;}
.ls8{letter-spacing:3.200000pt;}
.ls19{letter-spacing:11.733333pt;}
.ls1{letter-spacing:16.533333pt;}
.ls15{letter-spacing:17.600000pt;}
.ls12{letter-spacing:20.266667pt;}
.ls2{letter-spacing:26.312198pt;}
.ls13{letter-spacing:46.485333pt;}
.ls14{letter-spacing:51.360000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.666688pt;}
.ws2{word-spacing:-14.666667pt;}
.ws3{word-spacing:-14.000000pt;}
.wsa{word-spacing:-13.970000pt;}
.wsc{word-spacing:-13.335019pt;}
.ws4{word-spacing:-13.333333pt;}
.wsb{word-spacing:-12.700000pt;}
.ws8{word-spacing:-9.333333pt;}
.ws7{word-spacing:-8.940800pt;}
.ws6{word-spacing:-8.800000pt;}
.ws9{word-spacing:-7.733333pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:145.973333pt;}
.ws11{word-spacing:292.301867pt;}
.wsd{word-spacing:308.764800pt;}
.ws14{word-spacing:342.501333pt;}
.ws17{word-spacing:346.784000pt;}
.wse{word-spacing:355.331200pt;}
.ws18{word-spacing:405.866667pt;}
.ws10{word-spacing:429.888000pt;}
.ws12{word-spacing:493.437867pt;}
.ws15{word-spacing:527.646933pt;}
.ws19{word-spacing:596.320000pt;}
.ws13{word-spacing:674.826667pt;}
.ws16{word-spacing:821.440000pt;}
._14{margin-left:-2.112000pt;}
._1{margin-left:-0.960000pt;}
._4{width:0.896000pt;}
._b{width:1.898667pt;}
._5{width:3.584000pt;}
._2{width:4.480000pt;}
._3{width:5.376000pt;}
._6{width:6.912000pt;}
._c{width:8.682667pt;}
._f{width:9.600000pt;}
._7{width:11.328000pt;}
._8{width:12.224000pt;}
._d{width:13.568000pt;}
._e{width:14.464000pt;}
._1b{width:15.594667pt;}
._a{width:17.664000pt;}
._9{width:18.688000pt;}
._10{width:19.712000pt;}
._11{width:21.632000pt;}
._17{width:23.368000pt;}
._27{width:25.088000pt;}
._1e{width:27.200000pt;}
._16{width:30.592000pt;}
._15{width:31.616000pt;}
._1d{width:32.576000pt;}
._18{width:34.493200pt;}
._20{width:35.626667pt;}
._1c{width:38.186667pt;}
._26{width:39.808000pt;}
._19{width:46.786799pt;}
._1f{width:53.760000pt;}
._1a{width:102.463599pt;}
._25{width:193.920000pt;}
._21{width:204.000000pt;}
._12{width:343.514667pt;}
._22{width:354.275200pt;}
._23{width:394.886400pt;}
._24{width:403.138133pt;}
._13{width:408.048000pt;}
._0{width:991.808000pt;}
.fs8{font-size:30.933333pt;}
.fs6{font-size:35.200000pt;}
.fs7{font-size:37.333333pt;}
.fsb{font-size:50.799999pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:53.339999pt;}
.fsc{font-size:53.340075pt;}
.fs9{font-size:55.879999pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:58.666751pt;}
.fs3{font-size:62.400000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y122{bottom:3.466133pt;}
.y161{bottom:3.466267pt;}
.y1a5{bottom:3.466400pt;}
.y7f{bottom:3.466667pt;}
.y15a{bottom:3.466800pt;}
.ye6{bottom:3.466933pt;}
.y15f{bottom:3.467200pt;}
.y10f{bottom:3.467333pt;}
.ye3{bottom:12.318461pt;}
.y63{bottom:19.373555pt;}
.ydc{bottom:36.825394pt;}
.yd2{bottom:45.336128pt;}
.ydb{bottom:51.430394pt;}
.yd1{bottom:59.941127pt;}
.y1a7{bottom:62.087204pt;}
.y7e{bottom:62.793335pt;}
.y1a4{bottom:63.250931pt;}
.y159{bottom:64.414531pt;}
.y15e{bottom:65.578131pt;}
.yda{bottom:66.035394pt;}
.y121{bottom:66.741867pt;}
.y1a3{bottom:68.729736pt;}
.y20{bottom:68.800000pt;}
.ye5{bottom:69.069067pt;}
.y10e{bottom:70.232667pt;}
.y160{bottom:71.396403pt;}
.yd9{bottom:80.640394pt;}
.yd0{bottom:94.862994pt;}
.yd8{bottom:95.245394pt;}
.ybd{bottom:97.113139pt;}
.ybc{bottom:97.466667pt;}
.y162{bottom:102.666667pt;}
.y10d{bottom:106.800000pt;}
.ye0{bottom:107.182727pt;}
.y13e{bottom:107.200000pt;}
.yba{bottom:108.666667pt;}
.ycf{bottom:109.467993pt;}
.y30{bottom:110.533333pt;}
.y15d{bottom:112.800000pt;}
.y47{bottom:113.600000pt;}
.y60{bottom:116.133333pt;}
.ybb{bottom:118.000000pt;}
.yce{bottom:124.072993pt;}
.y10c{bottom:125.200000pt;}
.y13d{bottom:125.600000pt;}
.yb9{bottom:127.066667pt;}
.yd7{bottom:128.260860pt;}
.y15c{bottom:128.266667pt;}
.y2f{bottom:128.933333pt;}
.y46{bottom:132.000000pt;}
.y1a2{bottom:133.466667pt;}
.y5f{bottom:134.533333pt;}
.yd6{bottom:142.865860pt;}
.y10b{bottom:143.600000pt;}
.y13c{bottom:144.000000pt;}
.yb8{bottom:145.466667pt;}
.y2e{bottom:147.333333pt;}
.ydf{bottom:149.728393pt;}
.y15b{bottom:150.266667pt;}
.y45{bottom:150.400000pt;}
.ye1{bottom:151.568261pt;}
.y5e{bottom:152.933333pt;}
.y1a1{bottom:153.066667pt;}
.yd5{bottom:157.470860pt;}
.y10a{bottom:162.000000pt;}
.y13b{bottom:162.400000pt;}
.yb7{bottom:163.866667pt;}
.y1a6{bottom:164.266667pt;}
.yde{bottom:164.333393pt;}
.y17d{bottom:164.933333pt;}
.y2d{bottom:165.733333pt;}
.ycd{bottom:167.503993pt;}
.y44{bottom:168.800000pt;}
.y5d{bottom:171.333333pt;}
.y1a0{bottom:171.466667pt;}
.yd4{bottom:172.075859pt;}
.ydd{bottom:178.938393pt;}
.y17c{bottom:180.266667pt;}
.y109{bottom:180.400000pt;}
.y13a{bottom:180.800000pt;}
.yb6{bottom:182.266667pt;}
.ycc{bottom:183.632993pt;}
.y2c{bottom:184.133333pt;}
.yd3{bottom:186.680859pt;}
.y43{bottom:187.200000pt;}
.y5c{bottom:189.733333pt;}
.y19f{bottom:189.866667pt;}
.y17b{bottom:195.733333pt;}
.y108{bottom:198.800000pt;}
.y139{bottom:199.200000pt;}
.yb5{bottom:200.666667pt;}
.y2b{bottom:202.533333pt;}
.y42{bottom:205.600000pt;}
.y5b{bottom:208.133333pt;}
.y19e{bottom:208.266667pt;}
.ycb{bottom:208.396859pt;}
.y107{bottom:217.200000pt;}
.y138{bottom:217.600000pt;}
.yb4{bottom:219.066667pt;}
.y2a{bottom:220.933333pt;}
.y17a{bottom:222.133333pt;}
.y41{bottom:224.000000pt;}
.y19d{bottom:226.666667pt;}
.y106{bottom:235.600000pt;}
.y137{bottom:236.000000pt;}
.yb3{bottom:237.466667pt;}
.y29{bottom:239.333333pt;}
.y40{bottom:242.400000pt;}
.y19c{bottom:245.066667pt;}
.y179{bottom:248.933333pt;}
.y105{bottom:254.000000pt;}
.y136{bottom:254.400000pt;}
.y158{bottom:255.866667pt;}
.y1f{bottom:257.733333pt;}
.yca{bottom:262.367658pt;}
.y5a{bottom:262.800000pt;}
.y19b{bottom:263.466667pt;}
.y96{bottom:263.733333pt;}
.y177{bottom:264.266667pt;}
.y104{bottom:272.400000pt;}
.y135{bottom:272.800000pt;}
.yb2{bottom:273.733333pt;}
.y157{bottom:274.266667pt;}
.y28{bottom:276.133333pt;}
.yc9{bottom:277.734658pt;}
.y3f{bottom:279.200000pt;}
.y178{bottom:279.733333pt;}
.y19a{bottom:281.866667pt;}
.y95{bottom:282.133333pt;}
.yb1{bottom:289.200000pt;}
.y103{bottom:290.800000pt;}
.y134{bottom:291.200000pt;}
.y156{bottom:292.666667pt;}
.yc8{bottom:293.101658pt;}
.y1e{bottom:294.533333pt;}
.y199{bottom:300.266667pt;}
.y94{bottom:300.533333pt;}
.yb0{bottom:304.533333pt;}
.y102{bottom:309.200000pt;}
.y176{bottom:309.466667pt;}
.y133{bottom:309.600000pt;}
.y155{bottom:311.066667pt;}
.y1d{bottom:312.933333pt;}
.y198{bottom:318.666667pt;}
.y7b{bottom:318.933333pt;}
.yaf{bottom:320.000000pt;}
.y7d{bottom:321.066667pt;}
.y174{bottom:324.933333pt;}
.y101{bottom:327.600000pt;}
.y132{bottom:328.000000pt;}
.y1c{bottom:331.333333pt;}
.y7a{bottom:334.266667pt;}
.y3e{bottom:334.400000pt;}
.y7c{bottom:336.400000pt;}
.y197{bottom:337.066667pt;}
.y93{bottom:337.333333pt;}
.y175{bottom:340.266667pt;}
.y100{bottom:346.000000pt;}
.y131{bottom:346.400000pt;}
.y1b{bottom:349.733333pt;}
.y3d{bottom:352.800000pt;}
.yae{bottom:354.266667pt;}
.y196{bottom:355.466667pt;}
.y92{bottom:355.733333pt;}
.yff{bottom:364.400000pt;}
.y130{bottom:364.800000pt;}
.ye2{bottom:367.774057pt;}
.y1a{bottom:368.133333pt;}
.y3c{bottom:371.200000pt;}
.yad{bottom:372.666667pt;}
.yc7{bottom:372.725390pt;}
.y173{bottom:372.800000pt;}
.yc4{bottom:373.741257pt;}
.y91{bottom:374.133333pt;}
.y152{bottom:374.266667pt;}
.yfe{bottom:382.800000pt;}
.y12f{bottom:383.200000pt;}
.y19{bottom:386.533333pt;}
.yc6{bottom:388.092390pt;}
.y172{bottom:388.133333pt;}
.yc3{bottom:389.108257pt;}
.y3b{bottom:389.600000pt;}
.yac{bottom:391.066667pt;}
.y195{bottom:392.266667pt;}
.y90{bottom:392.533333pt;}
.y154{bottom:397.333333pt;}
.y120{bottom:400.666667pt;}
.yfd{bottom:401.200000pt;}
.y12e{bottom:401.600000pt;}
.yc5{bottom:403.459390pt;}
.yc2{bottom:404.475257pt;}
.y18{bottom:404.933333pt;}
.y14f{bottom:405.066667pt;}
.y3a{bottom:408.000000pt;}
.yab{bottom:409.466667pt;}
.y8f{bottom:410.933333pt;}
.y153{bottom:412.666667pt;}
.y11f{bottom:416.000000pt;}
.yfc{bottom:419.600000pt;}
.y12d{bottom:420.000000pt;}
.y151{bottom:420.400000pt;}
.y171{bottom:422.666667pt;}
.y17{bottom:423.333333pt;}
.y39{bottom:426.400000pt;}
.yaa{bottom:427.866667pt;}
.y8e{bottom:429.333333pt;}
.y11e{bottom:431.466667pt;}
.y70{bottom:434.266667pt;}
.y73{bottom:435.200000pt;}
.y150{bottom:435.866667pt;}
.yfb{bottom:438.000000pt;}
.y12c{bottom:438.400000pt;}
.y16{bottom:441.733333pt;}
.y67{bottom:444.000000pt;}
.y38{bottom:444.800000pt;}
.ya9{bottom:446.266667pt;}
.y11d{bottom:446.800000pt;}
.y194{bottom:447.466667pt;}
.y8d{bottom:447.733333pt;}
.y6f{bottom:449.600000pt;}
.y72{bottom:450.533333pt;}
.yc1{bottom:451.716256pt;}
.ybf{bottom:452.224189pt;}
.y170{bottom:455.200000pt;}
.yfa{bottom:456.400000pt;}
.y12b{bottom:456.800000pt;}
.y66{bottom:459.333333pt;}
.y15{bottom:460.133333pt;}
.y11c{bottom:462.266667pt;}
.y37{bottom:463.200000pt;}
.y6e{bottom:464.933333pt;}
.y71{bottom:465.866667pt;}
.y8c{bottom:466.133333pt;}
.y14e{bottom:466.533333pt;}
.y14a{bottom:467.733333pt;}
.yc0{bottom:467.845256pt;}
.ybe{bottom:468.226189pt;}
.ye4{bottom:470.893123pt;}
.yf9{bottom:474.800000pt;}
.y12a{bottom:475.200000pt;}
.y14{bottom:478.533333pt;}
.y36{bottom:481.600000pt;}
.y14d{bottom:481.866667pt;}
.y149{bottom:483.066667pt;}
.y193{bottom:484.266667pt;}
.y8b{bottom:484.533333pt;}
.y16f{bottom:484.666667pt;}
.yf8{bottom:493.200000pt;}
.y129{bottom:493.600000pt;}
.y11b{bottom:496.533333pt;}
.y27{bottom:496.933333pt;}
.y14c{bottom:497.733333pt;}
.y146{bottom:498.533333pt;}
.y35{bottom:500.000000pt;}
.y192{bottom:502.666667pt;}
.y8a{bottom:502.933333pt;}
.yf7{bottom:511.600000pt;}
.y128{bottom:512.000000pt;}
.y148{bottom:513.866667pt;}
.y11a{bottom:514.933333pt;}
.y14b{bottom:515.066667pt;}
.y26{bottom:515.333333pt;}
.ya8{bottom:517.066667pt;}
.y34{bottom:518.400000pt;}
.y191{bottom:521.066667pt;}
.y89{bottom:521.333333pt;}
.y147{bottom:529.333333pt;}
.y16e{bottom:529.866667pt;}
.yf6{bottom:530.000000pt;}
.y127{bottom:530.400000pt;}
.y64{bottom:530.533378pt;}
.ya7{bottom:532.400000pt;}
.y119{bottom:533.333333pt;}
.y13{bottom:533.733333pt;}
.y33{bottom:536.800000pt;}
.y190{bottom:539.466667pt;}
.y88{bottom:539.733333pt;}
.ya6{bottom:547.866667pt;}
.yf5{bottom:548.400000pt;}
.y126{bottom:548.800000pt;}
.y118{bottom:551.733333pt;}
.y25{bottom:552.133333pt;}
.y32{bottom:555.200000pt;}
.y16d{bottom:557.466667pt;}
.y18f{bottom:557.866667pt;}
.y87{bottom:558.133333pt;}
.y69{bottom:561.200000pt;}
.y6b{bottom:561.733333pt;}
.y125{bottom:567.200000pt;}
.y117{bottom:570.133333pt;}
.y12{bottom:570.533333pt;}
.y145{bottom:574.000000pt;}
.y86{bottom:576.533333pt;}
.ya5{bottom:578.666667pt;}
.y68{bottom:579.600000pt;}
.y6a{bottom:580.133333pt;}
.y62{bottom:581.066667pt;}
.yf4{bottom:584.666667pt;}
.y16c{bottom:585.200000pt;}
.y124{bottom:585.600000pt;}
.y116{bottom:588.533333pt;}
.y11{bottom:588.933333pt;}
.y141{bottom:591.333333pt;}
.ya4{bottom:594.000000pt;}
.y18e{bottom:594.666667pt;}
.y85{bottom:594.933333pt;}
.y140{bottom:598.933333pt;}
.yf3{bottom:600.000000pt;}
.y123{bottom:604.000000pt;}
.y144{bottom:606.666667pt;}
.y115{bottom:606.933333pt;}
.y10{bottom:607.333333pt;}
.ya3{bottom:609.466667pt;}
.y31{bottom:609.866667pt;}
.y16b{bottom:611.600000pt;}
.y84{bottom:613.333333pt;}
.yf2{bottom:615.466667pt;}
.y143{bottom:622.133333pt;}
.y114{bottom:625.333333pt;}
.yf{bottom:625.733333pt;}
.y16a{bottom:626.933333pt;}
.y59{bottom:629.333333pt;}
.yf1{bottom:630.800000pt;}
.y83{bottom:631.733333pt;}
.y56{bottom:634.000000pt;}
.y61{bottom:637.733333pt;}
.y142{bottom:637.866667pt;}
.ya2{bottom:640.266667pt;}
.y169{bottom:642.400000pt;}
.ye{bottom:644.133333pt;}
.y58{bottom:644.666667pt;}
.yf0{bottom:646.266667pt;}
.y55{bottom:649.333333pt;}
.y18d{bottom:649.866667pt;}
.y82{bottom:650.133333pt;}
.y6d{bottom:652.933333pt;}
.ya1{bottom:655.600000pt;}
.y57{bottom:660.000000pt;}
.yef{bottom:661.600000pt;}
.yd{bottom:662.533333pt;}
.y13f{bottom:664.000000pt;}
.y54{bottom:664.666667pt;}
.y18c{bottom:668.266667pt;}
.y168{bottom:670.666667pt;}
.ya0{bottom:671.066667pt;}
.y6c{bottom:671.333333pt;}
.yee{bottom:677.066667pt;}
.yc{bottom:680.933333pt;}
.y49{bottom:683.333333pt;}
.y79{bottom:685.333333pt;}
.y76{bottom:686.000000pt;}
.y81{bottom:686.400000pt;}
.y18b{bottom:686.666667pt;}
.y113{bottom:692.400000pt;}
.y166{bottom:694.800000pt;}
.yb{bottom:699.333333pt;}
.y78{bottom:700.666667pt;}
.y75{bottom:701.333333pt;}
.y80{bottom:701.866667pt;}
.y65{bottom:702.933333pt;}
.y51{bottom:703.455867pt;}
.y18a{bottom:705.066667pt;}
.y112{bottom:707.866667pt;}
.y4c{bottom:708.266667pt;}
.y53{bottom:708.312267pt;}
.yed{bottom:711.333333pt;}
.y52{bottom:715.660800pt;}
.y77{bottom:716.000000pt;}
.y74{bottom:716.666667pt;}
.y9f{bottom:717.200000pt;}
.ya{bottom:717.733333pt;}
.y167{bottom:717.866667pt;}
.y111{bottom:723.200000pt;}
.y189{bottom:723.466667pt;}
.y165{bottom:725.600000pt;}
.yec{bottom:729.733333pt;}
.y9e{bottom:732.666667pt;}
.y9{bottom:736.133333pt;}
.y4b{bottom:737.024267pt;}
.y110{bottom:738.666667pt;}
.y164{bottom:740.933333pt;}
.y188{bottom:741.866667pt;}
.yeb{bottom:748.133333pt;}
.y48{bottom:752.666667pt;}
.y8{bottom:754.533333pt;}
.y4a{bottom:755.066667pt;}
.y9d{bottom:764.000000pt;}
.yea{bottom:766.533333pt;}
.y24{bottom:772.933333pt;}
.y163{bottom:775.466667pt;}
.y9c{bottom:779.466667pt;}
.ye9{bottom:784.933333pt;}
.y23{bottom:791.333333pt;}
.y9b{bottom:794.800000pt;}
.ye8{bottom:803.333333pt;}
.y187{bottom:805.333333pt;}
.y22{bottom:809.733333pt;}
.y186{bottom:820.666667pt;}
.y9a{bottom:825.600000pt;}
.y7{bottom:828.133333pt;}
.y185{bottom:836.133333pt;}
.y99{bottom:841.066667pt;}
.y50{bottom:841.466667pt;}
.y4e{bottom:842.000000pt;}
.y6{bottom:846.533333pt;}
.y184{bottom:851.466667pt;}
.y98{bottom:856.400000pt;}
.y4f{bottom:857.600000pt;}
.ye7{bottom:858.000000pt;}
.y4d{bottom:858.133333pt;}
.y17f{bottom:861.066667pt;}
.y5{bottom:864.933333pt;}
.y183{bottom:866.933333pt;}
.y17e{bottom:876.533333pt;}
.y21{bottom:883.333333pt;}
.y182{bottom:900.266667pt;}
.y4{bottom:901.733333pt;}
.y97{bottom:904.266667pt;}
.y181{bottom:915.733333pt;}
.y3{bottom:920.133333pt;}
.y180{bottom:931.066667pt;}
.y2{bottom:938.533333pt;}
.y1{bottom:993.733333pt;}
.h17{height:16.013200pt;}
.hd{height:16.013333pt;}
.h10{height:27.142187pt;}
.h1c{height:30.885937pt;}
.h1b{height:30.971875pt;}
.h1a{height:32.757812pt;}
.h7{height:41.589844pt;}
.h19{height:43.593750pt;}
.h14{height:44.574023pt;}
.h6{height:46.796875pt;}
.h13{height:46.802724pt;}
.h16{height:46.802790pt;}
.hc{height:46.927083pt;}
.h12{height:49.031425pt;}
.h9{height:49.273438pt;}
.h8{height:51.476562pt;}
.ha{height:51.476637pt;}
.h4{height:51.619792pt;}
.h3{height:56.156250pt;}
.h1{height:56.312500pt;}
.h2{height:56.843750pt;}
.hf{height:57.291146pt;}
.h5{height:57.578125pt;}
.he{height:64.437500pt;}
.h18{height:77.730208pt;}
.h15{height:742.724392pt;}
.hb{height:816.000000pt;}
.h11{height:958.886861pt;}
.h0{height:1056.000000pt;}
.wc{width:19.198667pt;}
.w8{width:19.199428pt;}
.w9{width:19.199467pt;}
.w6{width:19.199505pt;}
.w3{width:19.199600pt;}
.wa{width:19.199733pt;}
.w5{width:19.199867pt;}
.w7{width:19.200000pt;}
.wb{width:28.013067pt;}
.w2{width:731.201294pt;}
.w4{width:777.202138pt;}
.w1{width:812.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:4.000000pt;}
.x3e{left:24.433329pt;}
.x54{left:25.779460pt;}
.x1{left:113.600000pt;}
.x66{left:122.000000pt;}
.x64{left:123.066667pt;}
.x7{left:128.533333pt;}
.x6f{left:132.533333pt;}
.x6a{left:134.266667pt;}
.x11{left:136.666667pt;}
.x10{left:137.600000pt;}
.x7d{left:138.666667pt;}
.x69{left:142.133333pt;}
.x3d{left:143.333333pt;}
.x6b{left:144.266667pt;}
.x7c{left:145.733333pt;}
.x5a{left:147.200000pt;}
.x4{left:148.400000pt;}
.x7e{left:150.266667pt;}
.x6e{left:151.866667pt;}
.x6d{left:153.066667pt;}
.x71{left:156.400000pt;}
.xe{left:157.371867pt;}
.x9{left:160.800000pt;}
.x5b{left:165.200000pt;}
.x5e{left:167.066667pt;}
.x55{left:170.298672pt;}
.x65{left:177.066667pt;}
.xd{left:178.133333pt;}
.x40{left:179.568469pt;}
.x6{left:194.000000pt;}
.x3f{left:196.967469pt;}
.x1f{left:203.333333pt;}
.x49{left:207.126935pt;}
.xa{left:211.200000pt;}
.x48{left:213.984535pt;}
.x32{left:217.733333pt;}
.x20{left:220.400000pt;}
.xc{left:223.200000pt;}
.x31{left:225.600000pt;}
.x36{left:227.466667pt;}
.x37{left:230.533333pt;}
.x4b{left:232.271535pt;}
.x43{left:233.161201pt;}
.x4a{left:234.176535pt;}
.x42{left:237.987201pt;}
.x2{left:240.400000pt;}
.x38{left:242.666667pt;}
.x5c{left:244.933333pt;}
.xf{left:246.400000pt;}
.x3{left:250.000000pt;}
.x4c{left:250.940335pt;}
.x27{left:256.268000pt;}
.x1e{left:257.733333pt;}
.x24{left:261.600000pt;}
.x7f{left:265.466667pt;}
.x82{left:267.466667pt;}
.x72{left:271.600000pt;}
.x6c{left:278.533333pt;}
.x2b{left:279.866667pt;}
.x81{left:281.200000pt;}
.x76{left:287.866667pt;}
.x73{left:289.333333pt;}
.x2c{left:290.533333pt;}
.x75{left:296.666667pt;}
.x78{left:306.533333pt;}
.x67{left:311.733333pt;}
.x79{left:318.000000pt;}
.x47{left:320.404934pt;}
.x8{left:322.933333pt;}
.x57{left:324.469200pt;}
.x5{left:328.000000pt;}
.x50{left:335.004067pt;}
.x51{left:337.671067pt;}
.x53{left:341.867334pt;}
.x13{left:345.733333pt;}
.x12{left:348.266667pt;}
.x28{left:364.266667pt;}
.x52{left:365.738067pt;}
.x14{left:369.333333pt;}
.x29{left:372.000000pt;}
.xb{left:374.666667pt;}
.x70{left:376.266667pt;}
.x68{left:377.200000pt;}
.x3b{left:382.266667pt;}
.x2a{left:389.333333pt;}
.x2f{left:391.733333pt;}
.x30{left:402.400000pt;}
.x1a{left:413.600000pt;}
.x19{left:414.533333pt;}
.x17{left:435.561467pt;}
.x4f{left:449.177066pt;}
.x4e{left:450.066132pt;}
.x16{left:455.066667pt;}
.x4d{left:471.401065pt;}
.x44{left:472.924932pt;}
.x5d{left:474.000000pt;}
.x23{left:483.333333pt;}
.x46{left:485.116932pt;}
.x22{left:486.533333pt;}
.x45{left:489.942932pt;}
.x7a{left:491.600000pt;}
.x3a{left:494.533333pt;}
.x15{left:498.400000pt;}
.x83{left:502.000000pt;}
.x74{left:503.333333pt;}
.x85{left:504.533333pt;}
.x2d{left:507.600000pt;}
.x80{left:513.333333pt;}
.x2e{left:518.266667pt;}
.x41{left:520.419731pt;}
.x86{left:521.466667pt;}
.x77{left:523.466667pt;}
.x84{left:526.800000pt;}
.x34{left:530.800000pt;}
.x18{left:532.133333pt;}
.x7b{left:534.933333pt;}
.x33{left:538.666667pt;}
.x39{left:543.600000pt;}
.x21{left:546.666667pt;}
.x35{left:551.733333pt;}
.x26{left:556.800000pt;}
.x5f{left:587.466667pt;}
.x56{left:602.204664pt;}
.x1c{left:638.800000pt;}
.x1b{left:641.333333pt;}
.x1d{left:663.028133pt;}
.x61{left:669.093836pt;}
.x63{left:673.748407pt;}
.x58{left:674.912120pt;}
.x62{left:676.075968pt;}
.x87{left:678.402936pt;}
.x59{left:679.566691pt;}
.x3c{left:681.423048pt;}
.x60{left:683.252035pt;}
.x88{left:685.385335pt;}
.x89{left:686.548548pt;}
}




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