
    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_40b57b602e5cc046d46896e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_4a68742800011f6c7c86ffb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_2dcb9c6509da2e91431b9141.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.086426;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_5f5b611abc67f789b2d8dddc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4f1ffcf3811a8fbb76b55726.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_013aca26203c1081b308c226.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_dd2fd9852f56f4f2068575c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947266;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_832424ceeb116a4569e3cc18.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.116211;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_f8f13da7ee50e9bedfa7d400.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.867727;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_3579df2e9e827db978ea7594.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_46dee194b23bf7b8317fecf3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982910;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:ffc;src:url('chunks/assets/font_1fa2702b12e23c82d3b912f4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937500;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;}
.m5{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.m2{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-42.461689px;}
.v5{vertical-align:-30.958860px;}
.v4{vertical-align:-23.077080px;}
.v3{vertical-align:-15.852318px;}
.v2{vertical-align:-13.704443px;}
.v6{vertical-align:-7.934827px;}
.v7{vertical-align:-2.165903px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:48.231132px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012492px;}
.ls8{letter-spacing:0.053649px;}
.ls6{letter-spacing:0.053898px;}
.ls9{letter-spacing:0.053901px;}
.ls3{letter-spacing:0.066267px;}
.ls0{letter-spacing:0.380741px;}
.lsd{letter-spacing:0.719950px;}
.lse{letter-spacing:0.719982px;}
.lsa{letter-spacing:5.899146px;}
.ls7{letter-spacing:5.900143px;}
.ls2{letter-spacing:10.559318px;}
.ls4{letter-spacing:38.300130px;}
.ls5{letter-spacing:38.300197px;}
.lsb{letter-spacing:129.834057px;}
.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;}
}
.ws14{word-spacing:-22.726839px;}
.ws16{word-spacing:-22.713261px;}
.ws6{word-spacing:-20.507355px;}
.ws0{word-spacing:-20.506168px;}
.ws1{word-spacing:-20.499188px;}
.ws7{word-spacing:-17.860849px;}
.wsa{word-spacing:-17.521650px;}
.ws13{word-spacing:-17.520722px;}
.ws3{word-spacing:-17.520638px;}
.ws8{word-spacing:-14.626291px;}
.ws5{word-spacing:-14.625474px;}
.ws9{word-spacing:-14.572390px;}
.ws4{word-spacing:-14.571576px;}
.wsb{word-spacing:-12.797057px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:43.168981px;}
.wsc{word-spacing:52.320241px;}
.wsd{word-spacing:68.878982px;}
.wsf{word-spacing:84.448458px;}
.ws12{word-spacing:84.462499px;}
.wse{word-spacing:84.469607px;}
.ws11{word-spacing:84.898122px;}
.ws10{word-spacing:85.625868px;}
._17{margin-left:-3.191568px;}
._0{margin-left:-1.918596px;}
._1{width:1.051241px;}
._5{width:2.099732px;}
._6{width:3.111008px;}
._7{width:4.216177px;}
._13{width:5.466175px;}
._f{width:6.711524px;}
._e{width:8.167712px;}
._c{width:9.930369px;}
._10{width:11.125879px;}
._11{width:12.909698px;}
._b{width:14.346665px;}
._d{width:15.400819px;}
._18{width:16.429405px;}
._9{width:19.517085px;}
._a{width:20.757930px;}
._8{width:21.776593px;}
._3{width:23.245506px;}
._4{width:24.823732px;}
._2{width:26.520655px;}
._16{width:27.788201px;}
._19{width:29.201428px;}
._12{width:30.253761px;}
._25{width:31.537148px;}
._14{width:32.948243px;}
._15{width:34.302374px;}
._1b{width:35.725171px;}
._1a{width:37.646101px;}
._28{width:40.017136px;}
._29{width:41.369928px;}
._26{width:43.327168px;}
._1c{width:45.860269px;}
._1d{width:47.634864px;}
._2a{width:51.241452px;}
._1f{width:77.359299px;}
._20{width:90.905160px;}
._1e{width:147.874181px;}
._22{width:155.354277px;}
._21{width:157.622434px;}
._23{width:171.702248px;}
._27{width:184.374457px;}
._24{width:189.222885px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs8{font-size:58.168442px;}
.fs4{font-size:64.476000px;}
.fsa{font-size:64.476609px;}
.fs7{font-size:64.479600px;}
.fs2{font-size:70.082550px;}
.fs9{font-size:70.082886px;}
.fs6{font-size:70.086600px;}
.fs1{font-size:81.996750px;}
.fsc{font-size:81.997331px;}
.fsb{font-size:82.001250px;}
.fs0{font-size:93.209855px;}
.fs5{font-size:93.215250px;}
.fs3{font-size:105.124055px;}
.y0{bottom:0.000000px;}
.y138{bottom:3.235246px;}
.yee{bottom:3.239667px;}
.y164{bottom:3.244088px;}
.yd4{bottom:3.419975px;}
.y100{bottom:3.423823px;}
.y149{bottom:3.772776px;}
.y161{bottom:3.774891px;}
.y159{bottom:3.774943px;}
.y126{bottom:3.779983px;}
.y12e{bottom:3.779984px;}
.y11c{bottom:3.780001px;}
.y123{bottom:3.780017px;}
.y132{bottom:3.780052px;}
.y15b{bottom:3.780217px;}
.y153{bottom:3.780269px;}
.y14b{bottom:3.781326px;}
.y14d{bottom:3.781339px;}
.y15f{bottom:3.785647px;}
.y6{bottom:3.960021px;}
.y147{bottom:3.962032px;}
.y10c{bottom:4.132099px;}
.y116{bottom:4.138521px;}
.ydd{bottom:4.139992px;}
.ye3{bottom:4.140027px;}
.y113{bottom:4.140610px;}
.y10a{bottom:4.140636px;}
.y10e{bottom:4.140662px;}
.y103{bottom:4.313141px;}
.yf8{bottom:4.319996px;}
.yd7{bottom:4.319997px;}
.yaa{bottom:4.320012px;}
.ya3{bottom:4.320030px;}
.y107{bottom:4.320996px;}
.y105{bottom:4.321020px;}
.y13b{bottom:4.500000px;}
.y144{bottom:4.504248px;}
.y3{bottom:5.220016px;}
.y29{bottom:5.220017px;}
.yd5{bottom:109.080093px;}
.y7{bottom:109.260132px;}
.y11b{bottom:126.000068px;}
.y2{bottom:126.180039px;}
.yd3{bottom:128.700096px;}
.yff{bottom:128.700282px;}
.y13a{bottom:129.960091px;}
.y143{bottom:129.961624px;}
.y146{bottom:130.508258px;}
.y5{bottom:130.680039px;}
.y11a{bottom:131.220085px;}
.y1{bottom:131.400055px;}
.yd2{bottom:132.120072px;}
.y101{bottom:132.124105px;}
.y2b{bottom:132.300041px;}
.y139{bottom:134.460091px;}
.y145{bottom:134.465872px;}
.y4{bottom:134.640060px;}
.yd0{bottom:147.240074px;}
.y28{bottom:147.420043px;}
.yd1{bottom:157.860077px;}
.y2a{bottom:158.040047px;}
.y64{bottom:170.640060px;}
.y1a9{bottom:173.880066px;}
.ycf{bottom:178.380066px;}
.y17d{bottom:182.700096px;}
.y134{bottom:182.880066px;}
.y160{bottom:182.891795px;}
.y88{bottom:183.240074px;}
.ya8{bottom:185.580093px;}
.y140{bottom:186.660049px;}
.y162{bottom:186.666686px;}
.y1c5{bottom:189.900055px;}
.y4a{bottom:190.080093px;}
.y27{bottom:195.120072px;}
.yce{bottom:196.380066px;}
.y94{bottom:197.460091px;}
.y7c{bottom:198.360077px;}
.y63{bottom:200.880066px;}
.y1a8{bottom:203.940033px;}
.yc7{bottom:207.720085px;}
.y1b3{bottom:208.800041px;}
.y133{bottom:213.120072px;}
.y15e{bottom:213.123189px;}
.y1c4{bottom:213.300041px;}
.y87{bottom:213.660049px;}
.ya7{bottom:214.920043px;}
.y13f{bottom:216.900055px;}
.y18d{bottom:220.140060px;}
.y49{bottom:220.320099px;}
.y26{bottom:225.360077px;}
.ycd{bottom:225.720085px;}
.y93{bottom:227.520058px;}
.y7b{bottom:228.600083px;}
.y62{bottom:231.120072px;}
.y1a7{bottom:234.180039px;}
.yc6{bottom:237.240074px;}
.y1b2{bottom:239.040047px;}
.y131{bottom:243.180039px;}
.y15d{bottom:243.188849px;}
.y183{bottom:243.360077px;}
.y86{bottom:243.720085px;}
.ya6{bottom:244.440033px;}
.y18c{bottom:250.380066px;}
.y48{bottom:250.560036px;}
.ycc{bottom:255.060036px;}
.y25{bottom:255.600083px;}
.y92{bottom:257.760064px;}
.y7a{bottom:258.840088px;}
.y1c3{bottom:259.020058px;}
.y61{bottom:261.360077px;}
.yea{bottom:261.540047px;}
.y1a6{bottom:264.420043px;}
.yc5{bottom:266.580093px;}
.y1b1{bottom:269.280052px;}
.y17c{bottom:273.420043px;}
.y85{bottom:273.780052px;}
.y130{bottom:277.380066px;}
.y18b{bottom:280.440033px;}
.y47{bottom:280.800041px;}
.ycb{bottom:284.580093px;}
.y24{bottom:285.840088px;}
.y91{bottom:288.000068px;}
.y118{bottom:288.006523px;}
.y79{bottom:289.080093px;}
.y60{bottom:291.600083px;}
.y1a5{bottom:294.660049px;}
.yc4{bottom:296.100083px;}
.y1b0{bottom:299.340088px;}
.ya5{bottom:303.300041px;}
.y12f{bottom:303.660049px;}
.y182{bottom:303.840088px;}
.y84{bottom:304.200096px;}
.y13e{bottom:307.440033px;}
.y18a{bottom:310.860077px;}
.y46{bottom:311.040047px;}
.yca{bottom:313.920043px;}
.y23{bottom:316.080093px;}
.y90{bottom:318.240074px;}
.y78{bottom:319.140060px;}
.y1c2{bottom:319.320099px;}
.y5f{bottom:321.840088px;}
.y1a4{bottom:324.900055px;}
.yc3{bottom:325.440033px;}
.y1af{bottom:329.760064px;}
.ya4{bottom:332.640060px;}
.y17b{bottom:333.900055px;}
.y12d{bottom:334.080093px;}
.y15c{bottom:334.086149px;}
.y83{bottom:334.260064px;}
.y12c{bottom:337.860077px;}
.y22{bottom:338.760064px;}
.y189{bottom:340.920043px;}
.y45{bottom:341.280052px;}
.yc9{bottom:343.440033px;}
.y8f{bottom:348.480079px;}
.y77{bottom:349.560036px;}
.y5e{bottom:351.900055px;}
.yc2{bottom:354.780052px;}
.y1a3{bottom:355.140060px;}
.ya2{bottom:357.660049px;}
.y1ae{bottom:359.820099px;}
.y12b{bottom:364.140060px;}
.y15a{bottom:364.146379px;}
.y181{bottom:364.320099px;}
.y82{bottom:364.680039px;}
.y21{bottom:369.540047px;}
.y44{bottom:371.340088px;}
.y8e{bottom:378.540047px;}
.y76{bottom:378.720085px;}
.y1c1{bottom:379.980079px;}
.y5d{bottom:382.320099px;}
.yc1{bottom:384.300041px;}
.y1a2{bottom:385.200096px;}
.y1ad{bottom:390.240074px;}
.ya1{bottom:391.680039px;}
.yef{bottom:392.590107px;}
.yc8{bottom:393.120072px;}
.y12a{bottom:394.380066px;}
.y158{bottom:394.388425px;}
.y81{bottom:394.740074px;}
.y20{bottom:399.600083px;}
.y188{bottom:401.400055px;}
.y43{bottom:401.760064px;}
.y75{bottom:406.440033px;}
.y119{bottom:407.892021px;}
.y8d{bottom:408.960091px;}
.y1c0{bottom:410.580093px;}
.y5c{bottom:412.380066px;}
.yc0{bottom:413.640060px;}
.y1a1{bottom:415.620072px;}
.y1ac{bottom:420.300041px;}
.yed{bottom:420.850689px;}
.ya0{bottom:422.100083px;}
.yf0{bottom:422.115490px;}
.yfd{bottom:423.735324px;}
.y17a{bottom:424.440033px;}
.y129{bottom:424.620072px;}
.y157{bottom:424.625144px;}
.y80{bottom:424.980079px;}
.y128{bottom:428.400055px;}
.y1f{bottom:430.020058px;}
.y187{bottom:431.640060px;}
.y42{bottom:431.820099px;}
.y74{bottom:434.160049px;}
.y8c{bottom:439.020058px;}
.y1bf{bottom:440.640060px;}
.yec{bottom:442.090461px;}
.y5b{bottom:442.800041px;}
.ybf{bottom:443.160049px;}
.y1a0{bottom:445.680039px;}
.yf1{bottom:451.454430px;}
.y9f{bottom:452.160049px;}
.y127{bottom:454.860077px;}
.y155{bottom:454.867242px;}
.y7f{bottom:455.220085px;}
.y156{bottom:458.647511px;}
.y1e{bottom:460.080093px;}
.y73{bottom:461.880066px;}
.y41{bottom:462.240074px;}
.y8b{bottom:469.440033px;}
.y1be{bottom:470.880066px;}
.ybe{bottom:472.500068px;}
.y5a{bottom:472.860077px;}
.y19f{bottom:476.100083px;}
.yf2{bottom:480.970886px;}
.y9e{bottom:482.580093px;}
.y179{bottom:484.920043px;}
.y125{bottom:485.100083px;}
.y152{bottom:485.109288px;}
.y7e{bottom:485.460091px;}
.y154{bottom:488.889556px;}
.y72{bottom:489.600083px;}
.y1d{bottom:490.320099px;}
.y186{bottom:492.120072px;}
.y40{bottom:492.300041px;}
.y19e{bottom:499.140060px;}
.y8a{bottom:499.500068px;}
.y1bd{bottom:501.120072px;}
.ybd{bottom:501.840088px;}
.y59{bottom:502.920043px;}
.yf3{bottom:510.487341px;}
.y9d{bottom:512.640060px;}
.y178{bottom:515.340088px;}
.y7d{bottom:515.700096px;}
.y71{bottom:517.140060px;}
.y124{bottom:519.300041px;}
.y1c{bottom:520.560036px;}
.y185{bottom:522.360077px;}
.y3f{bottom:522.540047px;}
.y19d{bottom:529.380066px;}
.ybc{bottom:531.180039px;}
.y1bc{bottom:531.360077px;}
.y58{bottom:533.340088px;}
.yf4{bottom:540.008304px;}
.y9c{bottom:542.880066px;}
.y177{bottom:545.400055px;}
.y151{bottom:545.400964px;}
.y89{bottom:545.580093px;}
.y70{bottom:545.940033px;}
.y1b{bottom:550.800041px;}
.y3e{bottom:552.780052px;}
.yeb{bottom:555.310174px;}
.y19c{bottom:559.980079px;}
.ybb{bottom:560.700096px;}
.y1bb{bottom:561.600083px;}
.y57{bottom:563.400055px;}
.yf5{bottom:569.529180px;}
.y9b{bottom:573.120072px;}
.y176{bottom:575.640060px;}
.y6f{bottom:576.000068px;}
.y1a{bottom:581.040047px;}
.y3d{bottom:583.020058px;}
.yba{bottom:590.040047px;}
.y19b{bottom:590.220085px;}
.y1ba{bottom:591.660049px;}
.y56{bottom:593.820099px;}
.yfe{bottom:596.169779px;}
.y9a{bottom:603.360077px;}
.y175{bottom:605.880066px;}
.y180{bottom:606.060036px;}
.y6e{bottom:606.420043px;}
.y19{bottom:611.280052px;}
.y3c{bottom:613.260064px;}
.yb9{bottom:619.560036px;}
.y19a{bottom:620.100083px;}
.y1b9{bottom:621.900055px;}
.y55{bottom:623.880066px;}
.y99{bottom:633.600083px;}
.y169{bottom:633.967488px;}
.y174{bottom:636.120072px;}
.y6d{bottom:636.480079px;}
.yfc{bottom:637.740074px;}
.y18{bottom:640.980079px;}
.y3b{bottom:643.500068px;}
.y135{bottom:647.467589px;}
.yb8{bottom:648.900055px;}
.y199{bottom:650.340088px;}
.y1b8{bottom:652.140060px;}
.y54{bottom:654.120072px;}
.y168{bottom:659.707308px;}
.y98{bottom:665.100083px;}
.y173{bottom:666.360077px;}
.y17f{bottom:666.540047px;}
.y6c{bottom:666.900055px;}
.y141{bottom:667.087570px;}
.ye9{bottom:668.340088px;}
.y17{bottom:671.760064px;}
.y3a{bottom:673.560036px;}
.yb7{bottom:678.420043px;}
.y198{bottom:680.400055px;}
.y1b7{bottom:682.380066px;}
.y53{bottom:684.360077px;}
.y167{bottom:685.447128px;}
.ye8{bottom:694.440067px;}
.y115{bottom:694.440423px;}
.y97{bottom:696.600083px;}
.y6b{bottom:696.960056px;}
.y117{bottom:698.578944px;}
.y16{bottom:701.820065px;}
.y197{bottom:703.800076px;}
.y39{bottom:703.980079px;}
.yb6{bottom:707.580059px;}
.y1b6{bottom:712.620072px;}
.y166{bottom:714.249099px;}
.y52{bottom:714.600083px;}
.y136{bottom:719.645611px;}
.ye7{bottom:724.680073px;}
.y112{bottom:724.682521px;}
.y96{bottom:726.660049px;}
.y17e{bottom:726.840054px;}
.y172{bottom:727.020058px;}
.y6a{bottom:727.200061px;}
.ye6{bottom:728.820065px;}
.y114{bottom:728.823131px;}
.y15{bottom:732.240074px;}
.y196{bottom:733.860077px;}
.y38{bottom:734.040081px;}
.y165{bottom:736.744831px;}
.yb5{bottom:737.100083px;}
.y1b5{bottom:742.860077px;}
.y51{bottom:743.940067px;}
.ye5{bottom:754.920078px;}
.y110{bottom:754.924566px;}
.y95{bottom:757.080059px;}
.y69{bottom:757.440067px;}
.ye4{bottom:759.060070px;}
.y111{bottom:759.065228px;}
.y14{bottom:762.300076px;}
.y163{bottom:762.484651px;}
.y195{bottom:764.100083px;}
.y37{bottom:764.460056px;}
.y137{bottom:764.650338px;}
.yb4{bottom:766.440067px;}
.y50{bottom:771.660049px;}
.y1b4{bottom:772.920078px;}
.ye2{bottom:785.160049px;}
.y10d{bottom:785.166611px;}
.y184{bottom:787.140060px;}
.y171{bottom:787.320065px;}
.y68{bottom:787.680073px;}
.y10f{bottom:789.307274px;}
.y13{bottom:792.540081px;}
.y142{bottom:793.088393px;}
.y194{bottom:794.340054px;}
.y36{bottom:794.520058px;}
.yb3{bottom:795.960056px;}
.y4f{bottom:799.200061px;}
.y12{bottom:815.760064px;}
.y170{bottom:817.560070px;}
.y67{bottom:817.920078px;}
.ye1{bottom:819.180073px;}
.y193{bottom:824.580059px;}
.y35{bottom:824.760064px;}
.yb2{bottom:825.300076px;}
.y4e{bottom:826.920078px;}
.y11{bottom:840.240074px;}
.y1ab{bottom:847.620072px;}
.y34{bottom:847.800076px;}
.y66{bottom:848.160049px;}
.ye0{bottom:849.780052px;}
.y4d{bottom:854.640060px;}
.yb1{bottom:854.820065px;}
.y10{bottom:867.240074px;}
.y14f{bottom:874.258811px;}
.y122{bottom:874.260064px;}
.ydf{bottom:875.700061px;}
.y16f{bottom:877.860077px;}
.y150{bottom:878.040150px;}
.y33{bottom:878.220051px;}
.yfb{bottom:879.840054px;}
.y4c{bottom:882.540081px;}
.yb0{bottom:883.980079px;}
.y192{bottom:884.880066px;}
.yf{bottom:894.420078px;}
.yde{bottom:906.120072px;}
.y10b{bottom:906.126335px;}
.y13d{bottom:908.100083px;}
.y32{bottom:908.280052px;}
.y65{bottom:908.640060px;}
.y4b{bottom:910.080059px;}
.yfa{bottom:910.260064px;}
.yaf{bottom:913.500068px;}
.y191{bottom:915.300076px;}
.ye{bottom:919.980079px;}
.ydc{bottom:936.180073px;}
.y109{bottom:936.180194px;}
.y121{bottom:938.160049px;}
.y16e{bottom:938.340054px;}
.y31{bottom:938.700061px;}
.ydb{bottom:940.320065px;}
.yd{bottom:943.020058px;}
.y190{bottom:945.360077px;}
.y120{bottom:968.580059px;}
.yc{bottom:968.760064px;}
.y30{bottom:969.120072px;}
.yda{bottom:970.380066px;}
.yae{bottom:972.360077px;}
.y18f{bottom:975.780069px;}
.yb{bottom:997.200061px;}
.y11f{bottom:998.640060px;}
.y16d{bottom:998.820065px;}
.y2f{bottom:999.180073px;}
.yf9{bottom:1001.700061px;}
.yad{bottom:1001.880066px;}
.y18e{bottom:1005.840070px;}
.ya{bottom:1020.420061px;}
.y11e{bottom:1025.280069px;}
.y14c{bottom:1025.280931px;}
.yf7{bottom:1026.720068px;}
.y106{bottom:1026.720322px;}
.y1aa{bottom:1028.880066px;}
.y16c{bottom:1029.060070px;}
.y14e{bottom:1029.062270px;}
.y2e{bottom:1029.420061px;}
.y108{bottom:1031.041318px;}
.yac{bottom:1031.220068px;}
.y9{bottom:1046.700061px;}
.y11d{bottom:1055.340070px;}
.y14a{bottom:1055.343354px;}
.yf6{bottom:1056.240074px;}
.y104{bottom:1056.243227px;}
.y13c{bottom:1059.120072px;}
.y16b{bottom:1059.300058px;}
.y2d{bottom:1059.660067px;}
.yd9{bottom:1060.560070px;}
.yab{bottom:1060.740074px;}
.y8{bottom:1081.440067px;}
.yd6{bottom:1085.400072px;}
.y102{bottom:1085.404098px;}
.ya9{bottom:1085.580059px;}
.y148{bottom:1085.585412px;}
.y16a{bottom:1089.540064px;}
.yd8{bottom:1089.720068px;}
.y2c{bottom:1089.900072px;}
.h45{height:16.921704px;}
.h46{height:16.921747px;}
.h20{height:17.099177px;}
.h36{height:17.099220px;}
.h25{height:17.817310px;}
.h18{height:17.819962px;}
.h27{height:19.432711px;}
.h42{height:19.435982px;}
.h3e{height:19.437052px;}
.h3f{height:19.437065px;}
.h33{height:19.439964px;}
.h35{height:19.439965px;}
.h13{height:19.439999px;}
.h34{height:19.440033px;}
.h10{height:19.440034px;}
.h43{height:19.441360px;}
.h44{height:19.446634px;}
.h29{height:19.613745px;}
.h21{height:19.619986px;}
.h22{height:19.620002px;}
.h2a{height:19.621599px;}
.h2d{height:19.796375px;}
.h1d{height:19.799973px;}
.h1b{height:19.800007px;}
.h2f{height:19.804886px;}
.h2b{height:19.804912px;}
.h30{height:19.804938px;}
.h32{height:20.160015px;}
.h40{height:20.164236px;}
.h3c{height:20.516013px;}
.h5{height:20.520057px;}
.h38{height:23.039978px;}
.h3a{height:23.040406px;}
.h14{height:27.179970px;}
.hd{height:27.180039px;}
.h3{height:27.360008px;}
.h31{height:27.360009px;}
.he{height:47.129186px;}
.h26{height:47.129631px;}
.h17{height:47.131817px;}
.h1f{height:50.613361px;}
.h47{height:51.466873px;}
.h12{height:51.883031px;}
.h28{height:51.883521px;}
.h19{height:51.885928px;}
.hc{height:52.151273px;}
.h41{height:52.151523px;}
.h1c{height:52.154286px;}
.h11{height:53.173811px;}
.h2e{height:53.417669px;}
.h1e{height:53.420499px;}
.hf{height:57.801727px;}
.h4{height:59.936101px;}
.h3b{height:59.936525px;}
.h37{height:59.939390px;}
.h6{height:60.980031px;}
.h3d{height:60.980324px;}
.h16{height:60.983555px;}
.h24{height:61.527846px;}
.hb{height:62.246171px;}
.h23{height:62.249768px;}
.h8{height:62.827911px;}
.h2c{height:62.828212px;}
.h1a{height:62.831542px;}
.h9{height:71.045206px;}
.ha{height:73.508805px;}
.h2{height:81.831698px;}
.h15{height:81.836435px;}
.h7{height:93.369461px;}
.h39{height:98.844493px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w43{width:0.175134px;}
.w15{width:0.899985px;}
.w26{width:1.980011px;}
.w31{width:1.988796px;}
.w2c{width:4.323480px;}
.w27{width:4.860009px;}
.w1b{width:5.403735px;}
.w10{width:6.299990px;}
.w2{width:6.300007px;}
.w36{width:6.838093px;}
.w44{width:7.912579px;}
.w3{width:7.919975px;}
.w41{width:8.279559px;}
.w14{width:9.539996px;}
.wb{width:9.540012px;}
.wd{width:9.719948px;}
.w6{width:9.720000px;}
.w8{width:9.720016px;}
.w42{width:12.419327px;}
.we{width:12.419975px;}
.w9{width:12.420009px;}
.w1c{width:15.120003px;}
.w25{width:16.559967px;}
.w2f{width:17.642914px;}
.wf{width:18.360008px;}
.w28{width:18.902379px;}
.w12{width:20.340002px;}
.w1e{width:20.340019px;}
.w37{width:33.840020px;}
.w1d{width:36.539979px;}
.w40{width:38.519990px;}
.w13{width:40.500000px;}
.w4{width:41.579999px;}
.w46{width:43.021936px;}
.w4b{width:44.456575px;}
.w4f{width:47.695749px;}
.wa{width:47.879998px;}
.w5{width:48.420000px;}
.w3e{width:48.960022px;}
.w4d{width:49.137847px;}
.w30{width:49.683504px;}
.w45{width:54.543293px;}
.w48{width:58.146746px;}
.w4c{width:60.834355px;}
.w4a{width:62.284832px;}
.w19{width:63.539978px;}
.w4e{width:64.259901px;}
.w3c{width:64.260029px;}
.w11{width:65.339984px;}
.w32{width:65.524691px;}
.w47{width:69.128144px;}
.w33{width:91.979976px;}
.w39{width:110.159981px;}
.w34{width:110.879980px;}
.w7{width:111.959988px;}
.w2b{width:114.303655px;}
.w2a{width:114.480706px;}
.w1a{width:120.779983px;}
.w3f{width:127.800007px;}
.w21{width:136.080025px;}
.w1f{width:136.259995px;}
.w18{width:138.239988px;}
.w3b{width:144.540012px;}
.w49{width:145.270641px;}
.w2e{width:145.447112px;}
.w2d{width:145.628856px;}
.w29{width:147.061614px;}
.w35{width:152.999982px;}
.w3a{width:169.740006px;}
.w22{width:172.439999px;}
.w3d{width:183.240006px;}
.w17{width:189.899985px;}
.w16{width:190.079981px;}
.w38{width:198.720017px;}
.wc{width:211.139991px;}
.w23{width:269.639992px;}
.w24{width:298.440034px;}
.w20{width:314.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x40{left:-503.999262px;}
.x63{left:-467.276332px;}
.x5a{left:-452.332249px;}
.x3e{left:-435.052889px;}
.x62{left:-424.976113px;}
.x5d{left:-406.080021px;}
.x39{left:-314.995528px;}
.x27{left:-189.899985px;}
.x3a{left:-172.432228px;}
.x50{left:-153.179987px;}
.x5b{left:-144.537190px;}
.x2b{left:-138.239988px;}
.x37{left:-136.255413px;}
.x30{left:-120.959988px;}
.x4f{left:-110.879980px;}
.x4e{left:-91.979976px;}
.x24{left:-65.339984px;}
.x2d{left:-63.539978px;}
.x64{left:-49.132842px;}
.x65{left:-38.515036px;}
.x35{left:-36.717442px;}
.x59{left:-33.840767px;}
.x56{left:-18.902379px;}
.x3b{left:-15.830537px;}
.x57{left:-6.838093px;}
.x32{left:-5.403735px;}
.x0{left:0.000000px;}
.x5{left:124.200002px;}
.xb{left:128.340002px;}
.x23{left:133.921470px;}
.x1{left:135.360000px;}
.x22{left:142.023497px;}
.xd{left:150.479994px;}
.x21{left:158.042956px;}
.x46{left:161.280001px;}
.x12{left:162.719999px;}
.x1a{left:171.000000px;}
.xc{left:172.620002px;}
.x9{left:175.860008px;}
.x2{left:176.939999px;}
.x1e{left:183.421280px;}
.xa{left:192.780001px;}
.x45{left:203.400003px;}
.x7{left:210.599997px;}
.x1b{left:217.439999px;}
.x44{left:222.300007px;}
.x13{left:224.639992px;}
.x1f{left:228.064132px;}
.x19{left:248.939999px;}
.x1d{left:250.740006px;}
.x8{left:276.479994px;}
.x48{left:283.322718px;}
.x47{left:295.379918px;}
.x49{left:307.444204px;}
.x20{left:308.878562px;}
.x1c{left:313.379998px;}
.x2e{left:316.079990px;}
.x25{left:329.399987px;}
.x31{left:334.439999px;}
.x58{left:338.041635px;}
.x33{left:349.381646px;}
.x51{left:378.360008px;}
.xe{left:439.379998px;}
.x54{left:441.899987px;}
.x6{left:446.759994px;}
.x28{left:450.180005px;}
.x29{left:455.939999px;}
.x15{left:460.079990px;}
.x10{left:465.660015px;}
.x17{left:477.899987px;}
.x4d{left:483.839985px;}
.x16{left:486.360008px;}
.x11{left:491.939999px;}
.x52{left:497.160015px;}
.x18{left:510.120002px;}
.x4b{left:513.000000px;}
.x4c{left:518.220017px;}
.x3{left:549.899987px;}
.xf{left:551.339985px;}
.x53{left:579.419975px;}
.x2a{left:583.740006px;}
.x55{left:589.860008px;}
.x26{left:591.840019px;}
.x4a{left:594.539978px;}
.x2c{left:611.820030px;}
.x2f{left:623.519989px;}
.x34{left:628.377340px;}
.x3f{left:630.365248px;}
.x38{left:632.518821px;}
.x43{left:640.615476px;}
.x3c{left:645.655774px;}
.x14{left:650.340019px;}
.x5e{left:671.216645px;}
.x3d{left:677.883538px;}
.x5c{left:682.919746px;}
.x61{left:686.341402px;}
.x66{left:690.479488px;}
.x41{left:693.901144px;}
.x60{left:697.322800px;}
.x5f{left:711.004099px;}
.x42{left:722.707200px;}
.x4{left:769.320030px;}
.x36{left:775.438954px;}
@media print{
.v1{vertical-align:-37.743723pt;}
.v5{vertical-align:-27.518986pt;}
.v4{vertical-align:-20.512960pt;}
.v3{vertical-align:-14.090949pt;}
.v2{vertical-align:-12.181727pt;}
.v6{vertical-align:-7.053179pt;}
.v7{vertical-align:-1.925247pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:42.872117pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011104pt;}
.ls8{letter-spacing:0.047688pt;}
.ls6{letter-spacing:0.047909pt;}
.ls9{letter-spacing:0.047912pt;}
.ls3{letter-spacing:0.058904pt;}
.ls0{letter-spacing:0.338436pt;}
.lsd{letter-spacing:0.639956pt;}
.lse{letter-spacing:0.639984pt;}
.lsa{letter-spacing:5.243686pt;}
.ls7{letter-spacing:5.244572pt;}
.ls2{letter-spacing:9.386060pt;}
.ls4{letter-spacing:34.044560pt;}
.ls5{letter-spacing:34.044620pt;}
.lsb{letter-spacing:115.408051pt;}
.ws14{word-spacing:-20.201634pt;}
.ws16{word-spacing:-20.189565pt;}
.ws6{word-spacing:-18.228760pt;}
.ws0{word-spacing:-18.227705pt;}
.ws1{word-spacing:-18.221500pt;}
.ws7{word-spacing:-15.876310pt;}
.wsa{word-spacing:-15.574800pt;}
.ws13{word-spacing:-15.573975pt;}
.ws3{word-spacing:-15.573900pt;}
.ws8{word-spacing:-13.001147pt;}
.ws5{word-spacing:-13.000421pt;}
.ws9{word-spacing:-12.953235pt;}
.ws4{word-spacing:-12.952512pt;}
.wsb{word-spacing:-11.375162pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:38.372427pt;}
.wsc{word-spacing:46.506881pt;}
.wsd{word-spacing:61.225762pt;}
.wsf{word-spacing:75.065296pt;}
.ws12{word-spacing:75.077777pt;}
.wse{word-spacing:75.084095pt;}
.ws11{word-spacing:75.464997pt;}
.ws10{word-spacing:76.111883pt;}
._17{margin-left:-2.836950pt;}
._0{margin-left:-1.705418pt;}
._1{width:0.934436pt;}
._5{width:1.866428pt;}
._6{width:2.765341pt;}
._7{width:3.747713pt;}
._13{width:4.858822pt;}
._f{width:5.965800pt;}
._e{width:7.260188pt;}
._c{width:8.826994pt;}
._10{width:9.889670pt;}
._11{width:11.475287pt;}
._b{width:12.752591pt;}
._d{width:13.689617pt;}
._18{width:14.603915pt;}
._9{width:17.348520pt;}
._a{width:18.451494pt;}
._8{width:19.356972pt;}
._3{width:20.662672pt;}
._4{width:22.065540pt;}
._2{width:23.573915pt;}
._16{width:24.700624pt;}
._19{width:25.956824pt;}
._12{width:26.892232pt;}
._25{width:28.033020pt;}
._14{width:29.287327pt;}
._15{width:30.490999pt;}
._1b{width:31.755708pt;}
._1a{width:33.463201pt;}
._28{width:35.570788pt;}
._29{width:36.773270pt;}
._26{width:38.513038pt;}
._1c{width:40.764683pt;}
._1d{width:42.342102pt;}
._2a{width:45.547958pt;}
._1f{width:68.763821pt;}
._20{width:80.804587pt;}
._1e{width:131.443716pt;}
._22{width:138.092691pt;}
._21{width:140.108830pt;}
._23{width:152.624220pt;}
._27{width:163.888406pt;}
._24{width:168.198120pt;}
.fs8{font-size:51.705281pt;}
.fs4{font-size:57.312000pt;}
.fsa{font-size:57.312541pt;}
.fs7{font-size:57.315200pt;}
.fs2{font-size:62.295600pt;}
.fs9{font-size:62.295899pt;}
.fs6{font-size:62.299200pt;}
.fs1{font-size:72.886000pt;}
.fsc{font-size:72.886516pt;}
.fsb{font-size:72.890000pt;}
.fs0{font-size:82.853204pt;}
.fs5{font-size:82.858000pt;}
.fs3{font-size:93.443604pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:2.875775pt;}
.yee{bottom:2.879704pt;}
.y164{bottom:2.883633pt;}
.yd4{bottom:3.039978pt;}
.y100{bottom:3.043398pt;}
.y149{bottom:3.353578pt;}
.y161{bottom:3.355458pt;}
.y159{bottom:3.355505pt;}
.y126{bottom:3.359985pt;}
.y12e{bottom:3.359986pt;}
.y11c{bottom:3.360001pt;}
.y123{bottom:3.360015pt;}
.y132{bottom:3.360046pt;}
.y15b{bottom:3.360192pt;}
.y153{bottom:3.360239pt;}
.y14b{bottom:3.361179pt;}
.y14d{bottom:3.361190pt;}
.y15f{bottom:3.365020pt;}
.y6{bottom:3.520019pt;}
.y147{bottom:3.521806pt;}
.y10c{bottom:3.672977pt;}
.y116{bottom:3.678686pt;}
.ydd{bottom:3.679993pt;}
.ye3{bottom:3.680024pt;}
.y113{bottom:3.680542pt;}
.y10a{bottom:3.680566pt;}
.y10e{bottom:3.680589pt;}
.y103{bottom:3.833903pt;}
.yf8{bottom:3.839996pt;}
.yd7{bottom:3.839997pt;}
.yaa{bottom:3.840011pt;}
.ya3{bottom:3.840027pt;}
.y107{bottom:3.840885pt;}
.y105{bottom:3.840906pt;}
.y13b{bottom:4.000000pt;}
.y144{bottom:4.003776pt;}
.y3{bottom:4.640014pt;}
.y29{bottom:4.640015pt;}
.yd5{bottom:96.960083pt;}
.y7{bottom:97.120118pt;}
.y11b{bottom:112.000061pt;}
.y2{bottom:112.160035pt;}
.yd3{bottom:114.400086pt;}
.yff{bottom:114.400251pt;}
.y13a{bottom:115.520081pt;}
.y143{bottom:115.521444pt;}
.y146{bottom:116.007340pt;}
.y5{bottom:116.160035pt;}
.y11a{bottom:116.640076pt;}
.y1{bottom:116.800049pt;}
.yd2{bottom:117.440064pt;}
.y101{bottom:117.443649pt;}
.y2b{bottom:117.600037pt;}
.y139{bottom:119.520081pt;}
.y145{bottom:119.525220pt;}
.y4{bottom:119.680054pt;}
.yd0{bottom:130.880066pt;}
.y28{bottom:131.040039pt;}
.yd1{bottom:140.320069pt;}
.y2a{bottom:140.480042pt;}
.y64{bottom:151.680054pt;}
.y1a9{bottom:154.560059pt;}
.ycf{bottom:158.560059pt;}
.y17d{bottom:162.400086pt;}
.y134{bottom:162.560059pt;}
.y160{bottom:162.570485pt;}
.y88{bottom:162.880066pt;}
.ya8{bottom:164.960083pt;}
.y140{bottom:165.920044pt;}
.y162{bottom:165.925943pt;}
.y1c5{bottom:168.800049pt;}
.y4a{bottom:168.960083pt;}
.y27{bottom:173.440064pt;}
.yce{bottom:174.560059pt;}
.y94{bottom:175.520081pt;}
.y7c{bottom:176.320069pt;}
.y63{bottom:178.560059pt;}
.y1a8{bottom:181.280030pt;}
.yc7{bottom:184.640076pt;}
.y1b3{bottom:185.600037pt;}
.y133{bottom:189.440064pt;}
.y15e{bottom:189.442835pt;}
.y1c4{bottom:189.600037pt;}
.y87{bottom:189.920044pt;}
.ya7{bottom:191.040039pt;}
.y13f{bottom:192.800049pt;}
.y18d{bottom:195.680054pt;}
.y49{bottom:195.840088pt;}
.y26{bottom:200.320069pt;}
.ycd{bottom:200.640076pt;}
.y93{bottom:202.240052pt;}
.y7b{bottom:203.200074pt;}
.y62{bottom:205.440064pt;}
.y1a7{bottom:208.160035pt;}
.yc6{bottom:210.880066pt;}
.y1b2{bottom:212.480042pt;}
.y131{bottom:216.160035pt;}
.y15d{bottom:216.167866pt;}
.y183{bottom:216.320069pt;}
.y86{bottom:216.640076pt;}
.ya6{bottom:217.280030pt;}
.y18c{bottom:222.560059pt;}
.y48{bottom:222.720032pt;}
.ycc{bottom:226.720032pt;}
.y25{bottom:227.200074pt;}
.y92{bottom:229.120057pt;}
.y7a{bottom:230.080079pt;}
.y1c3{bottom:230.240052pt;}
.y61{bottom:232.320069pt;}
.yea{bottom:232.480042pt;}
.y1a6{bottom:235.040039pt;}
.yc5{bottom:236.960083pt;}
.y1b1{bottom:239.360047pt;}
.y17c{bottom:243.040039pt;}
.y85{bottom:243.360047pt;}
.y130{bottom:246.560059pt;}
.y18b{bottom:249.280030pt;}
.y47{bottom:249.600037pt;}
.ycb{bottom:252.960083pt;}
.y24{bottom:254.080079pt;}
.y91{bottom:256.000061pt;}
.y118{bottom:256.005799pt;}
.y79{bottom:256.960083pt;}
.y60{bottom:259.200074pt;}
.y1a5{bottom:261.920044pt;}
.yc4{bottom:263.200074pt;}
.y1b0{bottom:266.080079pt;}
.ya5{bottom:269.600037pt;}
.y12f{bottom:269.920044pt;}
.y182{bottom:270.080079pt;}
.y84{bottom:270.400086pt;}
.y13e{bottom:273.280030pt;}
.y18a{bottom:276.320069pt;}
.y46{bottom:276.480042pt;}
.yca{bottom:279.040039pt;}
.y23{bottom:280.960083pt;}
.y90{bottom:282.880066pt;}
.y78{bottom:283.680054pt;}
.y1c2{bottom:283.840088pt;}
.y5f{bottom:286.080079pt;}
.y1a4{bottom:288.800049pt;}
.yc3{bottom:289.280030pt;}
.y1af{bottom:293.120057pt;}
.ya4{bottom:295.680054pt;}
.y17b{bottom:296.800049pt;}
.y12d{bottom:296.960083pt;}
.y15c{bottom:296.965466pt;}
.y83{bottom:297.120057pt;}
.y12c{bottom:300.320069pt;}
.y22{bottom:301.120057pt;}
.y189{bottom:303.040039pt;}
.y45{bottom:303.360047pt;}
.yc9{bottom:305.280030pt;}
.y8f{bottom:309.760071pt;}
.y77{bottom:310.720032pt;}
.y5e{bottom:312.800049pt;}
.yc2{bottom:315.360047pt;}
.y1a3{bottom:315.680054pt;}
.ya2{bottom:317.920044pt;}
.y1ae{bottom:319.840088pt;}
.y12b{bottom:323.680054pt;}
.y15a{bottom:323.685671pt;}
.y181{bottom:323.840088pt;}
.y82{bottom:324.160035pt;}
.y21{bottom:328.480042pt;}
.y44{bottom:330.080079pt;}
.y8e{bottom:336.480042pt;}
.y76{bottom:336.640076pt;}
.y1c1{bottom:337.760071pt;}
.y5d{bottom:339.840088pt;}
.yc1{bottom:341.600037pt;}
.y1a2{bottom:342.400086pt;}
.y1ad{bottom:346.880066pt;}
.ya1{bottom:348.160035pt;}
.yef{bottom:348.968984pt;}
.yc8{bottom:349.440064pt;}
.y12a{bottom:350.560059pt;}
.y158{bottom:350.567489pt;}
.y81{bottom:350.880066pt;}
.y20{bottom:355.200074pt;}
.y188{bottom:356.800049pt;}
.y43{bottom:357.120057pt;}
.y75{bottom:361.280030pt;}
.y119{bottom:362.570685pt;}
.y8d{bottom:363.520081pt;}
.y1c0{bottom:364.960083pt;}
.y5c{bottom:366.560059pt;}
.yc0{bottom:367.680054pt;}
.y1a1{bottom:369.440064pt;}
.y1ac{bottom:373.600037pt;}
.yed{bottom:374.089501pt;}
.ya0{bottom:375.200074pt;}
.yf0{bottom:375.213769pt;}
.yfd{bottom:376.653621pt;}
.y17a{bottom:377.280030pt;}
.y129{bottom:377.440064pt;}
.y157{bottom:377.444573pt;}
.y80{bottom:377.760071pt;}
.y128{bottom:380.800049pt;}
.y1f{bottom:382.240052pt;}
.y187{bottom:383.680054pt;}
.y42{bottom:383.840088pt;}
.y74{bottom:385.920044pt;}
.y8c{bottom:390.240052pt;}
.y1bf{bottom:391.680054pt;}
.yec{bottom:392.969299pt;}
.y5b{bottom:393.600037pt;}
.ybf{bottom:393.920044pt;}
.y1a0{bottom:396.160035pt;}
.yf1{bottom:401.292827pt;}
.y9f{bottom:401.920044pt;}
.y127{bottom:404.320069pt;}
.y155{bottom:404.326438pt;}
.y7f{bottom:404.640076pt;}
.y156{bottom:407.686676pt;}
.y1e{bottom:408.960083pt;}
.y73{bottom:410.560059pt;}
.y41{bottom:410.880066pt;}
.y8b{bottom:417.280030pt;}
.y1be{bottom:418.560059pt;}
.ybe{bottom:420.000061pt;}
.y5a{bottom:420.320069pt;}
.y19f{bottom:423.200074pt;}
.yf2{bottom:427.529676pt;}
.y9e{bottom:428.960083pt;}
.y179{bottom:431.040039pt;}
.y125{bottom:431.200074pt;}
.y152{bottom:431.208256pt;}
.y7e{bottom:431.520081pt;}
.y154{bottom:434.568495pt;}
.y72{bottom:435.200074pt;}
.y1d{bottom:435.840088pt;}
.y186{bottom:437.440064pt;}
.y40{bottom:437.600037pt;}
.y19e{bottom:443.680054pt;}
.y8a{bottom:444.000061pt;}
.y1bd{bottom:445.440064pt;}
.ybd{bottom:446.080079pt;}
.y59{bottom:447.040039pt;}
.yf3{bottom:453.766525pt;}
.y9d{bottom:455.680054pt;}
.y178{bottom:458.080079pt;}
.y7d{bottom:458.400086pt;}
.y71{bottom:459.680054pt;}
.y124{bottom:461.600037pt;}
.y1c{bottom:462.720032pt;}
.y185{bottom:464.320069pt;}
.y3f{bottom:464.480042pt;}
.y19d{bottom:470.560059pt;}
.ybc{bottom:472.160035pt;}
.y1bc{bottom:472.320069pt;}
.y58{bottom:474.080079pt;}
.yf4{bottom:480.007381pt;}
.y9c{bottom:482.560059pt;}
.y177{bottom:484.800049pt;}
.y151{bottom:484.800856pt;}
.y89{bottom:484.960083pt;}
.y70{bottom:485.280030pt;}
.y1b{bottom:489.600037pt;}
.y3e{bottom:491.360047pt;}
.yeb{bottom:493.609044pt;}
.y19c{bottom:497.760071pt;}
.ybb{bottom:498.400086pt;}
.y1bb{bottom:499.200074pt;}
.y57{bottom:500.800049pt;}
.yf5{bottom:506.248160pt;}
.y9b{bottom:509.440064pt;}
.y176{bottom:511.680054pt;}
.y6f{bottom:512.000061pt;}
.y1a{bottom:516.480042pt;}
.y3d{bottom:518.240052pt;}
.yba{bottom:524.480042pt;}
.y19b{bottom:524.640076pt;}
.y1ba{bottom:525.920044pt;}
.y56{bottom:527.840088pt;}
.yfe{bottom:529.928692pt;}
.y9a{bottom:536.320069pt;}
.y175{bottom:538.560059pt;}
.y180{bottom:538.720032pt;}
.y6e{bottom:539.040039pt;}
.y19{bottom:543.360047pt;}
.y3c{bottom:545.120057pt;}
.yb9{bottom:550.720032pt;}
.y19a{bottom:551.200074pt;}
.y1b9{bottom:552.800049pt;}
.y55{bottom:554.560059pt;}
.y99{bottom:563.200074pt;}
.y169{bottom:563.526656pt;}
.y174{bottom:565.440064pt;}
.y6d{bottom:565.760071pt;}
.yfc{bottom:566.880066pt;}
.y18{bottom:569.760071pt;}
.y3b{bottom:572.000061pt;}
.y135{bottom:575.526745pt;}
.yb8{bottom:576.800049pt;}
.y199{bottom:578.080079pt;}
.y1b8{bottom:579.680054pt;}
.y54{bottom:581.440064pt;}
.y168{bottom:586.406496pt;}
.y98{bottom:591.200074pt;}
.y173{bottom:592.320069pt;}
.y17f{bottom:592.480042pt;}
.y6c{bottom:592.800049pt;}
.y141{bottom:592.966729pt;}
.ye9{bottom:594.080079pt;}
.y17{bottom:597.120057pt;}
.y3a{bottom:598.720032pt;}
.yb7{bottom:603.040039pt;}
.y198{bottom:604.800049pt;}
.y1b7{bottom:606.560059pt;}
.y53{bottom:608.320069pt;}
.y167{bottom:609.286336pt;}
.ye8{bottom:617.280060pt;}
.y115{bottom:617.280376pt;}
.y97{bottom:619.200074pt;}
.y6b{bottom:619.520050pt;}
.y117{bottom:620.959062pt;}
.y16{bottom:623.840058pt;}
.y197{bottom:625.600068pt;}
.y39{bottom:625.760071pt;}
.yb6{bottom:628.960053pt;}
.y1b6{bottom:633.440064pt;}
.y166{bottom:634.888088pt;}
.y52{bottom:635.200074pt;}
.y136{bottom:639.684988pt;}
.ye7{bottom:644.160065pt;}
.y112{bottom:644.162240pt;}
.y96{bottom:645.920044pt;}
.y17e{bottom:646.080048pt;}
.y172{bottom:646.240052pt;}
.y6a{bottom:646.400055pt;}
.ye6{bottom:647.840058pt;}
.y114{bottom:647.842783pt;}
.y15{bottom:650.880066pt;}
.y196{bottom:652.320069pt;}
.y38{bottom:652.480072pt;}
.y165{bottom:654.884295pt;}
.yb5{bottom:655.200074pt;}
.y1b5{bottom:660.320069pt;}
.y51{bottom:661.280060pt;}
.ye5{bottom:671.040070pt;}
.y110{bottom:671.044059pt;}
.y95{bottom:672.960053pt;}
.y69{bottom:673.280060pt;}
.ye4{bottom:674.720063pt;}
.y111{bottom:674.724647pt;}
.y14{bottom:677.600068pt;}
.y163{bottom:677.764135pt;}
.y195{bottom:679.200074pt;}
.y37{bottom:679.520050pt;}
.y137{bottom:679.689189pt;}
.yb4{bottom:681.280060pt;}
.y50{bottom:685.920044pt;}
.y1b4{bottom:687.040070pt;}
.ye2{bottom:697.920044pt;}
.y10d{bottom:697.925877pt;}
.y184{bottom:699.680054pt;}
.y171{bottom:699.840058pt;}
.y68{bottom:700.160065pt;}
.y10f{bottom:701.606466pt;}
.y13{bottom:704.480072pt;}
.y142{bottom:704.967460pt;}
.y194{bottom:706.080048pt;}
.y36{bottom:706.240052pt;}
.yb3{bottom:707.520050pt;}
.y4f{bottom:710.400055pt;}
.y12{bottom:725.120057pt;}
.y170{bottom:726.720063pt;}
.y67{bottom:727.040070pt;}
.ye1{bottom:728.160065pt;}
.y193{bottom:732.960053pt;}
.y35{bottom:733.120057pt;}
.yb2{bottom:733.600068pt;}
.y4e{bottom:735.040070pt;}
.y11{bottom:746.880066pt;}
.y1ab{bottom:753.440064pt;}
.y34{bottom:753.600068pt;}
.y66{bottom:753.920044pt;}
.ye0{bottom:755.360047pt;}
.y4d{bottom:759.680054pt;}
.yb1{bottom:759.840058pt;}
.y10{bottom:770.880066pt;}
.y14f{bottom:777.118943pt;}
.y122{bottom:777.120057pt;}
.ydf{bottom:778.400055pt;}
.y16f{bottom:780.320069pt;}
.y150{bottom:780.480133pt;}
.y33{bottom:780.640046pt;}
.yfb{bottom:782.080048pt;}
.y4c{bottom:784.480072pt;}
.yb0{bottom:785.760071pt;}
.y192{bottom:786.560059pt;}
.yf{bottom:795.040070pt;}
.yde{bottom:805.440064pt;}
.y10b{bottom:805.445631pt;}
.y13d{bottom:807.200074pt;}
.y32{bottom:807.360047pt;}
.y65{bottom:807.680054pt;}
.y4b{bottom:808.960053pt;}
.yfa{bottom:809.120057pt;}
.yaf{bottom:812.000061pt;}
.y191{bottom:813.600068pt;}
.ye{bottom:817.760071pt;}
.ydc{bottom:832.160065pt;}
.y109{bottom:832.160173pt;}
.y121{bottom:833.920044pt;}
.y16e{bottom:834.080048pt;}
.y31{bottom:834.400055pt;}
.ydb{bottom:835.840058pt;}
.yd{bottom:838.240052pt;}
.y190{bottom:840.320069pt;}
.y120{bottom:860.960053pt;}
.yc{bottom:861.120057pt;}
.y30{bottom:861.440064pt;}
.yda{bottom:862.560059pt;}
.yae{bottom:864.320069pt;}
.y18f{bottom:867.360062pt;}
.yb{bottom:886.400055pt;}
.y11f{bottom:887.680054pt;}
.y16d{bottom:887.840058pt;}
.y2f{bottom:888.160065pt;}
.yf9{bottom:890.400055pt;}
.yad{bottom:890.560059pt;}
.y18e{bottom:894.080063pt;}
.ya{bottom:907.040055pt;}
.y11e{bottom:911.360062pt;}
.y14c{bottom:911.360827pt;}
.yf7{bottom:912.640061pt;}
.y106{bottom:912.640286pt;}
.y1aa{bottom:914.560059pt;}
.y16c{bottom:914.720063pt;}
.y14e{bottom:914.722018pt;}
.y2e{bottom:915.040055pt;}
.y108{bottom:916.481171pt;}
.yac{bottom:916.640061pt;}
.y9{bottom:930.400055pt;}
.y11d{bottom:938.080063pt;}
.y14a{bottom:938.082981pt;}
.yf6{bottom:938.880066pt;}
.y104{bottom:938.882868pt;}
.y13c{bottom:941.440064pt;}
.y16b{bottom:941.600052pt;}
.y2d{bottom:941.920060pt;}
.yd9{bottom:942.720063pt;}
.yab{bottom:942.880066pt;}
.y8{bottom:961.280060pt;}
.yd6{bottom:964.800064pt;}
.y102{bottom:964.803643pt;}
.ya9{bottom:964.960053pt;}
.y148{bottom:964.964811pt;}
.y16a{bottom:968.480057pt;}
.yd8{bottom:968.640061pt;}
.y2c{bottom:968.800064pt;}
.h45{height:15.041515pt;}
.h46{height:15.041553pt;}
.h20{height:15.199268pt;}
.h36{height:15.199307pt;}
.h25{height:15.837608pt;}
.h18{height:15.839966pt;}
.h27{height:17.273521pt;}
.h42{height:17.276428pt;}
.h3e{height:17.277380pt;}
.h3f{height:17.277391pt;}
.h33{height:17.279968pt;}
.h35{height:17.279969pt;}
.h13{height:17.279999pt;}
.h34{height:17.280029pt;}
.h10{height:17.280030pt;}
.h43{height:17.281209pt;}
.h44{height:17.285896pt;}
.h29{height:17.434440pt;}
.h21{height:17.439988pt;}
.h22{height:17.440002pt;}
.h2a{height:17.441422pt;}
.h2d{height:17.596778pt;}
.h1d{height:17.599976pt;}
.h1b{height:17.600006pt;}
.h2f{height:17.604343pt;}
.h2b{height:17.604367pt;}
.h30{height:17.604390pt;}
.h32{height:17.920013pt;}
.h40{height:17.923765pt;}
.h3c{height:18.236456pt;}
.h5{height:18.240051pt;}
.h38{height:20.479980pt;}
.h3a{height:20.480361pt;}
.h14{height:24.159973pt;}
.hd{height:24.160035pt;}
.h3{height:24.320007pt;}
.h31{height:24.320008pt;}
.he{height:41.892609pt;}
.h26{height:41.893005pt;}
.h17{height:41.894948pt;}
.h1f{height:44.989654pt;}
.h47{height:45.748331pt;}
.h12{height:46.118250pt;}
.h28{height:46.118686pt;}
.h19{height:46.120825pt;}
.hc{height:46.356687pt;}
.h41{height:46.356909pt;}
.h1c{height:46.359366pt;}
.h11{height:47.265609pt;}
.h2e{height:47.482372pt;}
.h1e{height:47.484888pt;}
.hf{height:51.379313pt;}
.h4{height:53.276534pt;}
.h3b{height:53.276912pt;}
.h37{height:53.279458pt;}
.h6{height:54.204472pt;}
.h3d{height:54.204732pt;}
.h16{height:54.207605pt;}
.h24{height:54.691419pt;}
.hb{height:55.329930pt;}
.h23{height:55.333127pt;}
.h8{height:55.847032pt;}
.h2c{height:55.847300pt;}
.h1a{height:55.850259pt;}
.h9{height:63.151295pt;}
.ha{height:65.341160pt;}
.h2{height:72.739287pt;}
.h15{height:72.743498pt;}
.h7{height:82.995076pt;}
.h39{height:87.861771pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w43{width:0.155675pt;}
.w15{width:0.799987pt;}
.w26{width:1.760010pt;}
.w31{width:1.767818pt;}
.w2c{width:3.843093pt;}
.w27{width:4.320008pt;}
.w1b{width:4.803320pt;}
.w10{width:5.599991pt;}
.w2{width:5.600006pt;}
.w36{width:6.078305pt;}
.w44{width:7.033404pt;}
.w3{width:7.039978pt;}
.w41{width:7.359608pt;}
.w14{width:8.479996pt;}
.wb{width:8.480011pt;}
.wd{width:8.639954pt;}
.w6{width:8.640000pt;}
.w8{width:8.640014pt;}
.w42{width:11.039402pt;}
.we{width:11.039978pt;}
.w9{width:11.040008pt;}
.w1c{width:13.440003pt;}
.w25{width:14.719971pt;}
.w2f{width:15.682590pt;}
.wf{width:16.320007pt;}
.w28{width:16.802115pt;}
.w12{width:18.080002pt;}
.w1e{width:18.080017pt;}
.w37{width:30.080018pt;}
.w1d{width:32.479981pt;}
.w40{width:34.239991pt;}
.w13{width:36.000000pt;}
.w4{width:36.959999pt;}
.w46{width:38.241721pt;}
.w4b{width:39.516955pt;}
.w4f{width:42.396221pt;}
.wa{width:42.559998pt;}
.w5{width:43.040000pt;}
.w3e{width:43.520020pt;}
.w4d{width:43.678086pt;}
.w30{width:44.163115pt;}
.w45{width:48.482927pt;}
.w48{width:51.685996pt;}
.w4c{width:54.074982pt;}
.w4a{width:55.364295pt;}
.w19{width:56.479980pt;}
.w4e{width:57.119912pt;}
.w3c{width:57.120026pt;}
.w11{width:58.079986pt;}
.w32{width:58.244170pt;}
.w47{width:61.447239pt;}
.w33{width:81.759979pt;}
.w39{width:97.919983pt;}
.w34{width:98.559982pt;}
.w7{width:99.519989pt;}
.w2b{width:101.603249pt;}
.w2a{width:101.760628pt;}
.w1a{width:107.359985pt;}
.w3f{width:113.600006pt;}
.w21{width:120.960022pt;}
.w1f{width:121.119996pt;}
.w18{width:122.879989pt;}
.w3b{width:128.480011pt;}
.w49{width:129.129458pt;}
.w2e{width:129.286321pt;}
.w2d{width:129.447872pt;}
.w29{width:130.721435pt;}
.w35{width:135.999984pt;}
.w3a{width:150.880005pt;}
.w22{width:153.279999pt;}
.w3d{width:162.880005pt;}
.w17{width:168.799987pt;}
.w16{width:168.959983pt;}
.w38{width:176.640015pt;}
.wc{width:187.679992pt;}
.w23{width:239.679993pt;}
.w24{width:265.280030pt;}
.w20{width:279.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x40{left:-447.999344pt;}
.x63{left:-415.356740pt;}
.x5a{left:-402.073110pt;}
.x3e{left:-386.713679pt;}
.x62{left:-377.756545pt;}
.x5d{left:-360.960018pt;}
.x39{left:-279.996025pt;}
.x27{left:-168.799987pt;}
.x3a{left:-153.273092pt;}
.x50{left:-136.159988pt;}
.x5b{left:-128.477502pt;}
.x2b{left:-122.879989pt;}
.x37{left:-121.115923pt;}
.x30{left:-107.519989pt;}
.x4f{left:-98.559982pt;}
.x4e{left:-81.759979pt;}
.x24{left:-58.079986pt;}
.x2d{left:-56.479980pt;}
.x64{left:-43.673637pt;}
.x65{left:-34.235588pt;}
.x35{left:-32.637726pt;}
.x59{left:-30.080682pt;}
.x56{left:-16.802115pt;}
.x3b{left:-14.071588pt;}
.x57{left:-6.078305pt;}
.x32{left:-4.803320pt;}
.x0{left:0.000000pt;}
.x5{left:110.400002pt;}
.xb{left:114.080002pt;}
.x23{left:119.041306pt;}
.x1{left:120.320000pt;}
.x22{left:126.243108pt;}
.xd{left:133.759995pt;}
.x21{left:140.482627pt;}
.x46{left:143.360001pt;}
.x12{left:144.639999pt;}
.x1a{left:152.000000pt;}
.xc{left:153.440002pt;}
.x9{left:156.320007pt;}
.x2{left:157.279999pt;}
.x1e{left:163.041138pt;}
.xa{left:171.360001pt;}
.x45{left:180.800003pt;}
.x7{left:187.199997pt;}
.x1b{left:193.279999pt;}
.x44{left:197.600006pt;}
.x13{left:199.679993pt;}
.x1f{left:202.723673pt;}
.x19{left:221.279999pt;}
.x1d{left:222.880005pt;}
.x8{left:245.759995pt;}
.x48{left:251.842416pt;}
.x47{left:262.559927pt;}
.x49{left:273.283737pt;}
.x20{left:274.558722pt;}
.x1c{left:278.559998pt;}
.x2e{left:280.959991pt;}
.x25{left:292.799988pt;}
.x31{left:297.279999pt;}
.x58{left:300.481454pt;}
.x33{left:310.561463pt;}
.x51{left:336.320007pt;}
.xe{left:390.559998pt;}
.x54{left:392.799988pt;}
.x6{left:397.119995pt;}
.x28{left:400.160004pt;}
.x29{left:405.279999pt;}
.x15{left:408.959991pt;}
.x10{left:413.920013pt;}
.x17{left:424.799988pt;}
.x4d{left:430.079987pt;}
.x16{left:432.320007pt;}
.x11{left:437.279999pt;}
.x52{left:441.920013pt;}
.x18{left:453.440002pt;}
.x4b{left:456.000000pt;}
.x4c{left:460.640015pt;}
.x3{left:488.799988pt;}
.xf{left:490.079987pt;}
.x53{left:515.039978pt;}
.x2a{left:518.880005pt;}
.x55{left:524.320007pt;}
.x26{left:526.080017pt;}
.x4a{left:528.479980pt;}
.x2c{left:543.840027pt;}
.x2f{left:554.239990pt;}
.x34{left:558.557636pt;}
.x3f{left:560.324665pt;}
.x38{left:562.238952pt;}
.x43{left:569.435979pt;}
.x3c{left:573.916243pt;}
.x14{left:578.080017pt;}
.x5e{left:596.637017pt;}
.x3d{left:602.563145pt;}
.x5c{left:607.039774pt;}
.x61{left:610.081246pt;}
.x66{left:613.759545pt;}
.x41{left:616.801017pt;}
.x60{left:619.842489pt;}
.x5f{left:632.003643pt;}
.x42{left:642.406400pt;}
.x4{left:683.840027pt;}
.x36{left:689.279070pt;}
}




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