
    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_41f3e24973c5c1b9329eeb76.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_5de0fb9762d1e1802c95508b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_0d775ebc92df5378566617f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_996f9d2b2f710be8dee51255.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_8620de247f1fe59a8a143ea9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.745117;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_b646c7ccc91c9b8ad7a69430.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_f00ded8f524893d65a4afa4d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_30ea84040c9f0abfe61c23f6.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.048604px;}
.lsc{letter-spacing:0.051771px;}
.lsb{letter-spacing:0.064804px;}
.ls1{letter-spacing:97.954425px;}
.ls4{letter-spacing:308.186582px;}
.ls8{letter-spacing:344.186582px;}
.ls6{letter-spacing:478.826582px;}
.ls9{letter-spacing:684.746582px;}
.ls3{letter-spacing:838.826582px;}
.ls5{letter-spacing:978.506582px;}
.ls7{letter-spacing:1077.866582px;}
.lsa{letter-spacing:1111.706582px;}
.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;}
}
.ws5{word-spacing:-27.963234px;}
.ws7{word-spacing:-26.284284px;}
.ws8{word-spacing:-24.599394px;}
.ws21{word-spacing:-23.758434px;}
.wsc{word-spacing:-23.335727px;}
.ws1b{word-spacing:-22.530208px;}
.ws1a{word-spacing:-22.465404px;}
.ws20{word-spacing:-21.077085px;}
.ws1f{word-spacing:-21.025314px;}
.ws22{word-spacing:-20.668284px;}
.ws1c{word-spacing:-0.704252px;}
.ws15{word-spacing:-0.337231px;}
.ws14{word-spacing:-0.054503px;}
.ws4{word-spacing:0.000000px;}
.ws23{word-spacing:0.118857px;}
.ws3{word-spacing:0.298763px;}
.ws2{word-spacing:1.335958px;}
.wse{word-spacing:3.545497px;}
.wsa{word-spacing:7.549993px;}
.ws9{word-spacing:14.898822px;}
.ws0{word-spacing:22.536056px;}
.ws6{word-spacing:22.546939px;}
.ws1d{word-spacing:23.484608px;}
.wsb{word-spacing:33.839356px;}
.ws1e{word-spacing:72.151437px;}
.ws1{word-spacing:88.310589px;}
.ws13{word-spacing:213.720124px;}
.ws12{word-spacing:214.099568px;}
.ws16{word-spacing:214.256126px;}
.ws10{word-spacing:216.051934px;}
.ws18{word-spacing:217.856126px;}
.ws11{word-spacing:251.701902px;}
.wsd{word-spacing:638.057408px;}
.wsf{word-spacing:818.777407px;}
.ws17{word-spacing:1065.017407px;}
.ws19{word-spacing:1105.023395px;}
._18{margin-left:-6.812768px;}
._17{margin-left:-5.717337px;}
._c{margin-left:-4.596905px;}
._a{margin-left:-2.811682px;}
._1{margin-left:-1.752382px;}
._0{width:1.761396px;}
._6{width:2.775711px;}
._7{width:3.870683px;}
._5{width:5.708951px;}
._4{width:6.780323px;}
._3{width:7.990958px;}
._16{width:9.684895px;}
._d{width:11.009041px;}
._13{width:12.082064px;}
._19{width:13.771533px;}
._9{width:14.845674px;}
._8{width:15.873242px;}
._28{width:16.922866px;}
._21{width:17.977283px;}
._20{width:19.039762px;}
._22{width:20.421793px;}
._2{width:22.098851px;}
._14{width:23.117078px;}
._15{width:24.257560px;}
._f{width:26.143458px;}
._10{width:27.668595px;}
._1c{width:29.612700px;}
._1d{width:30.790451px;}
._e{width:32.617859px;}
._39{width:33.759741px;}
._1a{width:34.912858px;}
._1b{width:36.300197px;}
._2e{width:37.953171px;}
._35{width:39.936779px;}
._36{width:41.258756px;}
._3d{width:42.818112px;}
._2b{width:43.932922px;}
._29{width:44.975223px;}
._2a{width:46.087144px;}
._47{width:47.223343px;}
._70{width:48.918791px;}
._4e{width:50.483180px;}
._3c{width:51.793519px;}
._3b{width:53.706574px;}
._2d{width:54.859525px;}
._2c{width:56.275158px;}
._1e{width:58.082542px;}
._b5{width:59.450171px;}
._b6{width:60.921067px;}
._b1{width:63.010319px;}
._49{width:64.087318px;}
._48{width:65.759584px;}
._4a{width:67.794810px;}
._30{width:69.007787px;}
._2f{width:70.083265px;}
._3a{width:71.233161px;}
._83{width:73.310389px;}
._82{width:74.506354px;}
._34{width:76.666804px;}
._53{width:78.314264px;}
._54{width:80.057224px;}
._b2{width:82.054636px;}
._65{width:83.292718px;}
._64{width:84.328576px;}
._12{width:86.705306px;}
._11{width:87.964512px;}
._26{width:89.770917px;}
._27{width:91.472965px;}
._25{width:92.798594px;}
._33{width:94.462515px;}
._32{width:95.513971px;}
._aa{width:96.835683px;}
._51{width:98.119990px;}
._4f{width:99.452064px;}
._50{width:100.522235px;}
._4b{width:102.055304px;}
._4d{width:103.505173px;}
._23{width:104.506482px;}
._24{width:105.775132px;}
._44{width:107.543580px;}
._42{width:110.322903px;}
._31{width:121.260270px;}
._3f{width:123.914056px;}
._3e{width:125.055316px;}
._40{width:126.192932px;}
._4c{width:128.166827px;}
._43{width:130.559683px;}
._b4{width:135.171239px;}
._b3{width:136.447468px;}
._57{width:139.958842px;}
._58{width:142.066315px;}
._bd{width:148.988521px;}
._bc{width:150.051978px;}
._b{width:154.634175px;}
._c3{width:182.445579px;}
._c4{width:200.290059px;}
._46{width:201.351848px;}
._37{width:202.812246px;}
._ad{width:210.333763px;}
._a9{width:214.408061px;}
._52{width:219.441621px;}
._ae{width:225.206345px;}
._45{width:229.403506px;}
._41{width:232.317941px;}
._77{width:233.512700px;}
._7e{width:234.952699px;}
._96{width:237.241659px;}
._8c{width:239.430844px;}
._6c{width:241.865129px;}
._1f{width:243.660921px;}
._7b{width:244.799380px;}
._56{width:246.670858px;}
._c5{width:248.893007px;}
._6d{width:250.941497px;}
._a5{width:252.150448px;}
._81{width:254.078235px;}
._af{width:255.109587px;}
._8b{width:256.845082px;}
._87{width:263.032699px;}
._a7{width:266.189980px;}
._b0{width:268.825433px;}
._a8{width:274.046616px;}
._99{width:277.995397px;}
._6f{width:282.164629px;}
._89{width:285.551113px;}
._8a{width:289.002519px;}
._78{width:313.341837px;}
._a6{width:319.465912px;}
._a1{width:320.878161px;}
._90{width:324.232699px;}
._38{width:328.084978px;}
._9e{width:329.705415px;}
._59{width:336.910639px;}
._7a{width:345.271749px;}
._9d{width:372.291282px;}
._a0{width:390.718161px;}
._b8{width:393.181168px;}
._73{width:409.840799px;}
._ab{width:412.053682px;}
._a2{width:414.478161px;}
._9f{width:426.805609px;}
._55{width:451.179826px;}
._6e{width:466.964532px;}
._98{width:497.278161px;}
._ac{width:501.438267px;}
._97{width:508.078161px;}
._67{width:613.941692px;}
._6b{width:616.101692px;}
._68{width:651.017407px;}
._5b{width:652.457408px;}
._61{width:655.701692px;}
._63{width:658.937407px;}
._5c{width:670.101691px;}
._6a{width:671.177408px;}
._5e{width:685.221691px;}
._91{width:687.902998px;}
._76{width:702.938601px;}
._5f{width:732.021692px;}
._5a{width:737.224344px;}
._62{width:759.017408px;}
._69{width:812.297407px;}
._a3{width:819.273381px;}
._84{width:837.935367px;}
._7c{width:845.947282px;}
._72{width:863.417408px;}
._b9{width:866.978234px;}
._74{width:883.387282px;}
._8d{width:918.137408px;}
._88{width:930.542998px;}
._b7{width:955.854614px;}
._7f{width:972.101213px;}
._60{width:975.737407px;}
._93{width:989.582999px;}
._66{width:1014.575385px;}
._5d{width:1021.817408px;}
._a4{width:1023.043167px;}
._94{width:1063.095561px;}
._9a{width:1066.622998px;}
._86{width:1093.262999px;}
._85{width:1114.839468px;}
._79{width:1143.773881px;}
._7d{width:1148.347283px;}
._c0{width:1166.134363px;}
._be{width:1207.427860px;}
._8f{width:1228.457408px;}
._9c{width:1257.422998px;}
._80{width:1286.587283px;}
._bf{width:1307.080325px;}
._ba{width:1314.999111px;}
._c2{width:1329.502603px;}
._8e{width:1335.182998px;}
._95{width:1375.502998px;}
._9b{width:1391.306655px;}
._c1{width:1410.324439px;}
._75{width:1516.821691px;}
._92{width:1610.777407px;}
._bb{width:1710.193781px;}
._71{width:1817.395604px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(68,114,196);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs5{font-size:54.004500px;}
.fs3{font-size:59.764500px;}
.fs0{font-size:66.244500px;}
.fs4{font-size:72.004500px;}
.fs8{font-size:77.764500px;}
.fs7{font-size:81.364500px;}
.fs2{font-size:84.244500px;}
.fs1{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.y10d{bottom:91.800000px;}
.y122{bottom:93.960000px;}
.ya0{bottom:94.860150px;}
.ybe{bottom:97.740150px;}
.yd9{bottom:108.540150px;}
.y8a{bottom:108.900000px;}
.y28{bottom:111.060000px;}
.yef{bottom:111.960000px;}
.y121{bottom:115.560000px;}
.y175{bottom:117.540000px;}
.y7a{bottom:125.460000px;}
.y1e5{bottom:126.540000px;}
.y10c{bottom:127.980000px;}
.y27{bottom:129.240000px;}
.y16e{bottom:135.540000px;}
.ybd{bottom:135.720150px;}
.y120{bottom:137.340000px;}
.y13f{bottom:139.320000px;}
.y174{bottom:139.320150px;}
.yd8{bottom:146.520000px;}
.ye4{bottom:146.880150px;}
.y89{bottom:147.060000px;}
.y26{bottom:147.240000px;}
.yee{bottom:148.680000px;}
.y62{bottom:152.460000px;}
.y16d{bottom:157.320000px;}
.y1e4{bottom:159.120150px;}
.y9f{bottom:159.660150px;}
.y13e{bottom:160.920150px;}
.y1d5{bottom:162.000000px;}
.y79{bottom:163.440000px;}
.y25{bottom:165.420000px;}
.ybc{bottom:173.880150px;}
.y43{bottom:179.640000px;}
.y10b{bottom:182.340000px;}
.y14f{bottom:182.700150px;}
.yd7{bottom:184.500000px;}
.yea{bottom:184.680000px;}
.ye3{bottom:184.860150px;}
.y88{bottom:185.040000px;}
.yed{bottom:186.660000px;}
.y61{bottom:190.440000px;}
.y1e3{bottom:191.700150px;}
.y9e{bottom:197.640150px;}
.y16c{bottom:200.880000px;}
.y78{bottom:201.420000px;}
.y24{bottom:201.600000px;}
.y1d4{bottom:201.960150px;}
.y10a{bottom:203.040000px;}
.y14e{bottom:204.480000px;}
.y13d{bottom:204.480150px;}
.ybb{bottom:211.860150px;}
.y42{bottom:217.620000px;}
.y11f{bottom:218.340000px;}
.y23{bottom:219.780000px;}
.y19c{bottom:221.040000px;}
.y16b{bottom:222.480000px;}
.yd6{bottom:222.660000px;}
.ye9{bottom:222.660150px;}
.ye2{bottom:222.840000px;}
.ya6{bottom:223.020000px;}
.y109{bottom:223.740000px;}
.yec{bottom:224.280000px;}
.y14d{bottom:226.080000px;}
.y13c{bottom:226.080150px;}
.y60{bottom:228.420000px;}
.y9d{bottom:235.620150px;}
.y22{bottom:238.140000px;}
.y77{bottom:239.580000px;}
.y1d3{bottom:242.100150px;}
.y108{bottom:244.440000px;}
.y13b{bottom:247.860000px;}
.yba{bottom:249.840150px;}
.y1b1{bottom:253.440150px;}
.y41{bottom:255.600000px;}
.y19b{bottom:257.400000px;}
.ye8{bottom:260.640150px;}
.y87{bottom:261.000000px;}
.ye1{bottom:261.000150px;}
.y107{bottom:265.140000px;}
.y16a{bottom:266.040150px;}
.y5f{bottom:266.400000px;}
.y13a{bottom:269.640000px;}
.y9c{bottom:273.780150px;}
.y18a{bottom:274.500000px;}
.y8c{bottom:277.380000px;}
.y76{bottom:277.560000px;}
.y19a{bottom:284.760000px;}
.y106{bottom:285.840000px;}
.y169{bottom:287.640150px;}
.yb9{bottom:287.820150px;}
.y1e2{bottom:289.620000px;}
.y1b0{bottom:289.800150px;}
.y173{bottom:291.240000px;}
.y14c{bottom:291.240150px;}
.y1c1{bottom:292.860000px;}
.y40{bottom:293.580000px;}
.y11e{bottom:297.360000px;}
.yd5{bottom:298.620000px;}
.ye0{bottom:298.980150px;}
.ya5{bottom:299.160000px;}
.y86{bottom:299.340000px;}
.y189{bottom:301.680000px;}
.y5e{bottom:304.560000px;}
.y1d2{bottom:307.080000px;}
.y9b{bottom:311.760150px;}
.y199{bottom:312.120000px;}
.y139{bottom:313.020000px;}
.y8b{bottom:315.360000px;}
.y75{bottom:315.540000px;}
.y1af{bottom:317.160150px;}
.y188{bottom:321.120000px;}
.yb8{bottom:325.980150px;}
.y1e1{bottom:329.580000px;}
.y168{bottom:331.200150px;}
.y3f{bottom:331.740000px;}
.y172{bottom:334.800000px;}
.y138{bottom:334.800150px;}
.y11d{bottom:335.160000px;}
.yd4{bottom:336.600150px;}
.ydf{bottom:336.960000px;}
.ya4{bottom:337.140000px;}
.y85{bottom:337.320000px;}
.y5d{bottom:342.540000px;}
.y1ae{bottom:344.520150px;}
.y187{bottom:345.240000px;}
.y1d1{bottom:347.040000px;}
.y9a{bottom:349.740150px;}
.y21{bottom:351.900150px;}
.y167{bottom:352.800000px;}
.y74{bottom:353.340000px;}
.y105{bottom:355.680000px;}
.y137{bottom:356.580150px;}
.y186{bottom:363.420000px;}
.yb7{bottom:363.960150px;}
.y1c0{bottom:366.840000px;}
.y1e0{bottom:369.540000px;}
.y3e{bottom:369.720000px;}
.y20{bottom:371.700150px;}
.y11c{bottom:373.320000px;}
.yd3{bottom:374.760000px;}
.yde{bottom:374.940000px;}
.ya3{bottom:375.120000px;}
.yc6{bottom:375.120150px;}
.y84{bottom:375.300000px;}
.y14b{bottom:378.180150px;}
.y5c{bottom:380.520000px;}
.y185{bottom:382.680000px;}
.y1d0{bottom:387.000000px;}
.y99{bottom:387.720150px;}
.y198{bottom:390.060000px;}
.y73{bottom:391.500000px;}
.y104{bottom:391.860000px;}
.y166{bottom:396.360000px;}
.y136{bottom:399.960150px;}
.yb6{bottom:402.120000px;}
.y1bf{bottom:403.020000px;}
.y3d{bottom:407.700000px;}
.y1df{bottom:409.500000px;}
.y11b{bottom:411.300000px;}
.y1f{bottom:411.480150px;}
.yd2{bottom:412.740000px;}
.ya2{bottom:413.100000px;}
.ydd{bottom:413.100150px;}
.y83{bottom:413.280000px;}
.y165{bottom:418.140000px;}
.y5b{bottom:418.500000px;}
.y171{bottom:421.740000px;}
.y1ad{bottom:422.280150px;}
.y184{bottom:424.980000px;}
.y98{bottom:425.880150px;}
.y197{bottom:426.240000px;}
.y1cf{bottom:426.960000px;}
.y103{bottom:428.040000px;}
.y72{bottom:429.480000px;}
.y1be{bottom:430.380000px;}
.y1e{bottom:431.460150px;}
.y1de{bottom:434.520000px;}
.y164{bottom:439.740000px;}
.yb5{bottom:440.100000px;}
.y183{bottom:442.980000px;}
.y135{bottom:443.340000px;}
.y14a{bottom:443.340150px;}
.y3c{bottom:445.680000px;}
.y11a{bottom:449.280000px;}
.ye7{bottom:450.720000px;}
.yd1{bottom:450.900000px;}
.ydc{bottom:451.080000px;}
.yc5{bottom:451.080150px;}
.y82{bottom:451.260000px;}
.y1d{bottom:451.440150px;}
.y1ac{bottom:458.640150px;}
.y1dd{bottom:459.540000px;}
.y182{bottom:461.160000px;}
.y97{bottom:463.860150px;}
.y102{bottom:464.220000px;}
.y134{bottom:465.120000px;}
.y1ce{bottom:466.920000px;}
.y71{bottom:467.460000px;}
.y1c{bottom:471.240150px;}
.yb4{bottom:478.260000px;}
.y5a{bottom:481.500000px;}
.y163{bottom:483.300150px;}
.y3b{bottom:483.660000px;}
.y1ab{bottom:486.000150px;}
.y149{bottom:486.900000px;}
.y119{bottom:487.260000px;}
.yd0{bottom:488.880000px;}
.ydb{bottom:489.060000px;}
.yeb{bottom:489.240150px;}
.ya1{bottom:489.420000px;}
.y1b{bottom:491.220150px;}
.y1cd{bottom:491.940000px;}
.y1dc{bottom:499.500000px;}
.y101{bottom:500.580000px;}
.y96{bottom:501.840150px;}
.y59{bottom:503.100000px;}
.y162{bottom:504.900150px;}
.y70{bottom:505.440000px;}
.y196{bottom:505.980000px;}
.y1bd{bottom:508.320000px;}
.y133{bottom:508.500000px;}
.y1a{bottom:511.020150px;}
.y1aa{bottom:513.360150px;}
.yb3{bottom:516.420000px;}
.y3a{bottom:522.000000px;}
.y58{bottom:524.880000px;}
.y118{bottom:525.420000px;}
.ycf{bottom:527.040000px;}
.yc4{bottom:527.220150px;}
.y81{bottom:527.400000px;}
.y132{bottom:530.280000px;}
.y19{bottom:531.000150px;}
.y1cc{bottom:531.900000px;}
.y100{bottom:536.760000px;}
.y1db{bottom:538.740000px;}
.y95{bottom:539.820150px;}
.y1a9{bottom:540.720150px;}
.y6f{bottom:543.420000px;}
.y1bc{bottom:544.680000px;}
.y57{bottom:546.660000px;}
.y161{bottom:548.460150px;}
.y18{bottom:550.980150px;}
.y131{bottom:552.060000px;}
.yb2{bottom:554.400000px;}
.y39{bottom:559.980000px;}
.y117{bottom:563.400000px;}
.yce{bottom:565.020000px;}
.ye6{bottom:565.200000px;}
.yc3{bottom:565.200150px;}
.y80{bottom:565.380000px;}
.y56{bottom:568.260000px;}
.y160{bottom:570.060000px;}
.y17{bottom:570.780150px;}
.y1cb{bottom:571.860150px;}
.y1bb{bottom:572.040000px;}
.yff{bottom:572.940000px;}
.y130{bottom:573.840000px;}
.y1da{bottom:577.260000px;}
.y94{bottom:577.980000px;}
.y6e{bottom:581.580000px;}
.y55{bottom:590.040000px;}
.y16{bottom:590.940150px;}
.y195{bottom:591.480000px;}
.yb1{bottom:592.380000px;}
.y148{bottom:595.440000px;}
.y38{bottom:597.780000px;}
.y116{bottom:601.380000px;}
.y1d9{bottom:602.280000px;}
.y7f{bottom:603.180000px;}
.yc2{bottom:603.180150px;}
.yfe{bottom:609.120000px;}
.y15{bottom:610.920150px;}
.y54{bottom:611.820000px;}
.y15f{bottom:613.620000px;}
.y93{bottom:615.960000px;}
.y12f{bottom:617.220000px;}
.y6d{bottom:619.560000px;}
.y1a8{bottom:620.460000px;}
.yb0{bottom:630.360000px;}
.y194{bottom:630.900000px;}
.y15e{bottom:635.400000px;}
.y37{bottom:635.760000px;}
.y12e{bottom:639.000000px;}
.y115{bottom:639.360000px;}
.ycd{bottom:640.980000px;}
.y7e{bottom:641.340000px;}
.yc1{bottom:641.340150px;}
.yfd{bottom:645.480000px;}
.y1ba{bottom:649.800000px;}
.y14{bottom:650.700150px;}
.y1ca{bottom:651.780000px;}
.y1d8{bottom:652.320150px;}
.y92{bottom:653.940000px;}
.y6c{bottom:657.540000px;}
.y12d{bottom:660.600000px;}
.yaf{bottom:668.340000px;}
.y13{bottom:670.680150px;}
.y36{bottom:673.920000px;}
.y1c9{bottom:676.800000px;}
.y114{bottom:677.340000px;}
.y15d{bottom:678.780000px;}
.ycc{bottom:679.140000px;}
.y53{bottom:679.320000px;}
.yc0{bottom:679.320150px;}
.yfc{bottom:681.660000px;}
.y12c{bottom:682.380000px;}
.y1b9{bottom:686.160000px;}
.y1d7{bottom:691.560000px;}
.y91{bottom:691.920000px;}
.y6b{bottom:695.520000px;}
.y15c{bottom:700.560000px;}
.y147{bottom:704.160000px;}
.y1a7{bottom:705.060000px;}
.yae{bottom:706.500000px;}
.y193{bottom:709.560000px;}
.y12{bottom:710.460150px;}
.y35{bottom:711.900000px;}
.y1b8{bottom:713.520000px;}
.y113{bottom:715.500000px;}
.y1c8{bottom:716.760000px;}
.ycb{bottom:717.120000px;}
.y52{bottom:717.300000px;}
.yda{bottom:717.300150px;}
.yfb{bottom:717.840000px;}
.y170{bottom:725.940000px;}
.y12b{bottom:725.940150px;}
.y1d6{bottom:729.540000px;}
.y90{bottom:729.900000px;}
.y11{bottom:730.440150px;}
.y6a{bottom:733.680000px;}
.y181{bottom:736.740000px;}
.y1b7{bottom:740.880000px;}
.y1a6{bottom:741.420150px;}
.y15b{bottom:743.940000px;}
.yad{bottom:744.480000px;}
.y146{bottom:747.540000px;}
.y12a{bottom:747.540150px;}
.y192{bottom:748.980000px;}
.y34{bottom:749.880000px;}
.y10{bottom:750.240150px;}
.y112{bottom:753.480000px;}
.yfa{bottom:754.020000px;}
.yca{bottom:755.100000px;}
.y51{bottom:755.280000px;}
.y1c7{bottom:756.900000px;}
.y180{bottom:764.820000px;}
.y15a{bottom:765.720150px;}
.y8f{bottom:768.060000px;}
.y1a5{bottom:768.780150px;}
.y145{bottom:769.320000px;}
.yf{bottom:770.220150px;}
.y69{bottom:771.660000px;}
.y191{bottom:776.340000px;}
.yac{bottom:782.460000px;}
.y33{bottom:787.860000px;}
.ye{bottom:790.020150px;}
.yf9{bottom:790.200000px;}
.y129{bottom:791.100150px;}
.y111{bottom:791.460000px;}
.y17f{bottom:793.080000px;}
.y50{bottom:793.440000px;}
.y1a4{bottom:796.140150px;}
.y1c6{bottom:796.860150px;}
.y190{bottom:803.700000px;}
.y8e{bottom:806.040000px;}
.y159{bottom:809.100000px;}
.y68{bottom:809.640000px;}
.yd{bottom:810.000150px;}
.y128{bottom:812.700000px;}
.y1b6{bottom:818.640000px;}
.yab{bottom:820.440000px;}
.y1a3{bottom:823.500150px;}
.y32{bottom:826.020000px;}
.yf8{bottom:826.560000px;}
.y110{bottom:829.440000px;}
.yc{bottom:829.980000px;}
.yc9{bottom:831.060000px;}
.y4f{bottom:831.420000px;}
.ybf{bottom:831.420150px;}
.y127{bottom:834.480000px;}
.y144{bottom:834.480150px;}
.y8d{bottom:844.020000px;}
.y67{bottom:847.620000px;}
.y17e{bottom:849.420000px;}
.yb{bottom:849.780000px;}
.y1a2{bottom:850.860150px;}
.y158{bottom:852.660000px;}
.y1b5{bottom:855.000000px;}
.y126{bottom:856.260000px;}
.y178{bottom:856.260150px;}
.yaa{bottom:858.600000px;}
.y1c5{bottom:862.380000px;}
.y31{bottom:864.000000px;}
.y10f{bottom:867.600000px;}
.yc8{bottom:869.220000px;}
.y4e{bottom:869.400000px;}
.ya{bottom:869.760000px;}
.y157{bottom:874.260000px;}
.y17d{bottom:877.500000px;}
.y16f{bottom:877.860000px;}
.y143{bottom:877.860150px;}
.yf7{bottom:880.920000px;}
.y18f{bottom:881.460000px;}
.y1b4{bottom:882.360000px;}
.y9{bottom:889.740000px;}
.ya9{bottom:896.580000px;}
.y125{bottom:899.640000px;}
.y177{bottom:899.640150px;}
.yf6{bottom:901.620000px;}
.y30{bottom:901.980000px;}
.y17c{bottom:905.760000px;}
.yc7{bottom:907.200000px;}
.y4d{bottom:907.380000px;}
.ye5{bottom:907.380150px;}
.y8{bottom:909.540000px;}
.y156{bottom:917.820000px;}
.y142{bottom:921.420000px;}
.y124{bottom:921.420150px;}
.yf5{bottom:922.320000px;}
.y1a1{bottom:928.620000px;}
.y7{bottom:929.520000px;}
.y66{bottom:931.680000px;}
.y17b{bottom:933.840000px;}
.ya8{bottom:934.560000px;}
.y155{bottom:939.420000px;}
.y2f{bottom:939.960000px;}
.y176{bottom:943.200000px;}
.y18e{bottom:945.180000px;}
.y4c{bottom:945.360000px;}
.y1c4{bottom:948.780000px;}
.y6{bottom:949.500000px;}
.y10e{bottom:951.480000px;}
.y17a{bottom:962.100000px;}
.y141{bottom:964.800000px;}
.y123{bottom:964.800150px;}
.y1a0{bottom:964.980000px;}
.y18d{bottom:972.540000px;}
.y65{bottom:975.060000px;}
.y2e{bottom:977.940000px;}
.y154{bottom:982.980000px;}
.y7d{bottom:983.520000px;}
.y140{bottom:986.580000px;}
.y1c3{bottom:991.980000px;}
.yf4{bottom:992.160000px;}
.y19f{bottom:992.340000px;}
.y5{bottom:1002.780000px;}
.y153{bottom:1004.760000px;}
.y4b{bottom:1008.360000px;}
.y2d{bottom:1016.100000px;}
.ya7{bottom:1018.620000px;}
.y7c{bottom:1021.500000px;}
.yf3{bottom:1028.340000px;}
.y4a{bottom:1029.960000px;}
.y1c2{bottom:1035.000000px;}
.y179{bottom:1035.540000px;}
.y1b3{bottom:1042.740000px;}
.y4{bottom:1043.820000px;}
.y152{bottom:1048.140000px;}
.y18c{bottom:1051.200000px;}
.y49{bottom:1051.740000px;}
.y2c{bottom:1054.080000px;}
.y7b{bottom:1059.480000px;}
.yf2{bottom:1064.520000px;}
.y151{bottom:1069.920000px;}
.y19e{bottom:1070.100000px;}
.y48{bottom:1073.520000px;}
.y1b2{bottom:1079.100000px;}
.y3{bottom:1087.560000px;}
.y150{bottom:1091.520000px;}
.y2b{bottom:1092.060000px;}
.y47{bottom:1095.120000px;}
.y64{bottom:1097.460000px;}
.yf1{bottom:1100.700000px;}
.y19d{bottom:1106.460000px;}
.y46{bottom:1116.900000px;}
.y2{bottom:1130.940000px;}
.y2a{bottom:1132.740000px;}
.y18b{bottom:1133.820000px;}
.y63{bottom:1135.620000px;}
.yf0{bottom:1137.060000px;}
.y45{bottom:1138.680000px;}
.y44{bottom:1173.960000px;}
.y1{bottom:1193.220000px;}
.y29{bottom:1194.120000px;}
.hd{height:44.094375px;}
.h2{height:44.928521px;}
.h9{height:54.628488px;}
.h8{height:56.291856px;}
.h6{height:60.551613px;}
.h7{height:60.552213px;}
.h5{height:62.395332px;}
.h11{height:64.586068px;}
.ha{height:65.816613px;}
.h12{height:65.817213px;}
.h13{height:67.820645px;}
.h14{height:68.643694px;}
.h16{height:73.245957px;}
.h10{height:75.565013px;}
.h15{height:76.636778px;}
.hf{height:77.004138px;}
.h4{height:77.004738px;}
.he{height:77.005338px;}
.hb{height:79.349434px;}
.hc{height:79.603488px;}
.h3{height:90.200059px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.200000px;}
.x6{left:108.000000px;}
.x15{left:116.820000px;}
.xa{left:127.440000px;}
.x4b{left:130.140000px;}
.x9{left:131.760000px;}
.xb{left:133.200000px;}
.x1f{left:136.980000px;}
.x14{left:138.240000px;}
.x40{left:149.220000px;}
.x24{left:159.300000px;}
.xc{left:160.380000px;}
.x1a{left:164.340000px;}
.x21{left:165.780000px;}
.x2{left:167.940000px;}
.x1b{left:185.760000px;}
.x3e{left:187.920000px;}
.xf{left:192.600000px;}
.xd{left:194.940000px;}
.x12{left:203.760000px;}
.x3{left:208.800000px;}
.x3d{left:211.140000px;}
.x4e{left:212.400000px;}
.x50{left:214.200000px;}
.x20{left:220.320000px;}
.x22{left:222.300000px;}
.x17{left:227.700000px;}
.x11{left:230.580000px;}
.x4d{left:238.680000px;}
.x25{left:248.940000px;}
.x2d{left:253.080000px;}
.x4a{left:255.240000px;}
.xe{left:259.020000px;}
.x1e{left:270.900000px;}
.x13{left:273.960000px;}
.x30{left:282.600000px;}
.x42{left:290.700000px;}
.x19{left:296.820000px;}
.x26{left:304.200000px;}
.x16{left:306.360000px;}
.x10{left:307.440000px;}
.x35{left:309.780000px;}
.x18{left:311.580000px;}
.x1c{left:314.460000px;}
.x43{left:323.460000px;}
.x4{left:328.860000px;}
.x46{left:347.220000px;}
.x23{left:349.740000px;}
.x4c{left:352.800000px;}
.x41{left:356.220000px;}
.x2c{left:364.140000px;}
.x44{left:370.980000px;}
.x31{left:379.440000px;}
.x5{left:386.820000px;}
.x39{left:401.940000px;}
.x2b{left:403.200000px;}
.x1d{left:404.460000px;}
.x45{left:419.760000px;}
.x3f{left:422.640000px;}
.x29{left:426.060000px;}
.x1{left:433.980000px;}
.x33{left:438.480000px;}
.x47{left:442.260000px;}
.x4f{left:451.260000px;}
.x37{left:485.460000px;}
.x34{left:487.080000px;}
.x32{left:505.980000px;}
.x27{left:512.820000px;}
.x36{left:514.800000px;}
.x49{left:518.220000px;}
.x51{left:532.440000px;}
.x2f{left:577.620000px;}
.x28{left:620.100000px;}
.x3a{left:625.500000px;}
.x3c{left:642.060000px;}
.x2e{left:672.660000px;}
.x52{left:690.840000px;}
.x2a{left:698.400000px;}
.x3b{left:710.280000px;}
.x38{left:735.480000px;}
.x48{left:754.380000px;}
.x7{left:780.300000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.043204pt;}
.lsc{letter-spacing:0.046019pt;}
.lsb{letter-spacing:0.057604pt;}
.ls1{letter-spacing:87.070600pt;}
.ls4{letter-spacing:273.943628pt;}
.ls8{letter-spacing:305.943628pt;}
.ls6{letter-spacing:425.623628pt;}
.ls9{letter-spacing:608.663628pt;}
.ls3{letter-spacing:745.623628pt;}
.ls5{letter-spacing:869.783628pt;}
.ls7{letter-spacing:958.103628pt;}
.lsa{letter-spacing:988.183628pt;}
.ws5{word-spacing:-24.856208pt;}
.ws7{word-spacing:-23.363808pt;}
.ws8{word-spacing:-21.866128pt;}
.ws21{word-spacing:-21.118608pt;}
.wsc{word-spacing:-20.742868pt;}
.ws1b{word-spacing:-20.026852pt;}
.ws1a{word-spacing:-19.969248pt;}
.ws20{word-spacing:-18.735187pt;}
.ws1f{word-spacing:-18.689168pt;}
.ws22{word-spacing:-18.371808pt;}
.ws1c{word-spacing:-0.626002pt;}
.ws15{word-spacing:-0.299761pt;}
.ws14{word-spacing:-0.048447pt;}
.ws4{word-spacing:0.000000pt;}
.ws23{word-spacing:0.105650pt;}
.ws3{word-spacing:0.265567pt;}
.ws2{word-spacing:1.187518pt;}
.wse{word-spacing:3.151553pt;}
.wsa{word-spacing:6.711105pt;}
.ws9{word-spacing:13.243398pt;}
.ws0{word-spacing:20.032049pt;}
.ws6{word-spacing:20.041723pt;}
.ws1d{word-spacing:20.875207pt;}
.wsb{word-spacing:30.079427pt;}
.ws1e{word-spacing:64.134611pt;}
.ws1{word-spacing:78.498301pt;}
.ws13{word-spacing:189.973444pt;}
.ws12{word-spacing:190.310727pt;}
.ws16{word-spacing:190.449890pt;}
.ws10{word-spacing:192.046163pt;}
.ws18{word-spacing:193.649890pt;}
.ws11{word-spacing:223.735024pt;}
.wsd{word-spacing:567.162140pt;}
.wsf{word-spacing:727.802140pt;}
.ws17{word-spacing:946.682140pt;}
.ws19{word-spacing:982.243017pt;}
._18{margin-left:-6.055794pt;}
._17{margin-left:-5.082078pt;}
._c{margin-left:-4.086137pt;}
._a{margin-left:-2.499272pt;}
._1{margin-left:-1.557673pt;}
._0{width:1.565686pt;}
._6{width:2.467298pt;}
._7{width:3.440607pt;}
._5{width:5.074623pt;}
._4{width:6.026954pt;}
._3{width:7.103074pt;}
._16{width:8.608796pt;}
._d{width:9.785814pt;}
._13{width:10.739613pt;}
._19{width:12.241362pt;}
._9{width:13.196155pt;}
._8{width:14.109549pt;}
._28{width:15.042547pt;}
._21{width:15.979807pt;}
._20{width:16.924233pt;}
._22{width:18.152705pt;}
._2{width:19.643423pt;}
._14{width:20.548514pt;}
._15{width:21.562276pt;}
._f{width:23.238629pt;}
._10{width:24.594307pt;}
._1c{width:26.322400pt;}
._1d{width:27.369289pt;}
._e{width:28.993653pt;}
._39{width:30.008659pt;}
._1a{width:31.033652pt;}
._1b{width:32.266842pt;}
._2e{width:33.736152pt;}
._35{width:35.499359pt;}
._36{width:36.674450pt;}
._3d{width:38.060544pt;}
._2b{width:39.051486pt;}
._29{width:39.977976pt;}
._2a{width:40.966351pt;}
._47{width:41.976305pt;}
._70{width:43.483370pt;}
._4e{width:44.873937pt;}
._3c{width:46.038683pt;}
._3b{width:47.739177pt;}
._2d{width:48.764023pt;}
._2c{width:50.022362pt;}
._1e{width:51.628926pt;}
._b5{width:52.844596pt;}
._b6{width:54.152059pt;}
._b1{width:56.009172pt;}
._49{width:56.966505pt;}
._48{width:58.452964pt;}
._4a{width:60.262053pt;}
._30{width:61.340255pt;}
._2f{width:62.296235pt;}
._3a{width:63.318365pt;}
._83{width:65.164790pt;}
._82{width:66.227870pt;}
._34{width:68.148270pt;}
._53{width:69.612680pt;}
._54{width:71.161977pt;}
._b2{width:72.937454pt;}
._65{width:74.037972pt;}
._64{width:74.958734pt;}
._12{width:77.071383pt;}
._11{width:78.190677pt;}
._26{width:79.796370pt;}
._27{width:81.309302pt;}
._25{width:82.487639pt;}
._33{width:83.966680pt;}
._32{width:84.901308pt;}
._aa{width:86.076163pt;}
._51{width:87.217769pt;}
._4f{width:88.401835pt;}
._50{width:89.353098pt;}
._4b{width:90.715826pt;}
._4d{width:92.004598pt;}
._23{width:92.894650pt;}
._24{width:94.022340pt;}
._44{width:95.594293pt;}
._42{width:98.064803pt;}
._31{width:107.786906pt;}
._3f{width:110.145827pt;}
._3e{width:111.160281pt;}
._40{width:112.171495pt;}
._4c{width:113.926069pt;}
._43{width:116.053052pt;}
._b4{width:120.152213pt;}
._b3{width:121.286638pt;}
._57{width:124.407859pt;}
._58{width:126.281169pt;}
._bd{width:132.434241pt;}
._bc{width:133.379536pt;}
._b{width:137.452600pt;}
._c3{width:162.173848pt;}
._c4{width:178.035608pt;}
._46{width:178.979420pt;}
._37{width:180.277552pt;}
._ad{width:186.963345pt;}
._a9{width:190.584943pt;}
._52{width:195.059219pt;}
._ae{width:200.183417pt;}
._45{width:203.914228pt;}
._41{width:206.504836pt;}
._77{width:207.566844pt;}
._7e{width:208.846844pt;}
._96{width:210.881475pt;}
._8c{width:212.827417pt;}
._6c{width:214.991226pt;}
._1f{width:216.587485pt;}
._7b{width:217.599449pt;}
._56{width:219.262985pt;}
._c5{width:221.238228pt;}
._6d{width:223.059109pt;}
._a5{width:224.133732pt;}
._81{width:225.847320pt;}
._af{width:226.764077pt;}
._8b{width:228.306740pt;}
._87{width:233.806844pt;}
._a7{width:236.613316pt;}
._b0{width:238.955940pt;}
._a8{width:243.596992pt;}
._99{width:247.107020pt;}
._6f{width:250.813004pt;}
._89{width:253.823212pt;}
._8a{width:256.891128pt;}
._78{width:278.526077pt;}
._a6{width:283.969700pt;}
._a1{width:285.225032pt;}
._90{width:288.206844pt;}
._38{width:291.631091pt;}
._9e{width:293.071480pt;}
._59{width:299.476123pt;}
._7a{width:306.908222pt;}
._9d{width:330.925584pt;}
._a0{width:347.305032pt;}
._b8{width:349.494372pt;}
._73{width:364.302932pt;}
._ab{width:366.269939pt;}
._a2{width:368.425032pt;}
._9f{width:379.382764pt;}
._55{width:401.048734pt;}
._6e{width:415.079584pt;}
._98{width:442.025032pt;}
._ac{width:445.722904pt;}
._97{width:451.625032pt;}
._67{width:545.725948pt;}
._6b{width:547.645948pt;}
._68{width:578.682140pt;}
._5b{width:579.962140pt;}
._61{width:582.845948pt;}
._63{width:585.722140pt;}
._5c{width:595.645948pt;}
._6a{width:596.602140pt;}
._5e{width:609.085948pt;}
._91{width:611.469332pt;}
._76{width:624.834312pt;}
._5f{width:650.685948pt;}
._5a{width:655.310528pt;}
._62{width:674.682140pt;}
._69{width:722.042140pt;}
._a3{width:728.243005pt;}
._84{width:744.831437pt;}
._7c{width:751.953140pt;}
._72{width:767.482140pt;}
._b9{width:770.647319pt;}
._74{width:785.233140pt;}
._8d{width:816.122140pt;}
._88{width:827.149332pt;}
._b7{width:849.648546pt;}
._7f{width:864.089967pt;}
._60{width:867.322140pt;}
._93{width:879.629332pt;}
._66{width:901.844787pt;}
._5d{width:908.282140pt;}
._a4{width:909.371704pt;}
._94{width:944.973832pt;}
._9a{width:948.109332pt;}
._86{width:971.789332pt;}
._85{width:990.968416pt;}
._79{width:1016.687894pt;}
._7d{width:1020.753140pt;}
._c0{width:1036.563878pt;}
._be{width:1073.269209pt;}
._8f{width:1091.962140pt;}
._9c{width:1117.709332pt;}
._80{width:1143.633140pt;}
._bf{width:1161.849178pt;}
._ba{width:1168.888099pt;}
._c2{width:1181.780092pt;}
._8e{width:1186.829332pt;}
._95{width:1222.669332pt;}
._9b{width:1236.717027pt;}
._c1{width:1253.621724pt;}
._75{width:1348.285948pt;}
._92{width:1431.802140pt;}
._bb{width:1520.172250pt;}
._71{width:1615.462759pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:48.004000pt;}
.fs3{font-size:53.124000pt;}
.fs0{font-size:58.884000pt;}
.fs4{font-size:64.004000pt;}
.fs8{font-size:69.124000pt;}
.fs7{font-size:72.324000pt;}
.fs2{font-size:74.884000pt;}
.fs1{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.y10d{bottom:81.600000pt;}
.y122{bottom:83.520000pt;}
.ya0{bottom:84.320133pt;}
.ybe{bottom:86.880133pt;}
.yd9{bottom:96.480133pt;}
.y8a{bottom:96.800000pt;}
.y28{bottom:98.720000pt;}
.yef{bottom:99.520000pt;}
.y121{bottom:102.720000pt;}
.y175{bottom:104.480000pt;}
.y7a{bottom:111.520000pt;}
.y1e5{bottom:112.480000pt;}
.y10c{bottom:113.760000pt;}
.y27{bottom:114.880000pt;}
.y16e{bottom:120.480000pt;}
.ybd{bottom:120.640133pt;}
.y120{bottom:122.080000pt;}
.y13f{bottom:123.840000pt;}
.y174{bottom:123.840133pt;}
.yd8{bottom:130.240000pt;}
.ye4{bottom:130.560133pt;}
.y89{bottom:130.720000pt;}
.y26{bottom:130.880000pt;}
.yee{bottom:132.160000pt;}
.y62{bottom:135.520000pt;}
.y16d{bottom:139.840000pt;}
.y1e4{bottom:141.440133pt;}
.y9f{bottom:141.920133pt;}
.y13e{bottom:143.040133pt;}
.y1d5{bottom:144.000000pt;}
.y79{bottom:145.280000pt;}
.y25{bottom:147.040000pt;}
.ybc{bottom:154.560133pt;}
.y43{bottom:159.680000pt;}
.y10b{bottom:162.080000pt;}
.y14f{bottom:162.400133pt;}
.yd7{bottom:164.000000pt;}
.yea{bottom:164.160000pt;}
.ye3{bottom:164.320133pt;}
.y88{bottom:164.480000pt;}
.yed{bottom:165.920000pt;}
.y61{bottom:169.280000pt;}
.y1e3{bottom:170.400133pt;}
.y9e{bottom:175.680133pt;}
.y16c{bottom:178.560000pt;}
.y78{bottom:179.040000pt;}
.y24{bottom:179.200000pt;}
.y1d4{bottom:179.520133pt;}
.y10a{bottom:180.480000pt;}
.y14e{bottom:181.760000pt;}
.y13d{bottom:181.760133pt;}
.ybb{bottom:188.320133pt;}
.y42{bottom:193.440000pt;}
.y11f{bottom:194.080000pt;}
.y23{bottom:195.360000pt;}
.y19c{bottom:196.480000pt;}
.y16b{bottom:197.760000pt;}
.yd6{bottom:197.920000pt;}
.ye9{bottom:197.920133pt;}
.ye2{bottom:198.080000pt;}
.ya6{bottom:198.240000pt;}
.y109{bottom:198.880000pt;}
.yec{bottom:199.360000pt;}
.y14d{bottom:200.960000pt;}
.y13c{bottom:200.960133pt;}
.y60{bottom:203.040000pt;}
.y9d{bottom:209.440133pt;}
.y22{bottom:211.680000pt;}
.y77{bottom:212.960000pt;}
.y1d3{bottom:215.200133pt;}
.y108{bottom:217.280000pt;}
.y13b{bottom:220.320000pt;}
.yba{bottom:222.080133pt;}
.y1b1{bottom:225.280133pt;}
.y41{bottom:227.200000pt;}
.y19b{bottom:228.800000pt;}
.ye8{bottom:231.680133pt;}
.y87{bottom:232.000000pt;}
.ye1{bottom:232.000133pt;}
.y107{bottom:235.680000pt;}
.y16a{bottom:236.480133pt;}
.y5f{bottom:236.800000pt;}
.y13a{bottom:239.680000pt;}
.y9c{bottom:243.360133pt;}
.y18a{bottom:244.000000pt;}
.y8c{bottom:246.560000pt;}
.y76{bottom:246.720000pt;}
.y19a{bottom:253.120000pt;}
.y106{bottom:254.080000pt;}
.y169{bottom:255.680133pt;}
.yb9{bottom:255.840133pt;}
.y1e2{bottom:257.440000pt;}
.y1b0{bottom:257.600133pt;}
.y173{bottom:258.880000pt;}
.y14c{bottom:258.880133pt;}
.y1c1{bottom:260.320000pt;}
.y40{bottom:260.960000pt;}
.y11e{bottom:264.320000pt;}
.yd5{bottom:265.440000pt;}
.ye0{bottom:265.760133pt;}
.ya5{bottom:265.920000pt;}
.y86{bottom:266.080000pt;}
.y189{bottom:268.160000pt;}
.y5e{bottom:270.720000pt;}
.y1d2{bottom:272.960000pt;}
.y9b{bottom:277.120133pt;}
.y199{bottom:277.440000pt;}
.y139{bottom:278.240000pt;}
.y8b{bottom:280.320000pt;}
.y75{bottom:280.480000pt;}
.y1af{bottom:281.920133pt;}
.y188{bottom:285.440000pt;}
.yb8{bottom:289.760133pt;}
.y1e1{bottom:292.960000pt;}
.y168{bottom:294.400133pt;}
.y3f{bottom:294.880000pt;}
.y172{bottom:297.600000pt;}
.y138{bottom:297.600133pt;}
.y11d{bottom:297.920000pt;}
.yd4{bottom:299.200133pt;}
.ydf{bottom:299.520000pt;}
.ya4{bottom:299.680000pt;}
.y85{bottom:299.840000pt;}
.y5d{bottom:304.480000pt;}
.y1ae{bottom:306.240133pt;}
.y187{bottom:306.880000pt;}
.y1d1{bottom:308.480000pt;}
.y9a{bottom:310.880133pt;}
.y21{bottom:312.800133pt;}
.y167{bottom:313.600000pt;}
.y74{bottom:314.080000pt;}
.y105{bottom:316.160000pt;}
.y137{bottom:316.960133pt;}
.y186{bottom:323.040000pt;}
.yb7{bottom:323.520133pt;}
.y1c0{bottom:326.080000pt;}
.y1e0{bottom:328.480000pt;}
.y3e{bottom:328.640000pt;}
.y20{bottom:330.400133pt;}
.y11c{bottom:331.840000pt;}
.yd3{bottom:333.120000pt;}
.yde{bottom:333.280000pt;}
.ya3{bottom:333.440000pt;}
.yc6{bottom:333.440133pt;}
.y84{bottom:333.600000pt;}
.y14b{bottom:336.160133pt;}
.y5c{bottom:338.240000pt;}
.y185{bottom:340.160000pt;}
.y1d0{bottom:344.000000pt;}
.y99{bottom:344.640133pt;}
.y198{bottom:346.720000pt;}
.y73{bottom:348.000000pt;}
.y104{bottom:348.320000pt;}
.y166{bottom:352.320000pt;}
.y136{bottom:355.520133pt;}
.yb6{bottom:357.440000pt;}
.y1bf{bottom:358.240000pt;}
.y3d{bottom:362.400000pt;}
.y1df{bottom:364.000000pt;}
.y11b{bottom:365.600000pt;}
.y1f{bottom:365.760133pt;}
.yd2{bottom:366.880000pt;}
.ya2{bottom:367.200000pt;}
.ydd{bottom:367.200133pt;}
.y83{bottom:367.360000pt;}
.y165{bottom:371.680000pt;}
.y5b{bottom:372.000000pt;}
.y171{bottom:374.880000pt;}
.y1ad{bottom:375.360133pt;}
.y184{bottom:377.760000pt;}
.y98{bottom:378.560133pt;}
.y197{bottom:378.880000pt;}
.y1cf{bottom:379.520000pt;}
.y103{bottom:380.480000pt;}
.y72{bottom:381.760000pt;}
.y1be{bottom:382.560000pt;}
.y1e{bottom:383.520133pt;}
.y1de{bottom:386.240000pt;}
.y164{bottom:390.880000pt;}
.yb5{bottom:391.200000pt;}
.y183{bottom:393.760000pt;}
.y135{bottom:394.080000pt;}
.y14a{bottom:394.080133pt;}
.y3c{bottom:396.160000pt;}
.y11a{bottom:399.360000pt;}
.ye7{bottom:400.640000pt;}
.yd1{bottom:400.800000pt;}
.ydc{bottom:400.960000pt;}
.yc5{bottom:400.960133pt;}
.y82{bottom:401.120000pt;}
.y1d{bottom:401.280133pt;}
.y1ac{bottom:407.680133pt;}
.y1dd{bottom:408.480000pt;}
.y182{bottom:409.920000pt;}
.y97{bottom:412.320133pt;}
.y102{bottom:412.640000pt;}
.y134{bottom:413.440000pt;}
.y1ce{bottom:415.040000pt;}
.y71{bottom:415.520000pt;}
.y1c{bottom:418.880133pt;}
.yb4{bottom:425.120000pt;}
.y5a{bottom:428.000000pt;}
.y163{bottom:429.600133pt;}
.y3b{bottom:429.920000pt;}
.y1ab{bottom:432.000133pt;}
.y149{bottom:432.800000pt;}
.y119{bottom:433.120000pt;}
.yd0{bottom:434.560000pt;}
.ydb{bottom:434.720000pt;}
.yeb{bottom:434.880133pt;}
.ya1{bottom:435.040000pt;}
.y1b{bottom:436.640133pt;}
.y1cd{bottom:437.280000pt;}
.y1dc{bottom:444.000000pt;}
.y101{bottom:444.960000pt;}
.y96{bottom:446.080133pt;}
.y59{bottom:447.200000pt;}
.y162{bottom:448.800133pt;}
.y70{bottom:449.280000pt;}
.y196{bottom:449.760000pt;}
.y1bd{bottom:451.840000pt;}
.y133{bottom:452.000000pt;}
.y1a{bottom:454.240133pt;}
.y1aa{bottom:456.320133pt;}
.yb3{bottom:459.040000pt;}
.y3a{bottom:464.000000pt;}
.y58{bottom:466.560000pt;}
.y118{bottom:467.040000pt;}
.ycf{bottom:468.480000pt;}
.yc4{bottom:468.640133pt;}
.y81{bottom:468.800000pt;}
.y132{bottom:471.360000pt;}
.y19{bottom:472.000133pt;}
.y1cc{bottom:472.800000pt;}
.y100{bottom:477.120000pt;}
.y1db{bottom:478.880000pt;}
.y95{bottom:479.840133pt;}
.y1a9{bottom:480.640133pt;}
.y6f{bottom:483.040000pt;}
.y1bc{bottom:484.160000pt;}
.y57{bottom:485.920000pt;}
.y161{bottom:487.520133pt;}
.y18{bottom:489.760133pt;}
.y131{bottom:490.720000pt;}
.yb2{bottom:492.800000pt;}
.y39{bottom:497.760000pt;}
.y117{bottom:500.800000pt;}
.yce{bottom:502.240000pt;}
.ye6{bottom:502.400000pt;}
.yc3{bottom:502.400133pt;}
.y80{bottom:502.560000pt;}
.y56{bottom:505.120000pt;}
.y160{bottom:506.720000pt;}
.y17{bottom:507.360133pt;}
.y1cb{bottom:508.320133pt;}
.y1bb{bottom:508.480000pt;}
.yff{bottom:509.280000pt;}
.y130{bottom:510.080000pt;}
.y1da{bottom:513.120000pt;}
.y94{bottom:513.760000pt;}
.y6e{bottom:516.960000pt;}
.y55{bottom:524.480000pt;}
.y16{bottom:525.280133pt;}
.y195{bottom:525.760000pt;}
.yb1{bottom:526.560000pt;}
.y148{bottom:529.280000pt;}
.y38{bottom:531.360000pt;}
.y116{bottom:534.560000pt;}
.y1d9{bottom:535.360000pt;}
.y7f{bottom:536.160000pt;}
.yc2{bottom:536.160133pt;}
.yfe{bottom:541.440000pt;}
.y15{bottom:543.040133pt;}
.y54{bottom:543.840000pt;}
.y15f{bottom:545.440000pt;}
.y93{bottom:547.520000pt;}
.y12f{bottom:548.640000pt;}
.y6d{bottom:550.720000pt;}
.y1a8{bottom:551.520000pt;}
.yb0{bottom:560.320000pt;}
.y194{bottom:560.800000pt;}
.y15e{bottom:564.800000pt;}
.y37{bottom:565.120000pt;}
.y12e{bottom:568.000000pt;}
.y115{bottom:568.320000pt;}
.ycd{bottom:569.760000pt;}
.y7e{bottom:570.080000pt;}
.yc1{bottom:570.080133pt;}
.yfd{bottom:573.760000pt;}
.y1ba{bottom:577.600000pt;}
.y14{bottom:578.400133pt;}
.y1ca{bottom:579.360000pt;}
.y1d8{bottom:579.840133pt;}
.y92{bottom:581.280000pt;}
.y6c{bottom:584.480000pt;}
.y12d{bottom:587.200000pt;}
.yaf{bottom:594.080000pt;}
.y13{bottom:596.160133pt;}
.y36{bottom:599.040000pt;}
.y1c9{bottom:601.600000pt;}
.y114{bottom:602.080000pt;}
.y15d{bottom:603.360000pt;}
.ycc{bottom:603.680000pt;}
.y53{bottom:603.840000pt;}
.yc0{bottom:603.840133pt;}
.yfc{bottom:605.920000pt;}
.y12c{bottom:606.560000pt;}
.y1b9{bottom:609.920000pt;}
.y1d7{bottom:614.720000pt;}
.y91{bottom:615.040000pt;}
.y6b{bottom:618.240000pt;}
.y15c{bottom:622.720000pt;}
.y147{bottom:625.920000pt;}
.y1a7{bottom:626.720000pt;}
.yae{bottom:628.000000pt;}
.y193{bottom:630.720000pt;}
.y12{bottom:631.520133pt;}
.y35{bottom:632.800000pt;}
.y1b8{bottom:634.240000pt;}
.y113{bottom:636.000000pt;}
.y1c8{bottom:637.120000pt;}
.ycb{bottom:637.440000pt;}
.y52{bottom:637.600000pt;}
.yda{bottom:637.600133pt;}
.yfb{bottom:638.080000pt;}
.y170{bottom:645.280000pt;}
.y12b{bottom:645.280133pt;}
.y1d6{bottom:648.480000pt;}
.y90{bottom:648.800000pt;}
.y11{bottom:649.280133pt;}
.y6a{bottom:652.160000pt;}
.y181{bottom:654.880000pt;}
.y1b7{bottom:658.560000pt;}
.y1a6{bottom:659.040133pt;}
.y15b{bottom:661.280000pt;}
.yad{bottom:661.760000pt;}
.y146{bottom:664.480000pt;}
.y12a{bottom:664.480133pt;}
.y192{bottom:665.760000pt;}
.y34{bottom:666.560000pt;}
.y10{bottom:666.880133pt;}
.y112{bottom:669.760000pt;}
.yfa{bottom:670.240000pt;}
.yca{bottom:671.200000pt;}
.y51{bottom:671.360000pt;}
.y1c7{bottom:672.800000pt;}
.y180{bottom:679.840000pt;}
.y15a{bottom:680.640133pt;}
.y8f{bottom:682.720000pt;}
.y1a5{bottom:683.360133pt;}
.y145{bottom:683.840000pt;}
.yf{bottom:684.640133pt;}
.y69{bottom:685.920000pt;}
.y191{bottom:690.080000pt;}
.yac{bottom:695.520000pt;}
.y33{bottom:700.320000pt;}
.ye{bottom:702.240133pt;}
.yf9{bottom:702.400000pt;}
.y129{bottom:703.200133pt;}
.y111{bottom:703.520000pt;}
.y17f{bottom:704.960000pt;}
.y50{bottom:705.280000pt;}
.y1a4{bottom:707.680133pt;}
.y1c6{bottom:708.320133pt;}
.y190{bottom:714.400000pt;}
.y8e{bottom:716.480000pt;}
.y159{bottom:719.200000pt;}
.y68{bottom:719.680000pt;}
.yd{bottom:720.000133pt;}
.y128{bottom:722.400000pt;}
.y1b6{bottom:727.680000pt;}
.yab{bottom:729.280000pt;}
.y1a3{bottom:732.000133pt;}
.y32{bottom:734.240000pt;}
.yf8{bottom:734.720000pt;}
.y110{bottom:737.280000pt;}
.yc{bottom:737.760000pt;}
.yc9{bottom:738.720000pt;}
.y4f{bottom:739.040000pt;}
.ybf{bottom:739.040133pt;}
.y127{bottom:741.760000pt;}
.y144{bottom:741.760133pt;}
.y8d{bottom:750.240000pt;}
.y67{bottom:753.440000pt;}
.y17e{bottom:755.040000pt;}
.yb{bottom:755.360000pt;}
.y1a2{bottom:756.320133pt;}
.y158{bottom:757.920000pt;}
.y1b5{bottom:760.000000pt;}
.y126{bottom:761.120000pt;}
.y178{bottom:761.120133pt;}
.yaa{bottom:763.200000pt;}
.y1c5{bottom:766.560000pt;}
.y31{bottom:768.000000pt;}
.y10f{bottom:771.200000pt;}
.yc8{bottom:772.640000pt;}
.y4e{bottom:772.800000pt;}
.ya{bottom:773.120000pt;}
.y157{bottom:777.120000pt;}
.y17d{bottom:780.000000pt;}
.y16f{bottom:780.320000pt;}
.y143{bottom:780.320133pt;}
.yf7{bottom:783.040000pt;}
.y18f{bottom:783.520000pt;}
.y1b4{bottom:784.320000pt;}
.y9{bottom:790.880000pt;}
.ya9{bottom:796.960000pt;}
.y125{bottom:799.680000pt;}
.y177{bottom:799.680133pt;}
.yf6{bottom:801.440000pt;}
.y30{bottom:801.760000pt;}
.y17c{bottom:805.120000pt;}
.yc7{bottom:806.400000pt;}
.y4d{bottom:806.560000pt;}
.ye5{bottom:806.560133pt;}
.y8{bottom:808.480000pt;}
.y156{bottom:815.840000pt;}
.y142{bottom:819.040000pt;}
.y124{bottom:819.040133pt;}
.yf5{bottom:819.840000pt;}
.y1a1{bottom:825.440000pt;}
.y7{bottom:826.240000pt;}
.y66{bottom:828.160000pt;}
.y17b{bottom:830.080000pt;}
.ya8{bottom:830.720000pt;}
.y155{bottom:835.040000pt;}
.y2f{bottom:835.520000pt;}
.y176{bottom:838.400000pt;}
.y18e{bottom:840.160000pt;}
.y4c{bottom:840.320000pt;}
.y1c4{bottom:843.360000pt;}
.y6{bottom:844.000000pt;}
.y10e{bottom:845.760000pt;}
.y17a{bottom:855.200000pt;}
.y141{bottom:857.600000pt;}
.y123{bottom:857.600133pt;}
.y1a0{bottom:857.760000pt;}
.y18d{bottom:864.480000pt;}
.y65{bottom:866.720000pt;}
.y2e{bottom:869.280000pt;}
.y154{bottom:873.760000pt;}
.y7d{bottom:874.240000pt;}
.y140{bottom:876.960000pt;}
.y1c3{bottom:881.760000pt;}
.yf4{bottom:881.920000pt;}
.y19f{bottom:882.080000pt;}
.y5{bottom:891.360000pt;}
.y153{bottom:893.120000pt;}
.y4b{bottom:896.320000pt;}
.y2d{bottom:903.200000pt;}
.ya7{bottom:905.440000pt;}
.y7c{bottom:908.000000pt;}
.yf3{bottom:914.080000pt;}
.y4a{bottom:915.520000pt;}
.y1c2{bottom:920.000000pt;}
.y179{bottom:920.480000pt;}
.y1b3{bottom:926.880000pt;}
.y4{bottom:927.840000pt;}
.y152{bottom:931.680000pt;}
.y18c{bottom:934.400000pt;}
.y49{bottom:934.880000pt;}
.y2c{bottom:936.960000pt;}
.y7b{bottom:941.760000pt;}
.yf2{bottom:946.240000pt;}
.y151{bottom:951.040000pt;}
.y19e{bottom:951.200000pt;}
.y48{bottom:954.240000pt;}
.y1b2{bottom:959.200000pt;}
.y3{bottom:966.720000pt;}
.y150{bottom:970.240000pt;}
.y2b{bottom:970.720000pt;}
.y47{bottom:973.440000pt;}
.y64{bottom:975.520000pt;}
.yf1{bottom:978.400000pt;}
.y19d{bottom:983.520000pt;}
.y46{bottom:992.800000pt;}
.y2{bottom:1005.280000pt;}
.y2a{bottom:1006.880000pt;}
.y18b{bottom:1007.840000pt;}
.y63{bottom:1009.440000pt;}
.yf0{bottom:1010.720000pt;}
.y45{bottom:1012.160000pt;}
.y44{bottom:1043.520000pt;}
.y1{bottom:1060.640000pt;}
.y29{bottom:1061.440000pt;}
.hd{height:39.195000pt;}
.h2{height:39.936463pt;}
.h9{height:48.558656pt;}
.h8{height:50.037205pt;}
.h6{height:53.823656pt;}
.h7{height:53.824190pt;}
.h5{height:55.462518pt;}
.h11{height:57.409838pt;}
.ha{height:58.503656pt;}
.h12{height:58.504190pt;}
.h13{height:60.285018pt;}
.h14{height:61.016617pt;}
.h16{height:65.107518pt;}
.h10{height:67.168900pt;}
.h15{height:68.121580pt;}
.hf{height:68.448123pt;}
.h4{height:68.448656pt;}
.he{height:68.449190pt;}
.hb{height:70.532830pt;}
.hc{height:70.758656pt;}
.h3{height:80.177830pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.400000pt;}
.x6{left:96.000000pt;}
.x15{left:103.840000pt;}
.xa{left:113.280000pt;}
.x4b{left:115.680000pt;}
.x9{left:117.120000pt;}
.xb{left:118.400000pt;}
.x1f{left:121.760000pt;}
.x14{left:122.880000pt;}
.x40{left:132.640000pt;}
.x24{left:141.600000pt;}
.xc{left:142.560000pt;}
.x1a{left:146.080000pt;}
.x21{left:147.360000pt;}
.x2{left:149.280000pt;}
.x1b{left:165.120000pt;}
.x3e{left:167.040000pt;}
.xf{left:171.200000pt;}
.xd{left:173.280000pt;}
.x12{left:181.120000pt;}
.x3{left:185.600000pt;}
.x3d{left:187.680000pt;}
.x4e{left:188.800000pt;}
.x50{left:190.400000pt;}
.x20{left:195.840000pt;}
.x22{left:197.600000pt;}
.x17{left:202.400000pt;}
.x11{left:204.960000pt;}
.x4d{left:212.160000pt;}
.x25{left:221.280000pt;}
.x2d{left:224.960000pt;}
.x4a{left:226.880000pt;}
.xe{left:230.240000pt;}
.x1e{left:240.800000pt;}
.x13{left:243.520000pt;}
.x30{left:251.200000pt;}
.x42{left:258.400000pt;}
.x19{left:263.840000pt;}
.x26{left:270.400000pt;}
.x16{left:272.320000pt;}
.x10{left:273.280000pt;}
.x35{left:275.360000pt;}
.x18{left:276.960000pt;}
.x1c{left:279.520000pt;}
.x43{left:287.520000pt;}
.x4{left:292.320000pt;}
.x46{left:308.640000pt;}
.x23{left:310.880000pt;}
.x4c{left:313.600000pt;}
.x41{left:316.640000pt;}
.x2c{left:323.680000pt;}
.x44{left:329.760000pt;}
.x31{left:337.280000pt;}
.x5{left:343.840000pt;}
.x39{left:357.280000pt;}
.x2b{left:358.400000pt;}
.x1d{left:359.520000pt;}
.x45{left:373.120000pt;}
.x3f{left:375.680000pt;}
.x29{left:378.720000pt;}
.x1{left:385.760000pt;}
.x33{left:389.760000pt;}
.x47{left:393.120000pt;}
.x4f{left:401.120000pt;}
.x37{left:431.520000pt;}
.x34{left:432.960000pt;}
.x32{left:449.760000pt;}
.x27{left:455.840000pt;}
.x36{left:457.600000pt;}
.x49{left:460.640000pt;}
.x51{left:473.280000pt;}
.x2f{left:513.440000pt;}
.x28{left:551.200000pt;}
.x3a{left:556.000000pt;}
.x3c{left:570.720000pt;}
.x2e{left:597.920000pt;}
.x52{left:614.080000pt;}
.x2a{left:620.800000pt;}
.x3b{left:631.360000pt;}
.x38{left:653.760000pt;}
.x48{left:670.560000pt;}
.x7{left:693.600000pt;}
}




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