
    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_4b69f92595f50cb3bfba959b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d26a5425a31378e73eed8c59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a5538087cf05ac3011a4c6d9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4860c0a42bc7286829fde17b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.700000;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_59729dc6e1d482e40e844bb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706543;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_1466f45842d298e2fd205d6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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;}
.m6{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250132,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-35.999986px;}
.v7{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.v4{vertical-align:12.239995px;}
.v3{vertical-align:19.439992px;}
.v5{vertical-align:30.959988px;}
.v6{vertical-align:41.039984px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.150060px;}
.ls9{letter-spacing:13.085815px;}
.ls6{letter-spacing:13.805394px;}
.lsc{letter-spacing:14.347074px;}
.lsb{letter-spacing:15.821394px;}
.lsa{letter-spacing:23.017431px;}
.ls13{letter-spacing:32.479967px;}
.ls8{letter-spacing:32.515067px;}
.ls12{letter-spacing:35.393506px;}
.ls14{letter-spacing:54.103178px;}
.lsf{letter-spacing:63.499935px;}
.ls10{letter-spacing:64.219560px;}
.lse{letter-spacing:126.107950px;}
.lsd{letter-spacing:1996.341297px;}
.ls7{letter-spacing:2143.697143px;}
.ls5{letter-spacing:2145.131142px;}
.ls15{letter-spacing:2718.172913px;}
.ls4{letter-spacing:4023.298391px;}
.ls2{letter-spacing:4059.274376px;}
.ls11{letter-spacing:4235.578306px;}
.ls1{letter-spacing:4271.560291px;}
.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;}
}
.ws4{word-spacing:-20.015992px;}
.ws1{word-spacing:-17.999993px;}
.ws6{word-spacing:-14.939994px;}
.ws5{word-spacing:-12.059995px;}
.ws2{word-spacing:-9.719996px;}
.ws3{word-spacing:-7.559997px;}
.ws0{word-spacing:0.000000px;}
._42{margin-left:-64.199431px;}
._7{margin-left:-17.581966px;}
._6{margin-left:-14.991551px;}
._8{margin-left:-12.418786px;}
._5{margin-left:-8.912814px;}
._3{margin-left:-7.015464px;}
._4{margin-left:-5.263104px;}
._29{margin-left:-3.265141px;}
._a{margin-left:-2.197108px;}
._1{margin-left:-1.015103px;}
._0{width:1.480660px;}
._1a{width:2.504400px;}
._b{width:3.549372px;}
._f{width:4.730411px;}
._10{width:5.733271px;}
._1f{width:6.773036px;}
._14{width:7.782482px;}
._15{width:8.807046px;}
._e{width:10.752737px;}
._d{width:11.791040px;}
._16{width:13.674202px;}
._17{width:14.828447px;}
._13{width:16.566181px;}
._12{width:19.028959px;}
._21{width:20.525940px;}
._23{width:21.585853px;}
._25{width:22.633700px;}
._1e{width:23.728227px;}
._28{width:24.803257px;}
._11{width:25.892369px;}
._c{width:27.057177px;}
._9{width:28.114976px;}
._19{width:29.439889px;}
._18{width:30.580578px;}
._20{width:32.022754px;}
._27{width:33.027288px;}
._1b{width:34.216902px;}
._1c{width:35.787699px;}
._1d{width:37.031775px;}
._22{width:38.084394px;}
._26{width:39.238915px;}
._2a{width:41.894057px;}
._24{width:42.957581px;}
._31{width:44.126602px;}
._30{width:45.307601px;}
._32{width:46.501273px;}
._34{width:47.502637px;}
._33{width:48.926493px;}
._2c{width:54.680081px;}
._2b{width:56.051123px;}
._44{width:62.780205px;}
._40{width:64.219560px;}
._41{width:65.658811px;}
._3f{width:70.696190px;}
._3c{width:74.294250px;}
._3e{width:75.733568px;}
._45{width:78.611745px;}
._3d{width:81.490501px;}
._47{width:85.088846px;}
._48{width:88.686865px;}
._46{width:90.125964px;}
._3b{width:106.342519px;}
._49{width:111.857955px;}
._4a{width:127.766392px;}
._3a{width:134.610948px;}
._36{width:141.645319px;}
._37{width:153.670077px;}
._38{width:156.025546px;}
._39{width:162.346072px;}
._43{width:192.416323px;}
._35{width:264.930523px;}
._57{width:269.222879px;}
._56{width:278.071906px;}
._54{width:337.548449px;}
._5a{width:349.000898px;}
._58{width:366.360671px;}
._59{width:373.641223px;}
._51{width:384.911309px;}
._5e{width:389.500921px;}
._5d{width:433.891574px;}
._4b{width:449.941874px;}
._4c{width:458.867100px;}
._52{width:465.315702px;}
._5c{width:466.448391px;}
._64{width:494.867802px;}
._50{width:503.019550px;}
._53{width:511.099831px;}
._4d{width:521.523302px;}
._55{width:539.513416px;}
._61{width:557.009794px;}
._4f{width:564.859522px;}
._4e{width:570.643563px;}
._63{width:574.956970px;}
._60{width:582.849435px;}
._2d{width:613.792468px;}
._5b{width:619.961752px;}
._5f{width:628.040962px;}
._2e{width:1076.507690px;}
._62{width:1106.020358px;}
._2f{width:1203.877586px;}
._2{width:2250.911100px;}
.fc5{color:rgb(141,179,226);}
.fc3{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.239988px;}
.fs5{font-size:38.879984px;}
.fs8{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fsa{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs4{font-size:77.759969px;}
.fs2{font-size:95.759962px;}
.fs1{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y1c8{bottom:4.320264px;}
.y15{bottom:4.320330px;}
.y115{bottom:27.960346px;}
.y114{bottom:43.980339px;}
.y145{bottom:55.140335px;}
.y14{bottom:63.420000px;}
.y13{bottom:76.740326px;}
.y1cf{bottom:76.800269px;}
.y143{bottom:77.640326px;}
.y144{bottom:85.200323px;}
.y140{bottom:85.380323px;}
.y142{bottom:95.820319px;}
.y95{bottom:99.600317px;}
.y15a{bottom:99.780317px;}
.ya7{bottom:102.120316px;}
.yd1{bottom:102.480316px;}
.y14a{bottom:103.740316px;}
.ycb{bottom:104.100315px;}
.yb8{bottom:105.180315px;}
.y100{bottom:106.440314px;}
.y8d{bottom:106.980314px;}
.y13f{bottom:107.160314px;}
.y12{bottom:107.340314px;}
.yd2{bottom:107.700314px;}
.yca{bottom:109.320313px;}
.yec{bottom:109.860313px;}
.y141{bottom:111.300312px;}
.y41{bottom:112.020312px;}
.y12a{bottom:112.740312px;}
.y1e9{bottom:113.339955px;}
.y159{bottom:114.360311px;}
.y94{bottom:115.440311px;}
.y1f0{bottom:115.859954px;}
.y40{bottom:117.240310px;}
.yd0{bottom:118.320310px;}
.yb7{bottom:118.860309px;}
.y129{bottom:119.580309px;}
.y165{bottom:119.940309px;}
.y16a{bottom:121.740308px;}
.y8c{bottom:122.820308px;}
.ycf{bottom:123.540308px;}
.yb6{bottom:124.080307px;}
.y19a{bottom:124.440307px;}
.y62{bottom:124.620307px;}
.y168{bottom:125.160307px;}
.y189{bottom:125.880307px;}
.y1ab{bottom:126.600306px;}
.ya6{bottom:126.780306px;}
.y2c{bottom:127.140306px;}
.y11b{bottom:128.400306px;}
.yc9{bottom:128.940305px;}
.y1df{bottom:129.359948px;}
.y1e3{bottom:129.719948px;}
.y1d3{bottom:129.720248px;}
.ybb{bottom:130.740305px;}
.y93{bottom:131.280304px;}
.y50{bottom:132.360304px;}
.yd8{bottom:135.420303px;}
.y164{bottom:135.780303px;}
.y14e{bottom:136.140303px;}
.yff{bottom:136.500302px;}
.y75{bottom:136.680302px;}
.y1e8{bottom:138.539945px;}
.y8b{bottom:138.840301px;}
.yeb{bottom:139.020301px;}
.y1f7{bottom:140.879944px;}
.y163{bottom:141.000301px;}
.y1ef{bottom:141.059944px;}
.yb5{bottom:141.720300px;}
.y1d8{bottom:142.140243px;}
.y1d6{bottom:142.500243px;}
.ya5{bottom:142.800300px;}
.y121{bottom:143.160300px;}
.y1db{bottom:143.400243px;}
.y11f{bottom:143.880299px;}
.y15d{bottom:144.060299px;}
.yc8{bottom:144.780299px;}
.y158{bottom:145.320299px;}
.y92{bottom:147.120298px;}
.y11{bottom:147.300298px;}
.ya4{bottom:148.020298px;}
.y128{bottom:148.200298px;}
.y167{bottom:149.820297px;}
.y3f{bottom:150.720297px;}
.y91{bottom:152.340296px;}
.y74{bottom:152.520296px;}
.y169{bottom:152.880296px;}
.y8a{bottom:154.680295px;}
.yb4{bottom:155.580295px;}
.y188{bottom:156.840294px;}
.y162{bottom:157.560294px;}
.y1d2{bottom:158.159937px;}
.y1aa{bottom:159.000293px;}
.y89{bottom:159.900293px;}
.y1fc{bottom:159.959936px;}
.yc7{bottom:160.620293px;}
.yb3{bottom:160.800293px;}
.y1bb{bottom:161.340292px;}
.yba{bottom:161.880292px;}
.y16c{bottom:163.320292px;}
.y120{bottom:164.220291px;}
.y61{bottom:164.580291px;}
.y11e{bottom:165.480291px;}
.y1f6{bottom:166.079934px;}
.y1e7{bottom:166.619933px;}
.yea{bottom:168.000290px;}
.y11a{bottom:168.360290px;}
.y73{bottom:168.540290px;}
.y15c{bottom:168.720290px;}
.y1ee{bottom:169.319932px;}
.y1de{bottom:169.499932px;}
.y1e2{bottom:169.679932px;}
.y1d7{bottom:170.759932px;}
.y1d5{bottom:170.939932px;}
.y1da{bottom:172.019931px;}
.y161{bottom:173.580288px;}
.y179{bottom:173.760287px;}
.yb2{bottom:175.380287px;}
.y14d{bottom:176.280286px;}
.y10{bottom:176.460286px;}
.y90{bottom:177.000286px;}
.y4f{bottom:177.900286px;}
.y2b{bottom:178.800285px;}
.ya3{bottom:180.060285px;}
.y1e6{bottom:182.099927px;}
.y110{bottom:183.660284px;}
.y149{bottom:183.840283px;}
.y72{bottom:184.380283px;}
.y88{bottom:184.560283px;}
.y1ed{bottom:184.799926px;}
.y1fb{bottom:185.159926px;}
.y3e{bottom:187.980282px;}
.y1d1{bottom:188.399925px;}
.yb1{bottom:189.060281px;}
.y199{bottom:189.240281px;}
.y1a9{bottom:189.960281px;}
.y1f5{bottom:191.279923px;}
.yc6{bottom:192.300280px;}
.yb9{bottom:192.840280px;}
.y16b{bottom:193.020280px;}
.y1ba{bottom:193.740280px;}
.yb0{bottom:194.280279px;}
.yc5{bottom:197.520278px;}
.y1dd{bottom:198.119921px;}
.y1e1{bottom:198.479921px;}
.y71{bottom:200.220277px;}
.y1c6{bottom:200.760277px;}
.y1d4{bottom:200.999920px;}
.y152{bottom:201.120277px;}
.y1d9{bottom:202.259919px;}
.ye9{bottom:202.380276px;}
.yf{bottom:202.740276px;}
.y160{bottom:203.460276px;}
.yfe{bottom:204.360275px;}
.y60{bottom:204.720275px;}
.y70{bottom:205.440275px;}
.y157{bottom:207.420274px;}
.y183{bottom:208.680274px;}
.y119{bottom:211.380272px;}
.y1fa{bottom:213.419915px;}
.y178{bottom:213.900271px;}
.y10f{bottom:214.800271px;}
.y148{bottom:214.980271px;}
.y14c{bottom:216.240271px;}
.yaf{bottom:218.760269px;}
.y187{bottom:218.940269px;}
.y1f4{bottom:219.359912px;}
.y2a{bottom:221.460268px;}
.yc4{bottom:222.180268px;}
.y4e{bottom:223.260268px;}
.y87{bottom:223.980267px;}
.y1b9{bottom:225.960267px;}
.y1cc{bottom:226.680000px;}
.y1c7{bottom:227.760000px;}
.y1c9{bottom:227.940000px;}
.y1cd{bottom:228.300000px;}
.y1dc{bottom:228.359909px;}
.y1cb{bottom:228.480000px;}
.y1e0{bottom:228.719909px;}
.y1f9{bottom:228.899908px;}
.y1ca{bottom:229.200000px;}
.ye8{bottom:229.200265px;}
.y3d{bottom:229.560265px;}
.ye{bottom:229.740265px;}
.y6f{bottom:230.100265px;}
.ya2{bottom:230.820265px;}
.y1a8{bottom:232.620264px;}
.yce{bottom:232.980264px;}
.yfd{bottom:233.340264px;}
.y1ce{bottom:233.700264px;}
.y1f3{bottom:234.839906px;}
.y5f{bottom:235.680263px;}
.y127{bottom:238.560262px;}
.y10e{bottom:245.760259px;}
.y147{bottom:245.940259px;}
.y176{bottom:252.240256px;}
.y198{bottom:253.860255px;}
.y118{bottom:254.400255px;}
.y86{bottom:254.940255px;}
.ye7{bottom:256.200255px;}
.y14b{bottom:256.380254px;}
.y1b8{bottom:258.360254px;}
.y186{bottom:259.080253px;}
.yd{bottom:259.440253px;}
.y3c{bottom:260.520253px;}
.yae{bottom:261.780252px;}
.yfc{bottom:262.320252px;}
.yc3{bottom:263.940251px;}
.y29{bottom:264.120251px;}
.y182{bottom:264.480251px;}
.y4d{bottom:268.620250px;}
.y6e{bottom:269.520249px;}
.y177{bottom:272.220248px;}
.y5e{bottom:275.820247px;}
.y175{bottom:276.720246px;}
.y10d{bottom:276.900246px;}
.y146{bottom:277.080246px;}
.ye6{bottom:283.020244px;}
.y1a7{bottom:285.900243px;}
.y85{bottom:286.080243px;}
.yc{bottom:289.140241px;}
.y1b7{bottom:290.760241px;}
.yfb{bottom:291.300240px;}
.y3b{bottom:291.480240px;}
.y166{bottom:292.920240px;}
.yc2{bottom:295.080239px;}
.y117{bottom:297.600238px;}
.y185{bottom:299.040237px;}
.y6d{bottom:300.480237px;}
.y28{bottom:306.780234px;}
.y10c{bottom:307.860234px;}
.y126{bottom:309.480233px;}
.ye5{bottom:309.840233px;}
.y181{bottom:310.020233px;}
.y4c{bottom:314.160231px;}
.y5d{bottom:315.780231px;}
.y84{bottom:317.040230px;}
.y197{bottom:318.480230px;}
.yb{bottom:318.840229px;}
.yfa{bottom:320.100229px;}
.y151{bottom:321.900228px;}
.y3a{bottom:322.620228px;}
.y1b6{bottom:322.980228px;}
.y15b{bottom:323.880227px;}
.y174{bottom:324.600227px;}
.yc1{bottom:326.040227px;}
.y180{bottom:330.720225px;}
.y6c{bottom:331.620224px;}
.ye4{bottom:336.840222px;}
.y10b{bottom:339.000221px;}
.y184{bottom:339.180221px;}
.y125{bottom:340.620221px;}
.y83{bottom:348.180218px;}
.yf9{bottom:349.260217px;}
.y27{bottom:349.440217px;}
.y150{bottom:349.800217px;}
.y196{bottom:350.880217px;}
.y39{bottom:353.580216px;}
.y11d{bottom:354.480215px;}
.y1b5{bottom:355.380215px;}
.y5c{bottom:355.740215px;}
.yad{bottom:357.180214px;}
.ya{bottom:358.620214px;}
.y4b{bottom:359.520213px;}
.y6b{bottom:362.580212px;}
.ye3{bottom:363.660212px;}
.y133{bottom:364.200211px;}
.y10a{bottom:369.960209px;}
.y124{bottom:371.580208px;}
.y13e{bottom:374.280207px;}
.y1c3{bottom:378.060206px;}
.yf8{bottom:378.240206px;}
.y14f{bottom:378.600206px;}
.y82{bottom:379.140205px;}
.y11c{bottom:381.120205px;}
.y1a6{bottom:381.660204px;}
.y195{bottom:383.100204px;}
.y38{bottom:384.720203px;}
.y173{bottom:385.800203px;}
.y17f{bottom:386.520202px;}
.yd7{bottom:387.600202px;}
.y1b4{bottom:387.780202px;}
.ya1{bottom:388.140202px;}
.ye2{bottom:390.660201px;}
.y26{bottom:392.100200px;}
.y132{bottom:393.180200px;}
.y5b{bottom:395.880199px;}
.yc0{bottom:397.140198px;}
.y9{bottom:398.760197px;}
.y109{bottom:400.920197px;}
.y6a{bottom:402.720196px;}
.y4a{bottom:404.880195px;}
.y13d{bottom:405.420195px;}
.y81{bottom:410.280193px;}
.y1a5{bottom:414.060191px;}
.yf7{bottom:414.780191px;}
.y194{bottom:415.500191px;}
.ye1{bottom:417.480190px;}
.y1c2{bottom:418.200190px;}
.yd6{bottom:418.560190px;}
.ya0{bottom:419.280189px;}
.y1b3{bottom:420.000189px;}
.y131{bottom:422.160188px;}
.y36{bottom:424.680187px;}
.y15f{bottom:426.120187px;}
.y5a{bottom:426.840186px;}
.ybf{bottom:428.280186px;}
.y37{bottom:431.880184px;}
.y69{bottom:433.680184px;}
.y25{bottom:434.580183px;}
.y13c{bottom:436.380182px;}
.y156{bottom:436.920182px;}
.y8{bottom:438.720182px;}
.y123{bottom:440.520181px;}
.y80{bottom:441.240181px;}
.y108{bottom:442.140180px;}
.y17e{bottom:442.320180px;}
.yf6{bottom:443.760179px;}
.ye0{bottom:444.480179px;}
.y1a4{bottom:446.460178px;}
.y172{bottom:447.000178px;}
.y193{bottom:447.900178px;}
.yd5{bottom:449.700177px;}
.y9f{bottom:450.240177px;}
.y49{bottom:450.420177px;}
.y130{bottom:451.140177px;}
.y1b2{bottom:452.400176px;}
.y35{bottom:455.820175px;}
.y59{bottom:457.980174px;}
.ybe{bottom:459.240173px;}
.y101{bottom:459.420173px;}
.y67{bottom:464.820171px;}
.y13b{bottom:467.520170px;}
.y18b{bottom:469.140169px;}
.y107{bottom:471.120169px;}
.ydf{bottom:471.480168px;}
.y68{bottom:471.660168px;}
.y7f{bottom:472.380168px;}
.yf5{bottom:472.740168px;}
.y24{bottom:477.240166px;}
.y1a3{bottom:478.680166px;}
.y7{bottom:478.860165px;}
.y12f{bottom:480.120165px;}
.yd4{bottom:481.200165px;}
.y9e{bottom:481.380164px;}
.y1c1{bottom:482.820164px;}
.y34{bottom:486.780162px;}
.y58{bottom:488.940161px;}
.ybc{bottom:490.380161px;}
.y1b1{bottom:495.060159px;}
.y48{bottom:495.780159px;}
.ybd{bottom:497.220158px;}
.y17d{bottom:498.120158px;}
.y106{bottom:500.100157px;}
.yf4{bottom:501.720156px;}
.y7e{bottom:503.340156px;}
.y18a{bottom:504.780155px;}
.yde{bottom:505.860155px;}
.y13a{bottom:507.480154px;}
.y171{bottom:508.380154px;}
.y12e{bottom:509.100153px;}
.y1a2{bottom:511.080153px;}
.y9d{bottom:512.340152px;}
.y192{bottom:512.520152px;}
.y1c0{bottom:515.220151px;}
.y113{bottom:515.400151px;}
.y33{bottom:517.920150px;}
.ycd{bottom:519.180149px;}
.y23{bottom:519.900149px;}
.yac{bottom:521.340148px;}
.y6{bottom:524.040147px;}
.y66{bottom:526.920146px;}
.y57{bottom:529.080145px;}
.yf3{bottom:530.700145px;}
.ydd{bottom:532.680144px;}
.y112{bottom:533.580144px;}
.y7d{bottom:534.480143px;}
.y1b0{bottom:536.280142px;}
.y12d{bottom:538.080142px;}
.y139{bottom:538.620142px;}
.y47{bottom:541.140141px;}
.y9c{bottom:543.480140px;}
.y191{bottom:544.920139px;}
.yaa{bottom:552.480136px;}
.y111{bottom:553.380136px;}
.y17c{bottom:553.920135px;}
.y16f{bottom:556.080135px;}
.y1bf{bottom:557.700134px;}
.y32{bottom:557.880134px;}
.y105{bottom:558.060134px;}
.yab{bottom:559.320133px;}
.ydc{bottom:559.680133px;}
.y56{bottom:560.040133px;}
.y22{bottom:562.560132px;}
.y7c{bottom:565.440131px;}
.y12c{bottom:567.060130px;}
.y138{bottom:569.580129px;}
.y16e{bottom:571.560128px;}
.y153{bottom:571.920128px;}
.y9b{bottom:574.440127px;}
.y1a1{bottom:575.700127px;}
.y190{bottom:577.140126px;}
.y5{bottom:578.760125px;}
.y170{bottom:579.480125px;}
.ya9{bottom:583.440124px;}
.ydb{bottom:586.500122px;}
.y46{bottom:586.680122px;}
.y104{bottom:587.040122px;}
.y16d{bottom:587.220122px;}
.y1af{bottom:588.300122px;}
.yf2{bottom:588.660122px;}
.y1d{bottom:590.100121px;}
.yd3{bottom:590.280121px;}
.y55{bottom:591.180121px;}
.y12b{bottom:596.040119px;}
.y7b{bottom:596.580118px;}
.y31{bottom:598.020118px;}
.y1be{bottom:599.100117px;}
.y137{bottom:600.720117px;}
.y21{bottom:605.220115px;}
.y8f{bottom:605.580115px;}
.y1a0{bottom:608.100114px;}
.y18f{bottom:609.540113px;}
.y17b{bottom:609.720113px;}
.y9a{bottom:614.580111px;}
.yf1{bottom:617.640110px;}
.y1c{bottom:617.820110px;}
.yda{bottom:619.440109px;}
.y54{bottom:622.140108px;}
.y103{bottom:625.020107px;}
.y4{bottom:630.060105px;}
.y1b{bottom:631.320104px;}
.y136{bottom:631.680104px;}
.y45{bottom:632.040104px;}
.y7a{bottom:636.540102px;}
.y1c5{bottom:637.260102px;}
.y30{bottom:637.980102px;}
.y1e5{bottom:638.039745px;}
.y1bd{bottom:639.240101px;}
.y19f{bottom:640.500101px;}
.y18e{bottom:641.940100px;}
.y99{bottom:645.540099px;}
.y20{bottom:647.880098px;}
.y1a{bottom:648.420098px;}
.y65{bottom:649.680097px;}
.y1ec{bottom:650.459740px;}
.y1ae{bottom:651.660096px;}
.ya8{bottom:652.380096px;}
.y155{bottom:652.920096px;}
.y1e4{bottom:653.519739px;}
.yf0{bottom:654.000095px;}
.y53{bottom:662.280092px;}
.y17a{bottom:665.160091px;}
.y1eb{bottom:665.939734px;}
.y79{bottom:667.680090px;}
.y3{bottom:670.020089px;}
.y1bc{bottom:671.460088px;}
.y135{bottom:671.820088px;}
.y19e{bottom:672.720088px;}
.y19{bottom:673.620088px;}
.y18d{bottom:674.160087px;}
.y8e{bottom:674.520087px;}
.y1fe{bottom:675.839730px;}
.y97{bottom:676.680086px;}
.y44{bottom:677.400086px;}
.y2f{bottom:678.120086px;}
.y1c4{bottom:679.560085px;}
.y1ad{bottom:682.800084px;}
.yef{bottom:682.980084px;}
.y98{bottom:683.520084px;}
.yd9{bottom:685.140083px;}
.y1f{bottom:689.280081px;}
.y64{bottom:689.640081px;}
.y1fd{bottom:691.319723px;}
.y1f2{bottom:691.859723px;}
.y52{bottom:693.240080px;}
.y78{bottom:698.640078px;}
.y18{bottom:698.820077px;}
.y134{bottom:702.960076px;}
.y19d{bottom:703.860075px;}
.y1f1{bottom:707.159717px;}
.y1f8{bottom:707.339717px;}
.y96{bottom:707.640074px;}
.y2{bottom:710.160073px;}
.yee{bottom:711.960072px;}
.y1ac{bottom:713.760071px;}
.y18c{bottom:716.820070px;}
.y2e{bottom:718.080070px;}
.y43{bottom:722.940068px;}
.y51{bottom:724.380067px;}
.y1e{bottom:729.420065px;}
.y63{bottom:729.780065px;}
.y17{bottom:734.280063px;}
.y19c{bottom:736.260062px;}
.y76{bottom:738.780061px;}
.yed{bottom:740.940061px;}
.y77{bottom:745.620059px;}
.y1{bottom:750.120057px;}
.y2d{bottom:758.940053px;}
.y154{bottom:760.020053px;}
.y116{bottom:766.680050px;}
.y122{bottom:767.940050px;}
.y42{bottom:768.300050px;}
.y19b{bottom:768.480050px;}
.y16{bottom:769.740049px;}
.y102{bottom:769.920049px;}
.ycc{bottom:776.580046px;}
.y15e{bottom:778.020046px;}
.y1d0{bottom:1129.619848px;}
.y1ea{bottom:1129.799848px;}
.h5{height:20.520000px;}
.hc{height:26.533818px;}
.h10{height:26.995770px;}
.h9{height:34.114908px;}
.hf{height:36.641938px;}
.hb{height:42.327757px;}
.h13{height:47.381817px;}
.h6{height:49.992168px;}
.ha{height:50.399980px;}
.h4{height:52.435877px;}
.h11{height:57.760289px;}
.h19{height:58.121696px;}
.h18{height:62.327788px;}
.h1{height:63.175756px;}
.hd{height:63.895756px;}
.h7{height:63.949193px;}
.h17{height:68.229816px;}
.h8{height:69.065129px;}
.h12{height:74.007744px;}
.he{height:75.093720px;}
.h14{height:78.341805px;}
.h15{height:79.061804px;}
.h3{height:84.023755px;}
.h16{height:104.215740px;}
.h2{height:105.503512px;}
.h0{height:892.500000px;}
.h1a{height:1263.000000px;}
.w1{width:0.180000px;}
.w4{width:3.780000px;}
.w2{width:5.940000px;}
.w5{width:6.120000px;}
.w3{width:6.300000px;}
.w6{width:7.560000px;}
.w7{width:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x86{left:53.265879px;}
.xa{left:63.885933px;}
.x85{left:68.925872px;}
.x82{left:74.505870px;}
.x19{left:85.125866px;}
.x84{left:90.885864px;}
.x81{left:95.925862px;}
.x8e{left:106.379957px;}
.x1{left:107.985857px;}
.x1a{left:116.985853px;}
.x2c{left:120.765852px;}
.x23{left:122.025851px;}
.x3b{left:124.545850px;}
.x6b{left:125.805850px;}
.x1b{left:138.225820px;}
.x52{left:143.805842px;}
.x9a{left:148.859226px;}
.x59{left:152.626439px;}
.x29{left:159.465800px;}
.x26{left:165.406434px;}
.x27{left:170.446432px;}
.x41{left:179.446428px;}
.x28{left:180.887067px;}
.x68{left:194.026422px;}
.x46{left:196.726421px;}
.x70{left:219.406412px;}
.x72{left:229.306408px;}
.x76{left:233.626407px;}
.x48{left:237.227053px;}
.x89{left:241.185600px;}
.x77{left:244.066402px;}
.x43{left:247.480401px;}
.x74{left:253.606399px;}
.x44{left:259.545587px;}
.x71{left:263.326395px;}
.x7b{left:269.986392px;}
.x75{left:271.606391px;}
.x65{left:281.686387px;}
.x66{left:284.926386px;}
.x67{left:294.646382px;}
.x7e{left:297.526381px;}
.x21{left:301.486379px;}
.x7a{left:303.826378px;}
.x22{left:306.346377px;}
.x58{left:317.506373px;}
.x6e{left:320.026372px;}
.x79{left:323.626371px;}
.x78{left:325.066370px;}
.x7c{left:328.486369px;}
.x6f{left:329.746368px;}
.x7d{left:336.046320px;}
.x7f{left:338.026365px;}
.x69{left:340.006364px;}
.x6a{left:350.266360px;}
.x61{left:360.886356px;}
.x37{left:372.586351px;}
.x5b{left:381.046348px;}
.x38{left:382.306347px;}
.x5a{left:384.826346px;}
.x8a{left:398.145600px;}
.x73{left:402.646374px;}
.x98{left:422.639831px;}
.x90{left:428.759828px;}
.x3c{left:438.646325px;}
.x39{left:450.526320px;}
.x9f{left:453.059819px;}
.x9c{left:454.499818px;}
.x12{left:455.746318px;}
.x91{left:457.199817px;}
.x3a{left:461.506315px;}
.x11{left:466.363193px;}
.x99{left:470.339812px;}
.x95{left:478.439809px;}
.x57{left:497.146301px;}
.x42{left:503.086299px;}
.x4a{left:534.586286px;}
.x2a{left:550.786280px;}
.x2b{left:555.646278px;}
.x49{left:563.566275px;}
.x40{left:573.646271px;}
.x9e{left:581.759767px;}
.x45{left:583.186267px;}
.x13{left:584.806266px;}
.x88{left:591.826289px;}
.x97{left:595.439762px;}
.x87{left:604.966258px;}
.x83{left:624.766250px;}
.x9b{left:627.299749px;}
.x9d{left:628.919748px;}
.x14{left:631.426247px;}
.x18{left:635.206246px;}
.x53{left:636.826877px;}
.x93{left:644.939742px;}
.x8f{left:646.379741px;}
.x94{left:647.999741px;}
.x92{left:649.619740px;}
.x15{left:652.666239px;}
.x47{left:654.466238px;}
.x1c{left:658.066237px;}
.x20{left:661.846235px;}
.x96{left:665.099734px;}
.x36{left:666.166234px;}
.x4f{left:667.786233px;}
.x50{left:676.786229px;}
.x1d{left:679.306228px;}
.x5f{left:694.786222px;}
.x6d{left:700.540348px;}
.x8b{left:708.825600px;}
.x6c{left:721.960114px;}
.x56{left:728.446209px;}
.x5e{left:735.646206px;}
.x32{left:753.646199px;}
.x33{left:764.086194px;}
.x30{left:783.706187px;}
.x31{left:788.566185px;}
.x4c{left:824.026170px;}
.x51{left:836.806165px;}
.x8c{left:868.305600px;}
.x3f{left:875.866150px;}
.x5c{left:892.246143px;}
.x4{left:901.786139px;}
.x4d{left:907.186137px;}
.x54{left:910.066136px;}
.x4e{left:919.246132px;}
.xe{left:925.537368px;}
.x2d{left:932.746127px;}
.x5{left:938.506125px;}
.xd{left:959.566160px;}
.x60{left:968.026113px;}
.x3d{left:987.106105px;}
.x63{left:991.784684px;}
.x3e{left:996.826101px;}
.x6{left:999.526043px;}
.x7{left:1001.146048px;}
.x8{left:1007.986097px;}
.x9{left:1015.006118px;}
.x62{left:1018.784606px;}
.x1e{left:1025.986090px;}
.x1f{left:1030.846088px;}
.x16{left:1051.726079px;}
.x17{left:1056.586077px;}
.x3{left:1060.366076px;}
.x80{left:1063.606075px;}
.x55{left:1065.406074px;}
.x34{left:1081.426067px;}
.x10{left:1087.546065px;}
.x35{left:1091.146064px;}
.x5d{left:1099.786060px;}
.xc{left:1103.566059px;}
.x24{left:1111.486055px;}
.x25{left:1119.046052px;}
.x4b{left:1128.046049px;}
.x64{left:1131.646047px;}
.x2e{left:1136.326045px;}
.x2f{left:1141.186044px;}
.xb{left:1145.865600px;}
.xf{left:1152.526039px;}
.x2{left:1155.045004px;}
.x8d{left:1184.206026px;}
@media print{
.v1{vertical-align:-31.999987pt;}
.v7{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.v4{vertical-align:10.879996pt;}
.v3{vertical-align:17.279993pt;}
.v5{vertical-align:27.519989pt;}
.v6{vertical-align:36.479985pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.133387pt;}
.ls9{letter-spacing:11.631835pt;}
.ls6{letter-spacing:12.271462pt;}
.lsc{letter-spacing:12.752955pt;}
.lsb{letter-spacing:14.063461pt;}
.lsa{letter-spacing:20.459938pt;}
.ls13{letter-spacing:28.871082pt;}
.ls8{letter-spacing:28.902282pt;}
.ls12{letter-spacing:31.460894pt;}
.ls14{letter-spacing:48.091714pt;}
.lsf{letter-spacing:56.444386pt;}
.ls10{letter-spacing:57.084053pt;}
.lse{letter-spacing:112.095955pt;}
.lsd{letter-spacing:1774.525598pt;}
.ls7{letter-spacing:1905.508571pt;}
.ls5{letter-spacing:1906.783237pt;}
.ls15{letter-spacing:2416.153700pt;}
.ls4{letter-spacing:3576.265236pt;}
.ls2{letter-spacing:3608.243890pt;}
.ls11{letter-spacing:3764.958494pt;}
.ls1{letter-spacing:3796.942481pt;}
.ws4{word-spacing:-17.791993pt;}
.ws1{word-spacing:-15.999994pt;}
.ws6{word-spacing:-13.279995pt;}
.ws5{word-spacing:-10.719996pt;}
.ws2{word-spacing:-8.639997pt;}
.ws3{word-spacing:-6.719997pt;}
.ws0{word-spacing:0.000000pt;}
._42{margin-left:-57.066161pt;}
._7{margin-left:-15.628415pt;}
._6{margin-left:-13.325823pt;}
._8{margin-left:-11.038921pt;}
._5{margin-left:-7.922501pt;}
._3{margin-left:-6.235968pt;}
._4{margin-left:-4.678314pt;}
._29{margin-left:-2.902347pt;}
._a{margin-left:-1.952985pt;}
._1{margin-left:-0.902314pt;}
._0{width:1.316142pt;}
._1a{width:2.226133pt;}
._b{width:3.154997pt;}
._f{width:4.204810pt;}
._10{width:5.096241pt;}
._1f{width:6.020477pt;}
._14{width:6.917762pt;}
._15{width:7.828485pt;}
._e{width:9.557988pt;}
._d{width:10.480925pt;}
._16{width:12.154846pt;}
._17{width:13.180841pt;}
._13{width:14.725494pt;}
._12{width:16.914630pt;}
._21{width:18.245280pt;}
._23{width:19.187425pt;}
._25{width:20.118845pt;}
._1e{width:21.091758pt;}
._28{width:22.047339pt;}
._11{width:23.015439pt;}
._c{width:24.050824pt;}
._9{width:24.991090pt;}
._19{width:26.168791pt;}
._18{width:27.182736pt;}
._20{width:28.464670pt;}
._27{width:29.357589pt;}
._1b{width:30.415024pt;}
._1c{width:31.811288pt;}
._1d{width:32.917134pt;}
._22{width:33.852795pt;}
._26{width:34.879035pt;}
._2a{width:37.239162pt;}
._24{width:38.184517pt;}
._31{width:39.223646pt;}
._30{width:40.273423pt;}
._32{width:41.334465pt;}
._34{width:42.224566pt;}
._33{width:43.490216pt;}
._2c{width:48.604516pt;}
._2b{width:49.823220pt;}
._44{width:55.804627pt;}
._40{width:57.084053pt;}
._41{width:58.363388pt;}
._3f{width:62.841058pt;}
._3c{width:66.039334pt;}
._3e{width:67.318727pt;}
._45{width:69.877107pt;}
._3d{width:72.436001pt;}
._47{width:75.634530pt;}
._48{width:78.832768pt;}
._46{width:80.111968pt;}
._3b{width:94.526683pt;}
._49{width:99.429294pt;}
._4a{width:113.570126pt;}
._3a{width:119.654176pt;}
._36{width:125.906950pt;}
._37{width:136.595624pt;}
._38{width:138.689374pt;}
._39{width:144.307620pt;}
._43{width:171.036732pt;}
._35{width:235.493798pt;}
._57{width:239.309225pt;}
._56{width:247.175028pt;}
._54{width:300.043066pt;}
._5a{width:310.223021pt;}
._58{width:325.653930pt;}
._59{width:332.125532pt;}
._51{width:342.143386pt;}
._5e{width:346.223041pt;}
._5d{width:385.681399pt;}
._4b{width:399.948332pt;}
._4c{width:407.881867pt;}
._52{width:413.613957pt;}
._5c{width:414.620792pt;}
._64{width:439.882491pt;}
._50{width:447.128489pt;}
._53{width:454.310961pt;}
._4d{width:463.576268pt;}
._55{width:479.567481pt;}
._61{width:495.119817pt;}
._4f{width:502.097353pt;}
._4e{width:507.238723pt;}
._63{width:511.072862pt;}
._60{width:518.088386pt;}
._2d{width:545.593305pt;}
._5b{width:551.077113pt;}
._5f{width:558.258633pt;}
._2e{width:956.895724pt;}
._62{width:983.129207pt;}
._2f{width:1070.113409pt;}
._2{width:2000.809866pt;}
.fs7{font-size:26.879989pt;}
.fs5{font-size:34.559986pt;}
.fs8{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fsa{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs4{font-size:69.119972pt;}
.fs2{font-size:85.119966pt;}
.fs1{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y1c8{bottom:3.840235pt;}
.y15{bottom:3.840293pt;}
.y115{bottom:24.853641pt;}
.y114{bottom:39.093635pt;}
.y145{bottom:49.013631pt;}
.y14{bottom:56.373333pt;}
.y13{bottom:68.213623pt;}
.y1cf{bottom:68.266906pt;}
.y143{bottom:69.013623pt;}
.y144{bottom:75.733620pt;}
.y140{bottom:75.893620pt;}
.y142{bottom:85.173617pt;}
.y95{bottom:88.533615pt;}
.y15a{bottom:88.693615pt;}
.ya7{bottom:90.773614pt;}
.yd1{bottom:91.093614pt;}
.y14a{bottom:92.213614pt;}
.ycb{bottom:92.533614pt;}
.yb8{bottom:93.493613pt;}
.y100{bottom:94.613613pt;}
.y8d{bottom:95.093613pt;}
.y13f{bottom:95.253613pt;}
.y12{bottom:95.413613pt;}
.yd2{bottom:95.733612pt;}
.yca{bottom:97.173612pt;}
.yec{bottom:97.653612pt;}
.y141{bottom:98.933611pt;}
.y41{bottom:99.573611pt;}
.y12a{bottom:100.213611pt;}
.y1e9{bottom:100.746626pt;}
.y159{bottom:101.653610pt;}
.y94{bottom:102.613610pt;}
.y1f0{bottom:102.986625pt;}
.y40{bottom:104.213609pt;}
.yd0{bottom:105.173609pt;}
.yb7{bottom:105.653608pt;}
.y129{bottom:106.293608pt;}
.y165{bottom:106.613608pt;}
.y16a{bottom:108.213607pt;}
.y8c{bottom:109.173607pt;}
.ycf{bottom:109.813607pt;}
.yb6{bottom:110.293607pt;}
.y19a{bottom:110.613606pt;}
.y62{bottom:110.773606pt;}
.y168{bottom:111.253606pt;}
.y189{bottom:111.893606pt;}
.y1ab{bottom:112.533606pt;}
.ya6{bottom:112.693606pt;}
.y2c{bottom:113.013605pt;}
.y11b{bottom:114.133605pt;}
.yc9{bottom:114.613605pt;}
.y1df{bottom:114.986621pt;}
.y1e3{bottom:115.306621pt;}
.y1d3{bottom:115.306887pt;}
.ybb{bottom:116.213604pt;}
.y93{bottom:116.693604pt;}
.y50{bottom:117.653604pt;}
.yd8{bottom:120.373603pt;}
.y164{bottom:120.693602pt;}
.y14e{bottom:121.013602pt;}
.yff{bottom:121.333602pt;}
.y75{bottom:121.493602pt;}
.y1e8{bottom:123.146617pt;}
.y8b{bottom:123.413601pt;}
.yeb{bottom:123.573601pt;}
.y1f7{bottom:125.226617pt;}
.y163{bottom:125.333601pt;}
.y1ef{bottom:125.386617pt;}
.yb5{bottom:125.973600pt;}
.y1d8{bottom:126.346883pt;}
.y1d6{bottom:126.666883pt;}
.ya5{bottom:126.933600pt;}
.y121{bottom:127.253600pt;}
.y1db{bottom:127.466882pt;}
.y11f{bottom:127.893600pt;}
.y15d{bottom:128.053599pt;}
.yc8{bottom:128.693599pt;}
.y158{bottom:129.173599pt;}
.y92{bottom:130.773598pt;}
.y11{bottom:130.933598pt;}
.ya4{bottom:131.573598pt;}
.y128{bottom:131.733598pt;}
.y167{bottom:133.173597pt;}
.y3f{bottom:133.973597pt;}
.y91{bottom:135.413597pt;}
.y74{bottom:135.573596pt;}
.y169{bottom:135.893596pt;}
.y8a{bottom:137.493596pt;}
.yb4{bottom:138.293595pt;}
.y188{bottom:139.413595pt;}
.y162{bottom:140.053595pt;}
.y1d2{bottom:140.586610pt;}
.y1aa{bottom:141.333594pt;}
.y89{bottom:142.133594pt;}
.y1fc{bottom:142.186610pt;}
.yc7{bottom:142.773594pt;}
.yb3{bottom:142.933593pt;}
.y1bb{bottom:143.413593pt;}
.yba{bottom:143.893593pt;}
.y16c{bottom:145.173593pt;}
.y120{bottom:145.973592pt;}
.y61{bottom:146.293592pt;}
.y11e{bottom:147.093592pt;}
.y1f6{bottom:147.626608pt;}
.y1e7{bottom:148.106607pt;}
.yea{bottom:149.333591pt;}
.y11a{bottom:149.653591pt;}
.y73{bottom:149.813591pt;}
.y15c{bottom:149.973591pt;}
.y1ee{bottom:150.506606pt;}
.y1de{bottom:150.666606pt;}
.y1e2{bottom:150.826606pt;}
.y1d7{bottom:151.786606pt;}
.y1d5{bottom:151.946606pt;}
.y1da{bottom:152.906606pt;}
.y161{bottom:154.293589pt;}
.y179{bottom:154.453589pt;}
.yb2{bottom:155.893588pt;}
.y14d{bottom:156.693588pt;}
.y10{bottom:156.853588pt;}
.y90{bottom:157.333588pt;}
.y4f{bottom:158.133587pt;}
.y2b{bottom:158.933587pt;}
.ya3{bottom:160.053587pt;}
.y1e6{bottom:161.866602pt;}
.y110{bottom:163.253585pt;}
.y149{bottom:163.413585pt;}
.y72{bottom:163.893585pt;}
.y88{bottom:164.053585pt;}
.y1ed{bottom:164.266601pt;}
.y1fb{bottom:164.586601pt;}
.y3e{bottom:167.093584pt;}
.y1d1{bottom:167.466600pt;}
.yb1{bottom:168.053583pt;}
.y199{bottom:168.213583pt;}
.y1a9{bottom:168.853583pt;}
.y1f5{bottom:170.026599pt;}
.yc6{bottom:170.933582pt;}
.yb9{bottom:171.413582pt;}
.y16b{bottom:171.573582pt;}
.y1ba{bottom:172.213582pt;}
.yb0{bottom:172.693582pt;}
.yc5{bottom:175.573580pt;}
.y1dd{bottom:176.106596pt;}
.y1e1{bottom:176.426596pt;}
.y71{bottom:177.973579pt;}
.y1c6{bottom:178.453579pt;}
.y1d4{bottom:178.666595pt;}
.y152{bottom:178.773579pt;}
.y1d9{bottom:179.786595pt;}
.ye9{bottom:179.893579pt;}
.yf{bottom:180.213579pt;}
.y160{bottom:180.853578pt;}
.yfe{bottom:181.653578pt;}
.y60{bottom:181.973578pt;}
.y70{bottom:182.613578pt;}
.y157{bottom:184.373577pt;}
.y183{bottom:185.493576pt;}
.y119{bottom:187.893576pt;}
.y1fa{bottom:189.706591pt;}
.y178{bottom:190.133575pt;}
.y10f{bottom:190.933574pt;}
.y148{bottom:191.093574pt;}
.y14c{bottom:192.213574pt;}
.yaf{bottom:194.453573pt;}
.y187{bottom:194.613573pt;}
.y1f4{bottom:194.986589pt;}
.y2a{bottom:196.853572pt;}
.yc4{bottom:197.493572pt;}
.y4e{bottom:198.453571pt;}
.y87{bottom:199.093571pt;}
.y1b9{bottom:200.853570pt;}
.y1cc{bottom:201.493333pt;}
.y1c7{bottom:202.453333pt;}
.y1c9{bottom:202.613333pt;}
.y1cd{bottom:202.933333pt;}
.y1dc{bottom:202.986585pt;}
.y1cb{bottom:203.093333pt;}
.y1e0{bottom:203.306585pt;}
.y1f9{bottom:203.466585pt;}
.y1ca{bottom:203.733333pt;}
.ye8{bottom:203.733569pt;}
.y3d{bottom:204.053569pt;}
.ye{bottom:204.213569pt;}
.y6f{bottom:204.533569pt;}
.ya2{bottom:205.173569pt;}
.y1a8{bottom:206.773568pt;}
.yce{bottom:207.093568pt;}
.yfd{bottom:207.413568pt;}
.y1ce{bottom:207.733568pt;}
.y1f3{bottom:208.746583pt;}
.y5f{bottom:209.493567pt;}
.y127{bottom:212.053566pt;}
.y10e{bottom:218.453563pt;}
.y147{bottom:218.613563pt;}
.y176{bottom:224.213561pt;}
.y198{bottom:225.653560pt;}
.y118{bottom:226.133560pt;}
.y86{bottom:226.613560pt;}
.ye7{bottom:227.733560pt;}
.y14b{bottom:227.893560pt;}
.y1b8{bottom:229.653559pt;}
.y186{bottom:230.293559pt;}
.yd{bottom:230.613558pt;}
.y3c{bottom:231.573558pt;}
.yae{bottom:232.693558pt;}
.yfc{bottom:233.173557pt;}
.yc3{bottom:234.613557pt;}
.y29{bottom:234.773557pt;}
.y182{bottom:235.093557pt;}
.y4d{bottom:238.773555pt;}
.y6e{bottom:239.573555pt;}
.y177{bottom:241.973554pt;}
.y5e{bottom:245.173553pt;}
.y175{bottom:245.973552pt;}
.y10d{bottom:246.133552pt;}
.y146{bottom:246.293552pt;}
.ye6{bottom:251.573550pt;}
.y1a7{bottom:254.133549pt;}
.y85{bottom:254.293549pt;}
.yc{bottom:257.013548pt;}
.y1b7{bottom:258.453547pt;}
.yfb{bottom:258.933547pt;}
.y3b{bottom:259.093547pt;}
.y166{bottom:260.373547pt;}
.yc2{bottom:262.293546pt;}
.y117{bottom:264.533545pt;}
.y185{bottom:265.813544pt;}
.y6d{bottom:267.093544pt;}
.y28{bottom:272.693542pt;}
.y10c{bottom:273.653541pt;}
.y126{bottom:275.093541pt;}
.ye5{bottom:275.413541pt;}
.y181{bottom:275.573540pt;}
.y4c{bottom:279.253539pt;}
.y5d{bottom:280.693538pt;}
.y84{bottom:281.813538pt;}
.y197{bottom:283.093537pt;}
.yb{bottom:283.413537pt;}
.yfa{bottom:284.533537pt;}
.y151{bottom:286.133536pt;}
.y3a{bottom:286.773536pt;}
.y1b6{bottom:287.093536pt;}
.y15b{bottom:287.893536pt;}
.y174{bottom:288.533535pt;}
.yc1{bottom:289.813535pt;}
.y180{bottom:293.973533pt;}
.y6c{bottom:294.773533pt;}
.ye4{bottom:299.413531pt;}
.y10b{bottom:301.333530pt;}
.y184{bottom:301.493530pt;}
.y125{bottom:302.773530pt;}
.y83{bottom:309.493527pt;}
.yf9{bottom:310.453526pt;}
.y27{bottom:310.613526pt;}
.y150{bottom:310.933526pt;}
.y196{bottom:311.893526pt;}
.y39{bottom:314.293525pt;}
.y11d{bottom:315.093525pt;}
.y1b5{bottom:315.893524pt;}
.y5c{bottom:316.213524pt;}
.yad{bottom:317.493524pt;}
.ya{bottom:318.773523pt;}
.y4b{bottom:319.573523pt;}
.y6b{bottom:322.293522pt;}
.ye3{bottom:323.253521pt;}
.y133{bottom:323.733521pt;}
.y10a{bottom:328.853519pt;}
.y124{bottom:330.293519pt;}
.y13e{bottom:332.693518pt;}
.y1c3{bottom:336.053516pt;}
.yf8{bottom:336.213516pt;}
.y14f{bottom:336.533516pt;}
.y82{bottom:337.013516pt;}
.y11c{bottom:338.773515pt;}
.y1a6{bottom:339.253515pt;}
.y195{bottom:340.533514pt;}
.y38{bottom:341.973514pt;}
.y173{bottom:342.933513pt;}
.y17f{bottom:343.573513pt;}
.yd7{bottom:344.533513pt;}
.y1b4{bottom:344.693513pt;}
.ya1{bottom:345.013513pt;}
.ye2{bottom:347.253512pt;}
.y26{bottom:348.533511pt;}
.y132{bottom:349.493511pt;}
.y5b{bottom:351.893510pt;}
.yc0{bottom:353.013509pt;}
.y9{bottom:354.453509pt;}
.y109{bottom:356.373508pt;}
.y6a{bottom:357.973507pt;}
.y4a{bottom:359.893507pt;}
.y13d{bottom:360.373507pt;}
.y81{bottom:364.693505pt;}
.y1a5{bottom:368.053503pt;}
.yf7{bottom:368.693503pt;}
.y194{bottom:369.333503pt;}
.ye1{bottom:371.093502pt;}
.y1c2{bottom:371.733502pt;}
.yd6{bottom:372.053502pt;}
.ya0{bottom:372.693502pt;}
.y1b3{bottom:373.333501pt;}
.y131{bottom:375.253501pt;}
.y36{bottom:377.493500pt;}
.y15f{bottom:378.773499pt;}
.y5a{bottom:379.413499pt;}
.ybf{bottom:380.693498pt;}
.y37{bottom:383.893497pt;}
.y69{bottom:385.493496pt;}
.y25{bottom:386.293496pt;}
.y13c{bottom:387.893496pt;}
.y156{bottom:388.373495pt;}
.y8{bottom:389.973495pt;}
.y123{bottom:391.573494pt;}
.y80{bottom:392.213494pt;}
.y108{bottom:393.013493pt;}
.y17e{bottom:393.173493pt;}
.yf6{bottom:394.453493pt;}
.ye0{bottom:395.093493pt;}
.y1a4{bottom:396.853492pt;}
.y172{bottom:397.333492pt;}
.y193{bottom:398.133491pt;}
.yd5{bottom:399.733491pt;}
.y9f{bottom:400.213491pt;}
.y49{bottom:400.373491pt;}
.y130{bottom:401.013490pt;}
.y1b2{bottom:402.133490pt;}
.y35{bottom:405.173489pt;}
.y59{bottom:407.093488pt;}
.ybe{bottom:408.213487pt;}
.y101{bottom:408.373487pt;}
.y67{bottom:413.173485pt;}
.y13b{bottom:415.573484pt;}
.y18b{bottom:417.013484pt;}
.y107{bottom:418.773483pt;}
.ydf{bottom:419.093483pt;}
.y68{bottom:419.253483pt;}
.y7f{bottom:419.893483pt;}
.yf5{bottom:420.213483pt;}
.y24{bottom:424.213481pt;}
.y1a3{bottom:425.493480pt;}
.y7{bottom:425.653480pt;}
.y12f{bottom:426.773480pt;}
.yd4{bottom:427.733480pt;}
.y9e{bottom:427.893480pt;}
.y1c1{bottom:429.173479pt;}
.y34{bottom:432.693478pt;}
.y58{bottom:434.613477pt;}
.ybc{bottom:435.893476pt;}
.y1b1{bottom:440.053475pt;}
.y48{bottom:440.693474pt;}
.ybd{bottom:441.973474pt;}
.y17d{bottom:442.773474pt;}
.y106{bottom:444.533473pt;}
.yf4{bottom:445.973472pt;}
.y7e{bottom:447.413472pt;}
.y18a{bottom:448.693471pt;}
.yde{bottom:449.653471pt;}
.y13a{bottom:451.093470pt;}
.y171{bottom:451.893470pt;}
.y12e{bottom:452.533470pt;}
.y1a2{bottom:454.293469pt;}
.y9d{bottom:455.413469pt;}
.y192{bottom:455.573468pt;}
.y1c0{bottom:457.973467pt;}
.y113{bottom:458.133467pt;}
.y33{bottom:460.373467pt;}
.ycd{bottom:461.493466pt;}
.y23{bottom:462.133466pt;}
.yac{bottom:463.413465pt;}
.y6{bottom:465.813464pt;}
.y66{bottom:468.373463pt;}
.y57{bottom:470.293463pt;}
.yf3{bottom:471.733462pt;}
.ydd{bottom:473.493461pt;}
.y112{bottom:474.293461pt;}
.y7d{bottom:475.093461pt;}
.y1b0{bottom:476.693460pt;}
.y12d{bottom:478.293459pt;}
.y139{bottom:478.773459pt;}
.y47{bottom:481.013458pt;}
.y9c{bottom:483.093457pt;}
.y191{bottom:484.373457pt;}
.yaa{bottom:491.093454pt;}
.y111{bottom:491.893454pt;}
.y17c{bottom:492.373454pt;}
.y16f{bottom:494.293453pt;}
.y1bf{bottom:495.733452pt;}
.y32{bottom:495.893452pt;}
.y105{bottom:496.053452pt;}
.yab{bottom:497.173452pt;}
.ydc{bottom:497.493452pt;}
.y56{bottom:497.813452pt;}
.y22{bottom:500.053451pt;}
.y7c{bottom:502.613450pt;}
.y12c{bottom:504.053449pt;}
.y138{bottom:506.293448pt;}
.y16e{bottom:508.053447pt;}
.y153{bottom:508.373447pt;}
.y9b{bottom:510.613446pt;}
.y1a1{bottom:511.733446pt;}
.y190{bottom:513.013445pt;}
.y5{bottom:514.453445pt;}
.y170{bottom:515.093445pt;}
.ya9{bottom:518.613443pt;}
.ydb{bottom:521.333442pt;}
.y46{bottom:521.493442pt;}
.y104{bottom:521.813442pt;}
.y16d{bottom:521.973442pt;}
.y1af{bottom:522.933441pt;}
.yf2{bottom:523.253441pt;}
.y1d{bottom:524.533441pt;}
.yd3{bottom:524.693441pt;}
.y55{bottom:525.493440pt;}
.y12b{bottom:529.813439pt;}
.y7b{bottom:530.293439pt;}
.y31{bottom:531.573438pt;}
.y1be{bottom:532.533438pt;}
.y137{bottom:533.973437pt;}
.y21{bottom:537.973435pt;}
.y8f{bottom:538.293435pt;}
.y1a0{bottom:540.533434pt;}
.y18f{bottom:541.813434pt;}
.y17b{bottom:541.973434pt;}
.y9a{bottom:546.293432pt;}
.yf1{bottom:549.013431pt;}
.y1c{bottom:549.173431pt;}
.yda{bottom:550.613430pt;}
.y54{bottom:553.013429pt;}
.y103{bottom:555.573428pt;}
.y4{bottom:560.053427pt;}
.y1b{bottom:561.173426pt;}
.y136{bottom:561.493426pt;}
.y45{bottom:561.813426pt;}
.y7a{bottom:565.813424pt;}
.y1c5{bottom:566.453424pt;}
.y30{bottom:567.093424pt;}
.y1e5{bottom:567.146440pt;}
.y1bd{bottom:568.213423pt;}
.y19f{bottom:569.333423pt;}
.y18e{bottom:570.613422pt;}
.y99{bottom:573.813421pt;}
.y20{bottom:575.893420pt;}
.y1a{bottom:576.373420pt;}
.y65{bottom:577.493420pt;}
.y1ec{bottom:578.186435pt;}
.y1ae{bottom:579.253419pt;}
.ya8{bottom:579.893419pt;}
.y155{bottom:580.373419pt;}
.y1e4{bottom:580.906434pt;}
.yf0{bottom:581.333418pt;}
.y53{bottom:588.693415pt;}
.y17a{bottom:591.253414pt;}
.y1eb{bottom:591.946430pt;}
.y79{bottom:593.493413pt;}
.y3{bottom:595.573412pt;}
.y1bc{bottom:596.853412pt;}
.y135{bottom:597.173412pt;}
.y19e{bottom:597.973411pt;}
.y19{bottom:598.773411pt;}
.y18d{bottom:599.253411pt;}
.y8e{bottom:599.573411pt;}
.y1fe{bottom:600.746426pt;}
.y97{bottom:601.493410pt;}
.y44{bottom:602.133410pt;}
.y2f{bottom:602.773410pt;}
.y1c4{bottom:604.053409pt;}
.y1ad{bottom:606.933408pt;}
.yef{bottom:607.093408pt;}
.y98{bottom:607.573408pt;}
.yd9{bottom:609.013407pt;}
.y1f{bottom:612.693406pt;}
.y64{bottom:613.013405pt;}
.y1fd{bottom:614.506421pt;}
.y1f2{bottom:614.986421pt;}
.y52{bottom:616.213404pt;}
.y78{bottom:621.013402pt;}
.y18{bottom:621.173402pt;}
.y134{bottom:624.853401pt;}
.y19d{bottom:625.653400pt;}
.y1f1{bottom:628.586415pt;}
.y1f8{bottom:628.746415pt;}
.y96{bottom:629.013399pt;}
.y2{bottom:631.253398pt;}
.yee{bottom:632.853398pt;}
.y1ac{bottom:634.453397pt;}
.y18c{bottom:637.173396pt;}
.y2e{bottom:638.293395pt;}
.y43{bottom:642.613394pt;}
.y51{bottom:643.893393pt;}
.y1e{bottom:648.373391pt;}
.y63{bottom:648.693391pt;}
.y17{bottom:652.693390pt;}
.y19c{bottom:654.453389pt;}
.y76{bottom:656.693388pt;}
.yed{bottom:658.613387pt;}
.y77{bottom:662.773386pt;}
.y1{bottom:666.773384pt;}
.y2d{bottom:674.613381pt;}
.y154{bottom:675.573380pt;}
.y116{bottom:681.493378pt;}
.y122{bottom:682.613378pt;}
.y42{bottom:682.933377pt;}
.y19b{bottom:683.093377pt;}
.y16{bottom:684.213377pt;}
.y102{bottom:684.373377pt;}
.ycc{bottom:690.293375pt;}
.y15e{bottom:691.573374pt;}
.y1d0{bottom:1004.106532pt;}
.y1ea{bottom:1004.266532pt;}
.h5{height:18.240000pt;}
.hc{height:23.585616pt;}
.h10{height:23.996240pt;}
.h9{height:30.324363pt;}
.hf{height:32.570612pt;}
.hb{height:37.624672pt;}
.h13{height:42.117171pt;}
.h6{height:44.437482pt;}
.ha{height:44.799982pt;}
.h4{height:46.609669pt;}
.h11{height:51.342479pt;}
.h19{height:51.663729pt;}
.h18{height:55.402478pt;}
.h1{height:56.156228pt;}
.hd{height:56.796227pt;}
.h7{height:56.843727pt;}
.h17{height:60.648726pt;}
.h8{height:61.391225pt;}
.h12{height:65.784661pt;}
.he{height:66.749973pt;}
.h14{height:69.637160pt;}
.h15{height:70.277159pt;}
.h3{height:74.687783pt;}
.h16{height:92.636213pt;}
.h2{height:93.780900pt;}
.h0{height:793.333333pt;}
.h1a{height:1122.666667pt;}
.w1{width:0.160000pt;}
.w4{width:3.360000pt;}
.w2{width:5.280000pt;}
.w5{width:5.440000pt;}
.w3{width:5.600000pt;}
.w6{width:6.720000pt;}
.w7{width:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x86{left:47.347448pt;}
.xa{left:56.787496pt;}
.x85{left:61.267442pt;}
.x82{left:66.227440pt;}
.x19{left:75.667436pt;}
.x84{left:80.787434pt;}
.x81{left:85.267433pt;}
.x8e{left:94.559962pt;}
.x1{left:95.987428pt;}
.x1a{left:103.987425pt;}
.x2c{left:107.347424pt;}
.x23{left:108.467423pt;}
.x3b{left:110.707422pt;}
.x6b{left:111.827422pt;}
.x1b{left:122.867396pt;}
.x52{left:127.827416pt;}
.x9a{left:132.319312pt;}
.x59{left:135.667946pt;}
.x29{left:141.747378pt;}
.x26{left:147.027941pt;}
.x27{left:151.507939pt;}
.x41{left:159.507936pt;}
.x28{left:160.788504pt;}
.x68{left:172.467931pt;}
.x46{left:174.867930pt;}
.x70{left:195.027922pt;}
.x72{left:203.827918pt;}
.x76{left:207.667917pt;}
.x48{left:210.868492pt;}
.x89{left:214.387200pt;}
.x77{left:216.947913pt;}
.x43{left:219.982579pt;}
.x74{left:225.427910pt;}
.x44{left:230.707189pt;}
.x71{left:234.067906pt;}
.x7b{left:239.987904pt;}
.x75{left:241.427903pt;}
.x65{left:250.387900pt;}
.x66{left:253.267899pt;}
.x67{left:261.907895pt;}
.x7e{left:264.467894pt;}
.x21{left:267.987893pt;}
.x7a{left:270.067892pt;}
.x22{left:272.307891pt;}
.x58{left:282.227887pt;}
.x6e{left:284.467886pt;}
.x79{left:287.667885pt;}
.x78{left:288.947884pt;}
.x7c{left:291.987883pt;}
.x6f{left:293.107883pt;}
.x7d{left:298.707840pt;}
.x7f{left:300.467880pt;}
.x69{left:302.227879pt;}
.x6a{left:311.347875pt;}
.x61{left:320.787872pt;}
.x37{left:331.187868pt;}
.x5b{left:338.707865pt;}
.x38{left:339.827864pt;}
.x5a{left:342.067863pt;}
.x8a{left:353.907200pt;}
.x73{left:357.907888pt;}
.x98{left:375.679850pt;}
.x90{left:381.119848pt;}
.x3c{left:389.907844pt;}
.x39{left:400.467840pt;}
.x9f{left:402.719839pt;}
.x9c{left:403.999838pt;}
.x12{left:405.107838pt;}
.x91{left:406.399837pt;}
.x3a{left:410.227836pt;}
.x11{left:414.545061pt;}
.x99{left:418.079833pt;}
.x95{left:425.279830pt;}
.x57{left:441.907823pt;}
.x42{left:447.187821pt;}
.x4a{left:475.187810pt;}
.x2a{left:489.587804pt;}
.x2b{left:493.907802pt;}
.x49{left:500.947800pt;}
.x40{left:509.907796pt;}
.x9e{left:517.119793pt;}
.x45{left:518.387793pt;}
.x13{left:519.827792pt;}
.x88{left:526.067812pt;}
.x97{left:529.279788pt;}
.x87{left:537.747785pt;}
.x83{left:555.347778pt;}
.x9b{left:557.599777pt;}
.x9d{left:559.039776pt;}
.x14{left:561.267775pt;}
.x18{left:564.627774pt;}
.x53{left:566.068335pt;}
.x93{left:573.279771pt;}
.x8f{left:574.559770pt;}
.x94{left:575.999770pt;}
.x92{left:577.439769pt;}
.x15{left:580.147768pt;}
.x47{left:581.747767pt;}
.x1c{left:584.947766pt;}
.x20{left:588.307765pt;}
.x96{left:591.199764pt;}
.x36{left:592.147763pt;}
.x4f{left:593.587763pt;}
.x50{left:601.587759pt;}
.x1d{left:603.827758pt;}
.x5f{left:617.587753pt;}
.x6d{left:622.702531pt;}
.x8b{left:630.067200pt;}
.x6c{left:641.742323pt;}
.x56{left:647.507741pt;}
.x5e{left:653.907738pt;}
.x32{left:669.907732pt;}
.x33{left:679.187728pt;}
.x30{left:696.627721pt;}
.x31{left:700.947720pt;}
.x4c{left:732.467707pt;}
.x51{left:743.827702pt;}
.x8c{left:771.827200pt;}
.x3f{left:778.547689pt;}
.x5c{left:793.107683pt;}
.x4{left:801.587679pt;}
.x4d{left:806.387677pt;}
.x54{left:808.947676pt;}
.x4e{left:817.107673pt;}
.xe{left:822.699882pt;}
.x2d{left:829.107668pt;}
.x5{left:834.227666pt;}
.xd{left:852.947698pt;}
.x60{left:860.467656pt;}
.x3d{left:877.427649pt;}
.x63{left:881.586385pt;}
.x3e{left:886.067646pt;}
.x6{left:888.467594pt;}
.x7{left:889.907598pt;}
.x8{left:895.987642pt;}
.x9{left:902.227661pt;}
.x62{left:905.586316pt;}
.x1e{left:911.987635pt;}
.x1f{left:916.307633pt;}
.x16{left:934.867626pt;}
.x17{left:939.187624pt;}
.x3{left:942.547623pt;}
.x80{left:945.427622pt;}
.x55{left:947.027621pt;}
.x34{left:961.267615pt;}
.x10{left:966.707613pt;}
.x35{left:969.907612pt;}
.x5d{left:977.587609pt;}
.xc{left:980.947608pt;}
.x24{left:987.987605pt;}
.x25{left:994.707602pt;}
.x4b{left:1002.707599pt;}
.x64{left:1005.907598pt;}
.x2e{left:1010.067596pt;}
.x2f{left:1014.387594pt;}
.xb{left:1018.547200pt;}
.xf{left:1024.467590pt;}
.x2{left:1026.706670pt;}
.x8d{left:1052.627579pt;}
}




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