
    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_97272aa3d9305e0b9e6dff9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108000;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_f8b143d119cb0f50fb4fa265.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_814527326500dbb28ec486af.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.111816;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_4f6e9f4c8a3805cbaecc3d12.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120117;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_94562a2756bd23e45f24e53d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;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_2e8b3becc510a4daf108ead9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_b1a30d38c13307505cc672e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.085000;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_decbd9a6e5ff07081b22a6a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.480000px;}
.lse{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.780000px;}
.ls5{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.200000px;}
.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;}
}
.ws2{word-spacing:-15.600000px;}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-776.940000px;}
._1{margin-left:-7.410000px;}
._b{margin-left:-6.360000px;}
._2{margin-left:-4.968000px;}
._9{margin-left:-3.900000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.170000px;}
._4{width:1.140000px;}
._6{width:2.280000px;}
._5{width:3.300000px;}
._8{width:4.500000px;}
._a{width:5.700000px;}
._7{width:7.440000px;}
._c{width:8.490000px;}
._d{width:10.020000px;}
._11{width:11.100000px;}
._10{width:12.780000px;}
._e{width:40.020000px;}
._f{width:49.020000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000360px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:108.000000px;}
.yf7{bottom:-0.824070px;}
.yf9{bottom:-0.484035px;}
.y1e6{bottom:-0.002100px;}
.y1a9{bottom:-0.000630px;}
.y0{bottom:0.000000px;}
.y26a{bottom:0.001500px;}
.y283{bottom:0.001710px;}
.y21b{bottom:0.004890px;}
.y98{bottom:0.006345px;}
.y8{bottom:0.131460px;}
.y171{bottom:0.138240px;}
.y12{bottom:0.138705px;}
.y155{bottom:0.154845px;}
.y1b7{bottom:0.154995px;}
.y24a{bottom:0.158205px;}
.y20e{bottom:0.158385px;}
.y22f{bottom:0.158610px;}
.yf1{bottom:0.160020px;}
.y2af{bottom:0.161910px;}
.y2b9{bottom:0.162000px;}
.yc8{bottom:0.163020px;}
.y58{bottom:0.163140px;}
.y2d1{bottom:0.163245px;}
.ybc{bottom:0.166350px;}
.y2a8{bottom:0.166890px;}
.y17c{bottom:0.168360px;}
.y2a4{bottom:0.168495px;}
.yac{bottom:0.168660px;}
.y204{bottom:0.170205px;}
.y288{bottom:0.170520px;}
.y46{bottom:0.176520px;}
.y165{bottom:0.176610px;}
.y28{bottom:0.177705px;}
.yca{bottom:0.179910px;}
.y1cf{bottom:0.180615px;}
.y14{bottom:0.184290px;}
.y1af{bottom:0.185310px;}
.y1ee{bottom:0.190245px;}
.y26c{bottom:0.190470px;}
.y293{bottom:0.193725px;}
.y2b3{bottom:0.194010px;}
.y1e2{bottom:0.198660px;}
.y2be{bottom:0.199185px;}
.y1e8{bottom:0.200415px;}
.ydf{bottom:0.203745px;}
.y13a{bottom:0.205440px;}
.y19e{bottom:0.205905px;}
.y10d{bottom:0.208605px;}
.y74{bottom:0.210525px;}
.y151{bottom:0.212130px;}
.y191{bottom:0.212505px;}
.y1a4{bottom:0.212700px;}
.y14f{bottom:0.213720px;}
.ye5{bottom:0.213930px;}
.y15b{bottom:0.214050px;}
.y24{bottom:0.214830px;}
.y2{bottom:0.214980px;}
.y145{bottom:0.215250px;}
.y172{bottom:0.215355px;}
.y206{bottom:0.264675px;}
.y2b7{bottom:0.264915px;}
.y20a{bottom:0.266370px;}
.y29b{bottom:0.267975px;}
.y2c0{bottom:0.268410px;}
.y279{bottom:0.273285px;}
.y1c0{bottom:0.275010px;}
.ya{bottom:0.324915px;}
.yc{bottom:0.325275px;}
.y16b{bottom:0.336480px;}
.y254{bottom:1.928460px;}
.y1b9{bottom:1.936980px;}
.y29f{bottom:2.109090px;}
.y23c{bottom:2.111115px;}
.y1ad{bottom:2.112390px;}
.y70{bottom:2.114040px;}
.y2a6{bottom:2.114190px;}
.y23e{bottom:2.114505px;}
.y2c7{bottom:2.115795px;}
.y2eb{bottom:2.115915px;}
.ya0{bottom:2.115975px;}
.y240{bottom:2.116185px;}
.y221{bottom:2.117700px;}
.y258{bottom:2.119170px;}
.y2cb{bottom:2.119185px;}
.y8e{bottom:2.119260px;}
.y1df{bottom:2.119605px;}
.y24c{bottom:2.120820px;}
.y1b3{bottom:2.120865px;}
.y217{bottom:2.121000px;}
.y174{bottom:2.198340px;}
.y44{bottom:2.200380px;}
.y175{bottom:2.200755px;}
.y6{bottom:2.207250px;}
.y4{bottom:2.211480px;}
.y16f{bottom:2.515590px;}
.y10{bottom:2.516040px;}
.y16d{bottom:2.516880px;}
.y42{bottom:2.608710px;}
.y40{bottom:2.610045px;}
.y1f1{bottom:2.648985px;}
.y1b5{bottom:2.649075px;}
.y2e4{bottom:2.649120px;}
.yff{bottom:2.650365px;}
.y24e{bottom:2.650725px;}
.y82{bottom:2.650770px;}
.y9a{bottom:2.650860px;}
.y238{bottom:2.651115px;}
.yd8{bottom:2.652225px;}
.y295{bottom:2.652375px;}
.y26d{bottom:2.652600px;}
.y27c{bottom:2.652690px;}
.y2c2{bottom:2.654025px;}
.y260{bottom:2.654205px;}
.y2b5{bottom:2.654415px;}
.y1d1{bottom:2.654505px;}
.y10f{bottom:2.655540px;}
.y246{bottom:2.655660px;}
.y297{bottom:2.655810px;}
.y2da{bottom:2.655855px;}
.y208{bottom:2.655900px;}
.y271{bottom:2.655990px;}
.y22d{bottom:2.656110px;}
.y1d9{bottom:2.657910px;}
.y105{bottom:2.658825px;}
.y1ea{bottom:2.659050px;}
.y1fe{bottom:2.659200px;}
.y211{bottom:2.659290px;}
.y2f3{bottom:2.659320px;}
.y1cc{bottom:2.659515px;}
.y2cd{bottom:2.660805px;}
.y92{bottom:2.660955px;}
.y223{bottom:2.661120px;}
.y2a2{bottom:2.665965px;}
.y286{bottom:2.695020px;}
.y130{bottom:2.950740px;}
.ye3{bottom:2.951040px;}
.y147{bottom:2.959080px;}
.ye9{bottom:2.959530px;}
.y11c{bottom:2.961135px;}
.y250{bottom:3.070860px;}
.y27e{bottom:3.071205px;}
.y3c{bottom:3.073635px;}
.y1fb{bottom:3.074295px;}
.y28f{bottom:3.075900px;}
.y273{bottom:3.076215px;}
.y107{bottom:3.077310px;}
.y2e0{bottom:3.077730px;}
.y213{bottom:3.077775px;}
.y225{bottom:3.079605px;}
.y233{bottom:3.079695px;}
.y200{bottom:3.081060px;}
.y2a{bottom:3.083625px;}
.y2e8{bottom:3.084555px;}
.y26f{bottom:3.084600px;}
.y2c3{bottom:3.085965px;}
.y252{bottom:3.086055px;}
.y21d{bottom:3.086280px;}
.y22b{bottom:3.086415px;}
.y28a{bottom:3.086490px;}
.y111{bottom:3.087525px;}
.y2dc{bottom:3.087840px;}
.y1bc{bottom:3.087885px;}
.y1d5{bottom:3.088200px;}
.y1e4{bottom:3.089355px;}
.y1fd{bottom:3.089490px;}
.y21f{bottom:3.089715px;}
.y1c8{bottom:3.089805px;}
.y54{bottom:3.090915px;}
.y1ec{bottom:3.091095px;}
.y275{bottom:3.091410px;}
.y28d{bottom:3.091590px;}
.y29d{bottom:3.092880px;}
.y2e1{bottom:3.092925px;}
.y268{bottom:3.092970px;}
.y281{bottom:3.093195px;}
.y244{bottom:3.093315px;}
.y291{bottom:3.094485px;}
.y227{bottom:3.094800px;}
.y235{bottom:3.094920px;}
.y1f3{bottom:3.096210px;}
.y202{bottom:3.096270px;}
.y2aa{bottom:3.096405px;}
.y229{bottom:3.096495px;}
.y23a{bottom:3.096615px;}
.y1c2{bottom:3.098205px;}
.y262{bottom:3.099705px;}
.y1c4{bottom:3.099915px;}
.y1d3{bottom:3.100005px;}
.y248{bottom:3.101160px;}
.y2c5{bottom:3.101265px;}
.y299{bottom:3.101310px;}
.y20c{bottom:3.101385px;}
.y2ed{bottom:3.101430px;}
.y2ac{bottom:3.101490px;}
.y1c6{bottom:3.101595px;}
.y1db{bottom:3.103410px;}
.yb4{bottom:3.104190px;}
.y256{bottom:3.104700px;}
.y2f5{bottom:3.104820px;}
.y1ca{bottom:3.105015px;}
.y1dd{bottom:3.105105px;}
.yb6{bottom:3.105930px;}
.y56{bottom:3.106155px;}
.y2cf{bottom:3.106290px;}
.y24d{bottom:3.106305px;}
.y215{bottom:3.106470px;}
.y277{bottom:3.106620px;}
.y25a{bottom:3.108075px;}
.y101{bottom:3.109320px;}
.y25c{bottom:3.109770px;}
.y219{bottom:3.109905px;}
.y2bb{bottom:3.110115px;}
.y116{bottom:3.111225px;}
.y1f5{bottom:3.111420px;}
.y2d7{bottom:3.111510px;}
.yb2{bottom:3.129540px;}
.y1bb{bottom:3.140220px;}
.yb0{bottom:3.141270px;}
.y153{bottom:3.145020px;}
.ye{bottom:3.151890px;}
.y137{bottom:3.155055px;}
.y186{bottom:3.248205px;}
.y15d{bottom:3.249300px;}
.y118{bottom:3.249615px;}
.y176{bottom:3.249660px;}
.y157{bottom:3.249735px;}
.y17f{bottom:3.249810px;}
.y88{bottom:3.249840px;}
.y264{bottom:3.249885px;}
.y1be{bottom:3.249990px;}
.y27f{bottom:3.250095px;}
.y1d7{bottom:3.250200px;}
.y15f{bottom:3.251025px;}
.ycf{bottom:3.251220px;}
.y177{bottom:3.251400px;}
.y2de{bottom:3.251550px;}
.y20f{bottom:3.251595px;}
.y231{bottom:3.251805px;}
.y242{bottom:3.251910px;}
.y12c{bottom:3.252690px;}
.y149{bottom:3.252825px;}
.y52{bottom:3.252915px;}
.y167{bottom:3.253050px;}
.y124{bottom:3.253140px;}
.y141{bottom:3.253230px;}
.y8c{bottom:3.253260px;}
.y28b{bottom:3.253590px;}
.yfd{bottom:3.254415px;}
.y1ef{bottom:3.254790px;}
.y169{bottom:3.254835px;}
.y1b1{bottom:3.254880px;}
.y143{bottom:3.254940px;}
.y266{bottom:3.254970px;}
.ya6{bottom:3.255075px;}
.y2b1{bottom:3.255120px;}
.y19c{bottom:3.255195px;}
.y1e0{bottom:3.255315px;}
.y14b{bottom:3.256215px;}
.y114{bottom:3.256350px;}
.y12e{bottom:3.257805px;}
.y10b{bottom:3.257910px;}
.y13c{bottom:3.258135px;}
.y96{bottom:3.258360px;}
.y27a{bottom:3.258510px;}
.y1a0{bottom:3.258615px;}
.y1e{bottom:3.259005px;}
.y159{bottom:3.259935px;}
.y25e{bottom:3.260010px;}
.y18f{bottom:3.260100px;}
.y1a1{bottom:3.260310px;}
.y103{bottom:3.261195px;}
.y14d{bottom:3.261330px;}
.y72{bottom:3.261555px;}
.yed{bottom:3.261645px;}
.y62{bottom:3.263115px;}
.y1ab{bottom:3.263205px;}
.y120{bottom:3.263250px;}
.y78{bottom:3.263265px;}
.y1f9{bottom:3.263310px;}
.yef{bottom:3.263355px;}
.y188{bottom:3.263400px;}
.y2ef{bottom:3.263430px;}
.y2ad{bottom:3.263490px;}
.y199{bottom:3.263610px;}
.y2bc{bottom:3.263715px;}
.y30{bottom:3.264225px;}
.yfb{bottom:3.264495px;}
.yc4{bottom:3.264630px;}
.y163{bottom:3.264720px;}
.y50{bottom:3.264765px;}
.ydc{bottom:3.264825px;}
.y2c9{bottom:3.264855px;}
.y64{bottom:3.264870px;}
.y122{bottom:3.264930px;}
.y7a{bottom:3.264945px;}
.y180{bottom:3.264990px;}
.y12a{bottom:3.265035px;}
.y8a{bottom:3.265050px;}
.y189{bottom:3.265095px;}
.y2f1{bottom:3.265140px;}
.ya2{bottom:3.265155px;}
.y192{bottom:3.265185px;}
.y19a{bottom:3.265290px;}
.y1a5{bottom:3.265410px;}
.y16{bottom:3.265725px;}
.y26{bottom:3.265830px;}
.y32{bottom:3.265935px;}
.y161{bottom:3.266235px;}
.yc6{bottom:3.266325px;}
.yd1{bottom:3.266430px;}
.y66{bottom:3.266550px;}
.y178{bottom:3.266595px;}
.ye7{bottom:3.266640px;}
.y7c{bottom:3.266655px;}
.y181{bottom:3.266700px;}
.yf3{bottom:3.266745px;}
.y90{bottom:3.266760px;}
.y18a{bottom:3.266790px;}
.y2f7{bottom:3.266820px;}
.ya4{bottom:3.266850px;}
.y193{bottom:3.266910px;}
.y19b{bottom:3.267015px;}
.y1a6{bottom:3.267105px;}
.y18{bottom:3.267435px;}
.y34{bottom:3.267645px;}
.yb8{bottom:3.267885px;}
.y132{bottom:3.268020px;}
.yd3{bottom:3.268110px;}
.y11a{bottom:3.268245px;}
.y68{bottom:3.268260px;}
.y7e{bottom:3.268335px;}
.y182{bottom:3.268380px;}
.yf5{bottom:3.268425px;}
.y18b{bottom:3.268470px;}
.y2f9{bottom:3.268530px;}
.y194{bottom:3.268620px;}
.y1cd{bottom:3.268695px;}
.y1a7{bottom:3.268800px;}
.y1a{bottom:3.269115px;}
.y36{bottom:3.269325px;}
.yba{bottom:3.269625px;}
.y109{bottom:3.269715px;}
.yd5{bottom:3.269820px;}
.y5a{bottom:3.269865px;}
.y6a{bottom:3.269940px;}
.y179{bottom:3.269985px;}
.y80{bottom:3.270030px;}
.y183{bottom:3.270075px;}
.y94{bottom:3.270150px;}
.y18c{bottom:3.270180px;}
.ya8{bottom:3.270255px;}
.y195{bottom:3.270300px;}
.y236{bottom:3.270405px;}
.y1c{bottom:3.270825px;}
.y38{bottom:3.271035px;}
.y134{bottom:3.271410px;}
.y48{bottom:3.271455px;}
.y5c{bottom:3.271545px;}
.y6c{bottom:3.271635px;}
.y2d4{bottom:3.271725px;}
.y128{bottom:3.271755px;}
.y184{bottom:3.271770px;}
.y2e6{bottom:3.271815px;}
.y18d{bottom:3.271905px;}
.yaa{bottom:3.271965px;}
.y196{bottom:3.272010px;}
.y3a{bottom:3.272745px;}
.ybe{bottom:3.273015px;}
.y4a{bottom:3.273105px;}
.y5e{bottom:3.273240px;}
.y6e{bottom:3.273330px;}
.y1f6{bottom:3.273375px;}
.yeb{bottom:3.273435px;}
.y84{bottom:3.273465px;}
.y9c{bottom:3.273570px;}
.y1bd{bottom:3.273615px;}
.y197{bottom:3.273690px;}
.y284{bottom:3.273810px;}
.y20{bottom:3.274200px;}
.y2c{bottom:3.274335px;}
.yc0{bottom:3.274755px;}
.y4c{bottom:3.274830px;}
.y60{bottom:3.274935px;}
.y76{bottom:3.275025px;}
.y11e{bottom:3.275040px;}
.y17d{bottom:3.275115px;}
.y13f{bottom:3.275145px;}
.y86{bottom:3.275160px;}
.y207{bottom:3.275205px;}
.y9e{bottom:3.275250px;}
.y190{bottom:3.275295px;}
.y198{bottom:3.275415px;}
.y1a2{bottom:3.275505px;}
.y22{bottom:3.275940px;}
.y2e{bottom:3.276030px;}
.y3e{bottom:3.276135px;}
.yae{bottom:3.276300px;}
.yc2{bottom:3.276390px;}
.y4e{bottom:3.276495px;}
.ycd{bottom:3.276540px;}
.y3{bottom:72.198000px;}
.y173{bottom:72.211515px;}
.y16a{bottom:75.573000px;}
.y1{bottom:75.694500px;}
.y1a8{bottom:75.910485px;}
.yf4{bottom:117.706515px;}
.y142{bottom:117.720000px;}
.y243{bottom:117.882000px;}
.yab{bottom:118.503000px;}
.y41{bottom:120.217500px;}
.ya9{bottom:133.474500px;}
.y3f{bottom:134.676000px;}
.yf2{bottom:135.783000px;}
.y140{bottom:135.796515px;}
.y1dc{bottom:135.945000px;}
.y28c{bottom:135.958515px;}
.y1de{bottom:136.930500px;}
.ya7{bottom:151.551000px;}
.y129{bottom:153.859500px;}
.y241{bottom:153.873000px;}
.y1da{bottom:154.021500px;}
.y1d8{bottom:154.467000px;}
.y2bf{bottom:156.856500px;}
.y15a{bottom:156.910485px;}
.yf0{bottom:156.964515px;}
.ya5{bottom:169.640985px;}
.y3d{bottom:170.613000px;}
.y3b{bottom:170.815500px;}
.yee{bottom:171.935985px;}
.y1d6{bottom:171.949500px;}
.y1d4{bottom:172.111500px;}
.y23f{bottom:173.083515px;}
.y1a3{bottom:174.987000px;}
.y2bd{bottom:175.000515px;}
.ya3{bottom:187.704000px;}
.y13e{bottom:189.999000px;}
.yec{bottom:190.012500px;}
.y1d2{bottom:190.174500px;}
.y289{bottom:190.188015px;}
.y285{bottom:190.579485px;}
.y1d0{bottom:190.620000px;}
.y23d{bottom:191.160000px;}
.y287{bottom:193.103985px;}
.ya1{bottom:205.780500px;}
.y39{bottom:206.765985px;}
.yea{bottom:208.075500px;}
.y158{bottom:208.089000px;}
.y37{bottom:224.842485px;}
.y9f{bottom:225.004485px;}
.y127{bottom:226.151985px;}
.y19f{bottom:226.165485px;}
.y2ba{bottom:226.313985px;}
.y239{bottom:226.327485px;}
.y237{bottom:226.772985px;}
.y23b{bottom:227.312985px;}
.y1ce{bottom:229.243485px;}
.y9d{bottom:241.920000px;}
.y35{bottom:242.919000px;}
.y126{bottom:244.228500px;}
.y234{bottom:244.403985px;}
.ye8{bottom:244.539000px;}
.y19d{bottom:247.293000px;}
.y9b{bottom:259.996485px;}
.y33{bottom:260.995485px;}
.y125{bottom:262.305000px;}
.y168{bottom:262.318500px;}
.y280{bottom:262.480500px;}
.y232{bottom:262.494000px;}
.y282{bottom:265.571985px;}
.y95{bottom:278.086485px;}
.y99{bottom:278.693985px;}
.y31{bottom:279.071985px;}
.ye6{bottom:280.381485px;}
.y123{bottom:280.394985px;}
.y1c9{bottom:280.543485px;}
.y1cb{bottom:280.988985px;}
.y2b8{bottom:283.486500px;}
.y97{bottom:285.538485px;}
.y93{bottom:296.149500px;}
.y2f{bottom:297.148500px;}
.y121{bottom:298.458000px;}
.y230{bottom:298.471485px;}
.y1c7{bottom:298.633485px;}
.ye4{bottom:301.509000px;}
.y91{bottom:314.833485px;}
.y2d{bottom:315.211485px;}
.y11f{bottom:316.534485px;}
.y156{bottom:316.548000px;}
.y1c5{bottom:316.696500px;}
.y22c{bottom:317.141985px;}
.y22e{bottom:319.639485px;}
.y8f{bottom:332.302485px;}
.y8b{bottom:332.315985px;}
.y2b{bottom:333.287985px;}
.y8d{bottom:333.449985px;}
.y11d{bottom:334.597485px;}
.y1c3{bottom:334.772985px;}
.y22a{bottom:334.786485px;}
.ye2{bottom:334.921485px;}
.y2b4{bottom:335.218485px;}
.y2b6{bottom:337.607985px;}
.y89{bottom:350.379000px;}
.y29{bottom:351.553485px;}
.y13d{bottom:352.674000px;}
.y1c1{bottom:352.849485px;}
.y27d{bottom:352.876485px;}
.y27b{bottom:353.295000px;}
.y154{bottom:355.792485px;}
.y87{bottom:368.469000px;}
.ye1{bottom:370.750485px;}
.y13b{bottom:370.763985px;}
.y228{bottom:370.926000px;}
.y11b{bottom:371.060985px;}
.y1bf{bottom:373.747485px;}
.y2b2{bottom:373.828485px;}
.y85{bottom:386.518485px;}
.ye0{bottom:388.826985px;}
.y226{bottom:389.002485px;}
.y27{bottom:390.609015px;}
.y278{bottom:391.824000px;}
.y139{bottom:391.891485px;}
.y83{bottom:404.594970px;}
.y119{bottom:406.903470px;}
.y2b0{bottom:406.916970px;}
.y276{bottom:407.065470px;}
.y224{bottom:407.092485px;}
.y222{bottom:407.510970px;}
.yde{bottom:409.967970px;}
.y81{bottom:423.292470px;}
.y25{bottom:423.670485px;}
.ydd{bottom:424.979970px;}
.y166{bottom:424.993470px;}
.y152{bottom:425.101500px;}
.y274{bottom:425.155470px;}
.y23{bottom:426.721485px;}
.y2ae{bottom:428.084970px;}
.y7f{bottom:440.748000px;}
.ydb{bottom:443.056500px;}
.y21e{bottom:443.231970px;}
.y272{bottom:443.245470px;}
.yf8{bottom:443.879970px;}
.y220{bottom:444.203985px;}
.y7d{bottom:458.824500px;}
.y21{bottom:459.809970px;}
.yda{bottom:461.133000px;}
.y117{bottom:461.146500px;}
.y2ab{bottom:461.295000px;}
.y270{bottom:461.740500px;}
.y150{bottom:464.183985px;}
.y7b{bottom:476.900985px;}
.y1f{bottom:477.886500px;}
.yd9{bottom:479.195985px;}
.y21c{bottom:479.385000px;}
.y79{bottom:494.977485px;}
.y1d{bottom:495.976500px;}
.y138{bottom:497.272470px;}
.y18e{bottom:497.285985px;}
.y115{bottom:497.434485px;}
.y26e{bottom:497.461485px;}
.yd7{bottom:497.893485px;}
.yf6{bottom:498.325470px;}
.y77{bottom:513.053970px;}
.y1b{bottom:514.039485px;}
.yd6{bottom:515.348970px;}
.y218{bottom:515.510970px;}
.y2a9{bottom:515.524470px;}
.y2a7{bottom:518.453985px;}
.y21a{bottom:518.615985px;}
.y75{bottom:531.117000px;}
.y71{bottom:531.130470px;}
.y19{bottom:532.115985px;}
.y6f{bottom:532.277985px;}
.y2f8{bottom:533.412000px;}
.yd4{bottom:533.425500px;}
.y113{bottom:533.438970px;}
.y73{bottom:534.181500px;}
.y6d{bottom:549.193500px;}
.y17{bottom:550.192470px;}
.y2f6{bottom:551.488500px;}
.yd2{bottom:551.502000px;}
.y265{bottom:551.515500px;}
.y2f4{bottom:551.650500px;}
.y214{bottom:551.664000px;}
.y267{bottom:551.677500px;}
.y2f2{bottom:552.096000px;}
.y216{bottom:552.649470px;}
.y26b{bottom:554.580000px;}
.y164{bottom:554.593500px;}
.y269{bottom:554.768970px;}
.y6b{bottom:567.269985px;}
.y15{bottom:568.268970px;}
.y2f0{bottom:569.564985px;}
.yd0{bottom:569.578485px;}
.y112{bottom:569.592000px;}
.y212{bottom:569.767500px;}
.y210{bottom:570.185985px;}
.y69{bottom:585.346485px;}
.y2ee{bottom:587.641485px;}
.y162{bottom:587.654985px;}
.yce{bottom:587.668485px;}
.y2ec{bottom:587.803485px;}
.y2ea{bottom:588.789000px;}
.y14e{bottom:590.705985px;}
.y67{bottom:603.422970px;}
.y2e9{bottom:605.704470px;}
.ycc{bottom:605.717970px;}
.y187{bottom:605.731470px;}
.y263{bottom:605.744985px;}
.y136{bottom:605.839455px;}
.y20b{bottom:605.893485px;}
.y110{bottom:605.906985px;}
.y10e{bottom:606.338970px;}
.y13{bottom:607.500000px;}
.y209{bottom:608.728500px;}
.y20d{bottom:608.836485px;}
.y65{bottom:621.499470px;}
.y2e7{bottom:623.780955px;}
.ycb{bottom:623.794470px;}
.y14c{bottom:623.807970px;}
.y185{bottom:623.821470px;}
.y1ba{bottom:623.929455px;}
.y261{bottom:623.969970px;}
.y25f{bottom:624.415470px;}
.y2a5{bottom:624.955485px;}
.y205{bottom:626.805000px;}
.y203{bottom:626.899470px;}
.y63{bottom:639.575955px;}
.y2e5{bottom:641.857500px;}
.y135{bottom:641.871000px;}
.y25d{bottom:641.884455px;}
.y2a1{bottom:642.478500px;}
.y1b8{bottom:643.207485px;}
.y10c{bottom:644.935500px;}
.y2a3{bottom:644.975970px;}
.y1b6{bottom:644.989470px;}
.y61{bottom:657.652500px;}
.y133{bottom:659.947500px;}
.y10a{bottom:659.961000px;}
.y25b{bottom:660.109500px;}
.y201{bottom:660.123000px;}
.y2e3{bottom:660.555000px;}
.y2a0{bottom:660.568500px;}
.y11{bottom:661.769985px;}
.yc9{bottom:663.039000px;}
.yf{bottom:673.852485px;}
.y5f{bottom:675.715485px;}
.y2e2{bottom:678.010485px;}
.y108{bottom:678.023985px;}
.y14a{bottom:678.037485px;}
.y259{bottom:678.185985px;}
.y1ff{bottom:678.213000px;}
.y1b4{bottom:678.644985px;}
.y29e{bottom:679.184970px;}
.yd{bottom:687.676485px;}
.y5d{bottom:693.791970px;}
.y2df{bottom:696.086970px;}
.y131{bottom:696.100485px;}
.y1b0{bottom:696.113985px;}
.y29c{bottom:696.275985px;}
.y1b2{bottom:697.248000px;}
.yc7{bottom:699.205485px;}
.y5b{bottom:711.868470px;}
.yc5{bottom:714.176970px;}
.y148{bottom:714.190470px;}
.y255{bottom:714.338970px;}
.y106{bottom:714.365985px;}
.y104{bottom:714.784470px;}
.y257{bottom:715.324500px;}
.y59{bottom:729.944955px;}
.y2dd{bottom:732.239955px;}
.yc3{bottom:732.253470px;}
.y2db{bottom:732.415470px;}
.y1fc{bottom:732.428970px;}
.y2d9{bottom:732.847455px;}
.y253{bottom:733.590000px;}
.y29a{bottom:735.250485px;}
.yb{bottom:744.727485px;}
.y55{bottom:748.183455px;}
.y2d8{bottom:750.303000px;}
.yc1{bottom:750.316500px;}
.y1f8{bottom:750.329955px;}
.y17e{bottom:750.343455px;}
.y298{bottom:750.491955px;}
.y1fa{bottom:750.518970px;}
.y296{bottom:750.937455px;}
.y57{bottom:751.126470px;}
.y1ae{bottom:753.407955px;}
.y51{bottom:766.111500px;}
.y53{bottom:766.273500px;}
.y2d5{bottom:768.379485px;}
.ybf{bottom:768.392940px;}
.y102{bottom:768.406500px;}
.y2d6{bottom:768.541440px;}
.y251{bottom:768.582000px;}
.y12f{bottom:768.716955px;}
.y1f7{bottom:769.554015px;}
.y9{bottom:777.262485px;}
.y4f{bottom:784.174440px;}
.y2d3{bottom:786.455940px;}
.ybd{bottom:786.469485px;}
.y1f4{bottom:786.631440px;}
.y24f{bottom:786.672000px;}
.y294{bottom:787.090485px;}
.y1ac{bottom:787.630470px;}
.y17b{bottom:789.574500px;}
.y4d{bottom:802.237515px;}
.y17a{bottom:804.546015px;}
.y12d{bottom:804.559485px;}
.y100{bottom:804.707970px;}
.y1f2{bottom:804.721440px;}
.yfe{bottom:805.166925px;}
.y2d2{bottom:805.693455px;}
.y292{bottom:807.623925px;}
.ybb{bottom:807.650940px;}
.y4b{bottom:820.313970px;}
.yb9{bottom:822.622470px;}
.y2ce{bottom:822.770970px;}
.y290{bottom:822.797970px;}
.y146{bottom:822.933015px;}
.y2cc{bottom:823.216455px;}
.y1f0{bottom:823.243470px;}
.y2d0{bottom:825.714015px;}
.y49{bottom:838.390500px;}
.yb7{bottom:840.699000px;}
.yfc{bottom:840.712470px;}
.yb5{bottom:840.860955px;}
.y2ca{bottom:841.832970px;}
.y24b{bottom:841.846440px;}
.y1ed{bottom:843.777015px;}
.y47{bottom:856.466955px;}
.y2c8{bottom:858.762000px;}
.y160{bottom:858.775455px;}
.y12b{bottom:858.789000px;}
.yb3{bottom:858.937500px;}
.y1eb{bottom:858.950955px;}
.y1e9{bottom:859.383000px;}
.y144{bottom:861.826440px;}
.y170{bottom:872.126955px;}
.yfa{bottom:876.851985px;}
.y15e{bottom:876.865455px;}
.yb1{bottom:876.986940px;}
.y2c4{bottom:877.000485px;}
.y1e3{bottom:877.027500px;}
.y28e{bottom:877.040955px;}
.y2c6{bottom:877.985955px;}
.y1e7{bottom:879.916440px;}
.y1e5{bottom:880.118955px;}
.y16e{bottom:884.209440px;}
.yad{bottom:894.914985px;}
.y1aa{bottom:894.928440px;}
.y15c{bottom:894.941985px;}
.yaf{bottom:895.050015px;}
.y247{bottom:895.090485px;}
.y2c1{bottom:895.522425px;}
.y245{bottom:895.535985px;}
.y45{bottom:895.711485px;}
.y1e1{bottom:897.992985px;}
.y249{bottom:898.033440px;}
.y16c{bottom:898.668000px;}
.y7{bottom:918.134955px;}
.y5{bottom:936.211485px;}
.y43{bottom:936.738000px;}
.h2a{height:1.660485px;}
.h7f{height:1.660500px;}
.h8b{height:1.660515px;}
.ha8{height:1.673940px;}
.h9d{height:1.674000px;}
.h32{height:6.088515px;}
.ha4{height:6.412515px;}
.h7{height:7.776030px;}
.hf{height:8.775015px;}
.h5d{height:8.869530px;}
.h21{height:9.841470px;}
.h5e{height:9.841485px;}
.h4{height:9.855000px;}
.h6{height:9.855015px;}
.h83{height:10.138500px;}
.h63{height:10.138515px;}
.h72{height:10.138545px;}
.h9b{height:10.165515px;}
.h7e{height:10.260000px;}
.h2d{height:10.354485px;}
.h2{height:10.354500px;}
.h16{height:10.354515px;}
.h69{height:10.394985px;}
.h59{height:10.395015px;}
.h5f{height:10.408440px;}
.h36{height:10.408485px;}
.h3d{height:10.408500px;}
.h3a{height:10.408545px;}
.h75{height:10.435455px;}
.hb3{height:10.435500px;}
.ha7{height:10.435560px;}
.h4d{height:10.448955px;}
.h61{height:10.448985px;}
.h42{height:10.449000px;}
.h44{height:10.462485px;}
.h57{height:10.462500px;}
.h58{height:10.462515px;}
.h55{height:10.462560px;}
.h5a{height:10.476000px;}
.h51{height:10.476015px;}
.h7c{height:10.502970px;}
.h9f{height:10.516485px;}
.h6b{height:10.516500px;}
.h73{height:10.516575px;}
.h49{height:10.530000px;}
.h1e{height:10.799985px;}
.h20{height:10.800000px;}
.h18{height:11.096970px;}
.h10{height:11.110470px;}
.h5b{height:11.150940px;}
.hd{height:11.245500px;}
.h6a{height:12.176970px;}
.h93{height:12.257985px;}
.hae{height:12.258000px;}
.h64{height:12.352470px;}
.h2c{height:12.352485px;}
.h8e{height:12.352500px;}
.hb8{height:12.352560px;}
.h98{height:12.365970px;}
.h8f{height:12.365985px;}
.h30{height:12.366000px;}
.h71{height:12.366015px;}
.h82{height:12.366030px;}
.h90{height:12.379485px;}
.h87{height:12.433500px;}
.h66{height:12.446955px;}
.ha3{height:12.730500px;}
.h68{height:12.784470px;}
.h4a{height:12.784515px;}
.h92{height:12.797970px;}
.h70{height:12.797985px;}
.h8a{height:12.798000px;}
.h4b{height:12.798015px;}
.h4e{height:12.798030px;}
.h34{height:12.892500px;}
.h76{height:12.892545px;}
.hb6{height:12.892560px;}
.hab{height:12.905955px;}
.h2f{height:12.906000px;}
.h31{height:12.906015px;}
.hb2{height:12.919515px;}
.h77{height:12.919560px;}
.hb9{height:12.973470px;}
.h80{height:12.973485px;}
.hb4{height:12.973500px;}
.h40{height:12.973515px;}
.hb1{height:13.081500px;}
.ha9{height:13.094970px;}
.h1c{height:13.216500px;}
.had{height:13.270485px;}
.h5c{height:13.284030px;}
.h95{height:13.310940px;}
.h4c{height:13.324485px;}
.h8c{height:13.324500px;}
.ha1{height:13.324530px;}
.h27{height:13.337955px;}
.ha5{height:13.337970px;}
.h85{height:13.337985px;}
.h4f{height:13.338000px;}
.h6c{height:13.338015px;}
.h86{height:13.338030px;}
.h74{height:13.338045px;}
.h6f{height:13.351485px;}
.h29{height:13.351500px;}
.h39{height:13.351515px;}
.h38{height:13.378515px;}
.h37{height:13.391970px;}
.h88{height:13.392015px;}
.h67{height:13.405470px;}
.h91{height:13.432470px;}
.ha0{height:13.432485px;}
.h97{height:13.432515px;}
.h8d{height:13.445985px;}
.h19{height:13.446000px;}
.h7d{height:13.446030px;}
.h60{height:13.486500px;}
.h26{height:13.499955px;}
.h13{height:13.500000px;}
.h24{height:13.513455px;}
.h14{height:13.513470px;}
.h1b{height:13.513485px;}
.h11{height:13.513500px;}
.h12{height:13.513515px;}
.h23{height:13.513545px;}
.h3b{height:13.513560px;}
.h25{height:13.526925px;}
.h3c{height:13.526955px;}
.h2e{height:13.526970px;}
.h1d{height:13.526985px;}
.h15{height:13.527000px;}
.h1a{height:13.527015px;}
.h9e{height:13.567515px;}
.h41{height:13.580985px;}
.h35{height:13.581000px;}
.h79{height:13.581015px;}
.h9a{height:13.594470px;}
.h2b{height:13.594485px;}
.h89{height:13.594500px;}
.h3f{height:13.594515px;}
.h84{height:13.594530px;}
.h96{height:13.594575px;}
.h43{height:13.716000px;}
.h52{height:13.716060px;}
.h50{height:13.729485px;}
.h45{height:13.729500px;}
.h3e{height:13.823955px;}
.h22{height:13.824000px;}
.h6d{height:13.824015px;}
.h65{height:13.837515px;}
.h56{height:13.877925px;}
.hb{height:14.066985px;}
.h53{height:14.080545px;}
.h99{height:15.403470px;}
.h78{height:15.457485px;}
.hb5{height:15.471000px;}
.hb7{height:15.471045px;}
.h7b{height:15.795000px;}
.haa{height:15.997470px;}
.h9c{height:15.997515px;}
.h94{height:15.997560px;}
.h6e{height:16.011000px;}
.h7a{height:16.011015px;}
.h81{height:16.213485px;}
.ha2{height:16.213515px;}
.h62{height:16.604985px;}
.haf{height:16.605000px;}
.ha6{height:16.605015px;}
.h54{height:16.618500px;}
.hac{height:16.618515px;}
.hb0{height:16.632015px;}
.ha{height:19.980000px;}
.h8{height:24.678030px;}
.h5{height:30.577148px;}
.h33{height:32.040320px;}
.h46{height:33.453000px;}
.h17{height:41.460000px;}
.h1f{height:42.720000px;}
.h48{height:43.054688px;}
.he{height:43.265625px;}
.h28{height:52.560000px;}
.h3{height:53.400000px;}
.hc{height:54.580078px;}
.h9{height:97.347656px;}
.h47{height:143.991030px;}
.h0{height:1020.472410px;}
.h1{height:1020.750000px;}
.w1c0{width:0.404985px;}
.w2b{width:2.699970px;}
.w198{width:3.347985px;}
.w17b{width:4.090515px;}
.w40{width:4.225530px;}
.wdc{width:8.302500px;}
.w67{width:8.883015px;}
.w17c{width:10.597485px;}
.w66{width:11.137515px;}
.wfd{width:14.229015px;}
.w160{width:14.242500px;}
.w72{width:14.580000px;}
.w6f{width:14.742000px;}
.w76{width:15.579000px;}
.w6c{width:15.592515px;}
.w11c{width:15.808500px;}
.w15f{width:15.902985px;}
.wfc{width:15.903015px;}
.w177{width:15.997500px;}
.w157{width:17.631000px;}
.w19e{width:18.711000px;}
.w2{width:19.237470px;}
.w46{width:19.791000px;}
.w68{width:19.898985px;}
.wa6{width:20.007000px;}
.w93{width:20.060985px;}
.wb5{width:20.209485px;}
.w83{width:20.344500px;}
.w65{width:20.412000px;}
.w20{width:20.452485px;}
.wb9{width:20.466000px;}
.w18c{width:21.127500px;}
.w105{width:23.436015px;}
.w17f{width:24.772500px;}
.w109{width:26.028015px;}
.w1a8{width:28.161000px;}
.w33{width:28.512015px;}
.w54{width:29.133000px;}
.w13b{width:30.982485px;}
.wb6{width:34.749000px;}
.wde{width:36.774015px;}
.wa3{width:38.961000px;}
.w1c6{width:40.648500px;}
.wfa{width:41.013015px;}
.w41{width:42.822000px;}
.w96{width:43.267515px;}
.w114{width:46.359015px;}
.w195{width:49.302000px;}
.w8d{width:50.881500px;}
.w144{width:52.879485px;}
.w123{width:53.351985px;}
.w1ce{width:53.675985px;}
.w137{width:54.040500px;}
.w98{width:54.985485px;}
.w19d{width:55.525500px;}
.w133{width:56.335485px;}
.w101{width:56.565000px;}
.w1ba{width:56.943000px;}
.w185{width:58.063500px;}
.w1bd{width:58.549485px;}
.wb{width:59.629485px;}
.w9a{width:60.898500px;}
.w110{width:60.952515px;}
.w182{width:63.247485px;}
.w94{width:63.828015px;}
.w150{width:63.855015px;}
.w15{width:67.365015px;}
.we2{width:67.392015px;}
.w189{width:73.575015px;}
.w1ad{width:74.020470px;}
.wbe{width:74.587500px;}
.wdb{width:74.641485px;}
.w1c7{width:75.478500px;}
.w13e{width:75.950985px;}
.w30{width:76.734015px;}
.w191{width:77.031000px;}
.w16c{width:78.165000px;}
.w19f{width:80.594985px;}
.w111{width:81.688500px;}
.w1a4{width:83.699970px;}
.w71{width:83.726985px;}
.wd6{width:83.875515px;}
.w14d{width:85.225500px;}
.w1be{width:85.590000px;}
.w32{width:87.007485px;}
.w124{width:87.628485px;}
.wf2{width:87.695985px;}
.w13{width:87.831000px;}
.w1d7{width:90.692985px;}
.w5{width:90.760485px;}
.w168{width:91.286955px;}
.w14a{width:91.867500px;}
.w149{width:92.961000px;}
.w161{width:94.365000px;}
.w152{width:94.621500px;}
.w1b7{width:97.713000px;}
.wb1{width:98.590515px;}
.w14e{width:99.846000px;}
.w19a{width:100.210500px;}
.w106{width:101.857500px;}
.wef{width:102.694530px;}
.w23{width:104.112015px;}
.w10e{width:104.395500px;}
.w55{width:105.543000px;}
.w1c5{width:105.880500px;}
.wfe{width:106.434015px;}
.w1bf{width:107.351985px;}
.w17e{width:109.404000px;}
.w1a2{width:110.254485px;}
.wd8{width:110.861985px;}
.w5d{width:112.792485px;}
.w31{width:113.103015px;}
.w70{width:113.548500px;}
.we8{width:114.021000px;}
.wb8{width:114.425985px;}
.w120{width:114.844470px;}
.w13c{width:115.600500px;}
.w3d{width:115.924485px;}
.w155{width:116.518500px;}
.w169{width:117.760500px;}
.w6e{width:118.286970px;}
.w164{width:119.191485px;}
.w3b{width:120.649500px;}
.w11d{width:120.811485px;}
.w1bb{width:120.879000px;}
.w45{width:121.796985px;}
.w1a0{width:124.011000px;}
.w129{width:124.361985px;}
.w178{width:125.023500px;}
.w117{width:125.509485px;}
.w135{width:126.252000px;}
.wb2{width:127.453500px;}
.wed{width:128.290500px;}
.w12d{width:129.465000px;}
.w138{width:130.450500px;}
.w184{width:130.558500px;}
.w181{width:131.071530px;}
.w3a{width:131.287485px;}
.w4f{width:131.949015px;}
.w14b{width:132.759000px;}
.w1d6{width:132.759030px;}
.w1d2{width:133.798485px;}
.w1c3{width:133.825470px;}
.w186{width:134.608485px;}
.w1d1{width:135.148500px;}
.w162{width:135.283500px;}
.w81{width:135.864015px;}
.w1dd{width:136.322970px;}
.w132{width:137.038500px;}
.w6d{width:137.673000px;}
.w18f{width:137.740500px;}
.w153{width:138.172485px;}
.w60{width:139.954485px;}
.w1b4{width:142.181985px;}
.w119{width:143.586000px;}
.w112{width:143.802000px;}
.w134{width:144.854985px;}
.w14c{width:144.949470px;}
.wf8{width:146.461485px;}
.w1a6{width:146.758485px;}
.w141{width:146.920485px;}
.w1a9{width:148.540485px;}
.w10a{width:148.796970px;}
.wc0{width:149.823000px;}
.wd7{width:152.617500px;}
.wfb{width:152.671515px;}
.w113{width:153.171000px;}
.w140{width:153.994500px;}
.w79{width:158.922000px;}
.wee{width:159.813015px;}
.wf0{width:160.299000px;}
.w194{width:162.094470px;}
.wa{width:164.524500px;}
.w1b8{width:164.794485px;}
.w14f{width:165.037500px;}
.w1ab{width:166.441500px;}
.w10d{width:166.765500px;}
.w196{width:166.886985px;}
.w1f{width:167.292000px;}
.w108{width:168.520470px;}
.w5a{width:168.601500px;}
.w87{width:168.736470px;}
.w1b3{width:169.276470px;}
.w38{width:169.424985px;}
.w15d{width:171.193470px;}
.wa0{width:171.679500px;}
.w16f{width:176.701485px;}
.wc6{width:177.241485px;}
.w15a{width:177.862500px;}
.w1aa{width:178.834500px;}
.w16a{width:179.590485px;}
.wff{width:179.901015px;}
.w1e{width:180.643500px;}
.w12c{width:183.572970px;}
.w1cd{width:184.652985px;}
.w29{width:185.705970px;}
.wd5{width:187.056000px;}
.we3{width:187.568985px;}
.w1d5{width:187.609485px;}
.w1a1{width:187.622970px;}
.w13f{width:187.623000px;}
.w17d{width:189.553470px;}
.w15e{width:189.917985px;}
.w11f{width:189.918000px;}
.w1c9{width:190.025985px;}
.w176{width:190.201500px;}
.w1d4{width:193.157985px;}
.w1ae{width:193.401015px;}
.wf6{width:194.373000px;}
.wc3{width:195.439500px;}
.w11a{width:196.357500px;}
.w122{width:197.963970px;}
.w9{width:197.964015px;}
.w12e{width:198.166485px;}
.w139{width:198.652500px;}
.w1b2{width:200.137470px;}
.w11e{width:203.310000px;}
.w1cf{width:205.470000px;}
.w1dc{width:205.605015px;}
.w1d8{width:205.672500px;}
.w1db{width:205.739970px;}
.w12b{width:207.872985px;}
.wce{width:208.507485px;}
.w17a{width:209.452485px;}
.w16e{width:213.367485px;}
.w18b{width:213.704985px;}
.w8a{width:213.718485px;}
.w145{width:215.581500px;}
.w165{width:215.784015px;}
.w77{width:216.188985px;}
.w1cb{width:216.998985px;}
.w95{width:220.562985px;}
.wae{width:220.900485px;}
.w64{width:223.856985px;}
.w1b0{width:225.503985px;}
.w1d9{width:229.904985px;}
.w9e{width:233.698485px;}
.w34{width:233.752485px;}
.w4d{width:234.913455px;}
.w104{width:235.642500px;}
.w11b{width:240.988470px;}
.w188{width:242.027985px;}
.w73{width:242.621970px;}
.wf4{width:243.013515px;}
.w9c{width:245.510985px;}
.w126{width:246.631485px;}
.w173{width:247.833015px;}
.w49{width:249.884985px;}
.w130{width:250.843485px;}
.w146{width:255.325485px;}
.w159{width:256.743000px;}
.w9f{width:264.087000px;}
.w18a{width:267.515985px;}
.w121{width:268.393500px;}
.w163{width:270.526500px;}
.w9d{width:272.605500px;}
.w63{width:276.210000px;}
.w48{width:276.574500px;}
.w172{width:281.056500px;}
.wcb{width:282.959970px;}
.w158{width:284.242500px;}
.w187{width:285.160470px;}
.wd9{width:286.091985px;}
.w128{width:289.723455px;}
.w103{width:291.127455px;}
.wf3{width:292.288485px;}
.w99{width:292.382970px;}
.w3{width:293.247015px;}
.w21{width:293.260485px;}
.w18e{width:293.759985px;}
.w22{width:295.110000px;}
.w10f{width:295.163970px;}
.wcf{width:295.407000px;}
.wb0{width:296.176485px;}
.w3c{width:297.391470px;}
.wc4{width:297.634515px;}
.w125{width:299.429985px;}
.wf5{width:302.170485px;}
.w18d{width:304.290000px;}
.w1ca{width:307.111470px;}
.w1c{width:310.999515px;}
.wca{width:314.725500px;}
.w151{width:315.575970px;}
.w4c{width:316.872000px;}
.w13a{width:316.898970px;}
.w53{width:317.385000px;}
.w6a{width:317.776485px;}
.w175{width:319.531485px;}
.w1af{width:320.827500px;}
.w116{width:321.678000px;}
.w1b9{width:323.554485px;}
.w1b1{width:329.697015px;}
.wd3{width:330.736500px;}
.wc9{width:331.465500px;}
.w115{width:334.624485px;}
.wf7{width:335.366970px;}
.wc5{width:335.933985px;}
.w75{width:336.676485px;}
.w192{width:339.997485px;}
.w50{width:341.347485px;}
.wa1{width:341.482500px;}
.w12f{width:345.721500px;}
.w78{width:355.684470px;}
.w12{width:355.873485px;}
.w107{width:356.886000px;}
.w8{width:357.682515px;}
.w10c{width:358.911000px;}
.wd1{width:361.367970px;}
.w28{width:361.840485px;}
.w4{width:365.526015px;}
.w47{width:365.795985px;}
.w62{width:366.308985px;}
.w136{width:366.794970px;}
.w100{width:366.983985px;}
.w16b{width:367.510470px;}
.w19b{width:370.858470px;}
.w170{width:371.830485px;}
.w6b{width:377.986500px;}
.w1a5{width:382.995015px;}
.w193{width:383.926515px;}
.w5c{width:385.344000px;}
.wf1{width:388.084485px;}
.w131{width:388.300485px;}
.w1d0{width:390.730470px;}
.wd0{width:391.594485px;}
.w174{width:393.268500px;}
.w1c2{width:394.834470px;}
.w142{width:396.643500px;}
.w183{width:397.318500px;}
.w180{width:398.965455px;}
.w90{width:399.829515px;}
.w1b5{width:402.461985px;}
.w84{width:405.054000px;}
.w156{width:408.590970px;}
.w190{width:409.751970px;}
.wb4{width:410.156985px;}
.w154{width:411.034485px;}
.wd4{width:419.849985px;}
.w1c4{width:423.440970px;}
.wec{width:423.441015px;}
.w118{width:423.616485px;}
.w1cc{width:428.732985px;}
.w199{width:429.799455px;}
.w148{width:433.484985px;}
.w91{width:435.577455px;}
.w102{width:436.603500px;}
.w167{width:436.738500px;}
.w14{width:436.887000px;}
.w92{width:437.278485px;}
.we7{width:437.831985px;}
.w1a3{width:442.070970px;}
.w1c8{width:446.741985px;}
.w1d{width:448.550970px;}
.w16d{width:451.277985px;}
.w1ac{width:452.438985px;}
.wcc{width:454.099470px;}
.w89{width:454.612485px;}
.w147{width:455.624985px;}
.w9b{width:455.719485px;}
.w1da{width:464.143515px;}
.wc7{width:464.454000px;}
.wda{width:467.194500px;}
.w1bc{width:467.396985px;}
.w143{width:476.968485px;}
.wc8{width:478.197000px;}
.we1{width:484.123500px;}
.w16{width:485.014500px;}
.w86{width:485.109015px;}
.w6{width:495.382500px;}
.w3f{width:501.578970px;}
.w7{width:504.468000px;}
.wf9{width:506.492985px;}
.wa7{width:509.260470px;}
.wa8{width:509.273985px;}
.wac{width:509.516955px;}
.wad{width:509.678970px;}
.wab{width:509.827470px;}
.w52{width:509.854470px;}
.wa5{width:509.948970px;}
.waa{width:509.975985px;}
.wa9{width:509.989470px;}
.wcd{width:510.043455px;}
.wdf{width:514.471470px;}
.wb7{width:518.535000px;}
.w2c{width:521.153955px;}
.w197{width:526.675500px;}
.w1de{width:529.253955px;}
.w3e{width:530.144985px;}
.w8b{width:530.360985px;}
.w1a7{width:530.374485px;}
.w179{width:530.401485px;}
.w56{width:530.522985px;}
.w8e{width:530.536485px;}
.w61{width:530.549985px;}
.w85{width:530.603985px;}
.w51{width:530.779485px;}
.w69{width:530.820000px;}
.w74{width:530.860470px;}
.wd2{width:530.900955px;}
.w88{width:530.927970px;}
.w171{width:531.035970px;}
.w24{width:531.076470px;}
.w19c{width:531.089970px;}
.w13d{width:531.116970px;}
.w1b6{width:531.224955px;}
.w7a{width:531.224970px;}
.w17{width:531.238470px;}
.w5e{width:531.251970px;}
.w5b{width:531.265470px;}
.wc{width:531.319470px;}
.w127{width:531.332985px;}
.we4{width:531.346470px;}
.wa2{width:531.494970px;}
.w15c{width:531.495000px;}
.wa4{width:531.521985px;}
.w5f{width:537.570000px;}
.we6{width:539.203455px;}
.w2a{width:548.693985px;}
.w4e{width:551.272500px;}
.wbc{width:551.312985px;}
.we9{width:551.366970px;}
.w1c1{width:551.407485px;}
.wbf{width:551.488485px;}
.w2e{width:551.583000px;}
.w43{width:551.609985px;}
.wdd{width:551.623485px;}
.wd{width:551.636985px;}
.w97{width:551.664000px;}
.w19{width:551.677470px;}
.waf{width:551.758485px;}
.w12a{width:551.785485px;}
.w59{width:551.798985px;}
.w8c{width:551.825970px;}
.w36{width:551.839485px;}
.w15b{width:551.852985px;}
.w58{width:551.906970px;}
.wc1{width:551.960985px;}
.w27{width:551.987985px;}
.w2f{width:552.028470px;}
.web{width:552.122970px;}
.w42{width:552.149985px;}
.we5{width:552.176970px;}
.w82{width:552.203970px;}
.w10{width:552.230985px;}
.w166{width:552.271470px;}
.we0{width:552.284970px;}
.w35{width:552.298485px;}
.wb3{width:552.325470px;}
.w57{width:552.338970px;}
.w1b{width:552.352470px;}
.w11{width:552.379485px;}
.w44{width:552.406500px;}
.w1d3{width:552.419970px;}
.we{width:552.460455px;}
.wf{width:552.473970px;}
.w80{width:552.500970px;}
.w26{width:552.514470px;}
.w8f{width:552.527985px;}
.w4b{width:552.541455px;}
.w25{width:552.554970px;}
.w2d{width:552.568470px;}
.w1a{width:552.568485px;}
.w39{width:552.622455px;}
.w7e{width:552.622470px;}
.wbd{width:552.649470px;}
.w7c{width:552.662970px;}
.w18{width:552.676470px;}
.wbb{width:552.676485px;}
.w37{width:552.689985px;}
.wc2{width:552.703455px;}
.w7b{width:552.703470px;}
.w7f{width:552.770955px;}
.w7d{width:552.824970px;}
.wba{width:552.851970px;}
.w4a{width:553.108470px;}
.w10b{width:553.283985px;}
.wea{width:553.877970px;}
.w0{width:722.834655px;}
.w1{width:723.000000px;}
.x77{left:-85.846395px;}
.x2{left:-1.669740px;}
.x0{left:0.000000px;}
.x2a{left:1.123395px;}
.x1f{left:8.623980px;}
.x1b{left:84.685500px;}
.x3{left:85.805985px;}
.x1e{left:87.115500px;}
.xc{left:88.209000px;}
.x20{left:101.992500px;}
.x21{left:104.490000px;}
.x9{left:106.474500px;}
.x5{left:110.686500px;}
.x4{left:113.656500px;}
.x27{left:123.322500px;}
.x1d{left:127.939500px;}
.x35{left:131.516985px;}
.x37{left:133.812015px;}
.x69{left:157.531500px;}
.x7d{left:160.474500px;}
.x33{left:163.998000px;}
.x4f{left:165.321000px;}
.x11{left:166.643985px;}
.x3a{left:171.274500px;}
.xb{left:175.743000px;}
.x19{left:178.591500px;}
.x6{left:182.600985px;}
.x4d{left:186.151500px;}
.x7a{left:187.704000px;}
.x76{left:192.145500px;}
.xa{left:195.560985px;}
.x52{left:200.069985px;}
.x39{left:213.003000px;}
.xe{left:214.218000px;}
.x4b{left:215.919000px;}
.x15{left:217.322985px;}
.x57{left:226.759485px;}
.x58{left:229.203000px;}
.x73{left:231.241500px;}
.x6b{left:234.481500px;}
.x4e{left:236.925000px;}
.x23{left:238.707000px;}
.x3c{left:245.497485px;}
.x2c{left:249.709485px;}
.x3e{left:252.193500px;}
.x3b{left:254.393985px;}
.x53{left:255.406500px;}
.x55{left:256.688985px;}
.x30{left:261.143985px;}
.x7{left:262.588485px;}
.x5e{left:265.963485px;}
.x32{left:270.040485px;}
.x7c{left:274.050000px;}
.x8{left:279.126000px;}
.x12{left:282.177000px;}
.x49{left:287.981985px;}
.x7f{left:294.340485px;}
.x31{left:295.798485px;}
.x3d{left:298.917000px;}
.x70{left:301.333485px;}
.x2e{left:302.427000px;}
.x22{left:304.506000px;}
.x41{left:313.658985px;}
.x62{left:316.588485px;}
.x47{left:317.844000px;}
.x56{left:322.218000px;}
.x67{left:329.278500px;}
.x2d{left:335.623485px;}
.x63{left:336.865500px;}
.x16{left:340.402500px;}
.x54{left:342.359985px;}
.xd{left:344.033985px;}
.x3f{left:348.921000px;}
.x24{left:351.701985px;}
.x40{left:369.211485px;}
.x13{left:374.057985px;}
.x59{left:376.784985px;}
.x43{left:380.592000px;}
.x50{left:382.468485px;}
.x1a{left:387.908985px;}
.x5f{left:389.245470px;}
.x45{left:390.392985px;}
.x66{left:394.996485px;}
.x46{left:397.439985px;}
.x34{left:401.381970px;}
.x1c{left:402.880515px;}
.x14{left:404.041485px;}
.x7e{left:407.888985px;}
.x71{left:412.289985px;}
.x6e{left:417.717000px;}
.x7b{left:419.121000px;}
.x6c{left:423.373485px;}
.x60{left:429.867000px;}
.x72{left:437.656500px;}
.xf{left:451.318500px;}
.x36{left:468.504000px;}
.x38{left:471.028470px;}
.x5a{left:473.201985px;}
.x68{left:475.699500px;}
.x6d{left:491.035485px;}
.x5b{left:493.276470px;}
.x4a{left:500.755470px;}
.x48{left:502.523985px;}
.x78{left:503.968500px;}
.x42{left:505.305000px;}
.x65{left:506.735955px;}
.x2b{left:509.503470px;}
.x5c{left:517.887000px;}
.x29{left:523.772970px;}
.x64{left:527.674485px;}
.x79{left:531.913470px;}
.x6a{left:537.583470px;}
.x51{left:545.237955px;}
.x5d{left:546.912000px;}
.x25{left:553.607985px;}
.x6f{left:563.004000px;}
.x28{left:570.401955px;}
.x75{left:579.244485px;}
.x74{left:580.850970px;}
.x44{left:584.441985px;}
.x17{left:587.141970px;}
.x18{left:594.971970px;}
.x2f{left:596.011455px;}
.x4c{left:606.096000px;}
.x1{left:615.465000px;}
.x61{left:621.796470px;}
.x26{left:629.491470px;}
.x10{left:635.094000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.693333pt;}
.ls5{letter-spacing:0.800000pt;}
.ls9{letter-spacing:1.066667pt;}
.ws2{word-spacing:-13.866667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-690.613333pt;}
._1{margin-left:-6.586667pt;}
._b{margin-left:-5.653333pt;}
._2{margin-left:-4.416000pt;}
._9{margin-left:-3.466667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.040000pt;}
._4{width:1.013333pt;}
._6{width:2.026667pt;}
._5{width:2.933333pt;}
._8{width:4.000000pt;}
._a{width:5.066667pt;}
._7{width:6.613333pt;}
._c{width:7.546667pt;}
._d{width:8.906667pt;}
._11{width:9.866667pt;}
._10{width:11.360000pt;}
._e{width:35.573333pt;}
._f{width:43.573333pt;}
.fs4{font-size:32.000320pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:96.000000pt;}
.yf7{bottom:-0.732507pt;}
.yf9{bottom:-0.430253pt;}
.y1e6{bottom:-0.001867pt;}
.y1a9{bottom:-0.000560pt;}
.y0{bottom:0.000000pt;}
.y26a{bottom:0.001333pt;}
.y283{bottom:0.001520pt;}
.y21b{bottom:0.004347pt;}
.y98{bottom:0.005640pt;}
.y8{bottom:0.116853pt;}
.y171{bottom:0.122880pt;}
.y12{bottom:0.123293pt;}
.y155{bottom:0.137640pt;}
.y1b7{bottom:0.137773pt;}
.y24a{bottom:0.140627pt;}
.y20e{bottom:0.140787pt;}
.y22f{bottom:0.140987pt;}
.yf1{bottom:0.142240pt;}
.y2af{bottom:0.143920pt;}
.y2b9{bottom:0.144000pt;}
.yc8{bottom:0.144907pt;}
.y58{bottom:0.145013pt;}
.y2d1{bottom:0.145107pt;}
.ybc{bottom:0.147867pt;}
.y2a8{bottom:0.148347pt;}
.y17c{bottom:0.149653pt;}
.y2a4{bottom:0.149773pt;}
.yac{bottom:0.149920pt;}
.y204{bottom:0.151293pt;}
.y288{bottom:0.151573pt;}
.y46{bottom:0.156907pt;}
.y165{bottom:0.156987pt;}
.y28{bottom:0.157960pt;}
.yca{bottom:0.159920pt;}
.y1cf{bottom:0.160547pt;}
.y14{bottom:0.163813pt;}
.y1af{bottom:0.164720pt;}
.y1ee{bottom:0.169107pt;}
.y26c{bottom:0.169307pt;}
.y293{bottom:0.172200pt;}
.y2b3{bottom:0.172453pt;}
.y1e2{bottom:0.176587pt;}
.y2be{bottom:0.177053pt;}
.y1e8{bottom:0.178147pt;}
.ydf{bottom:0.181107pt;}
.y13a{bottom:0.182613pt;}
.y19e{bottom:0.183027pt;}
.y10d{bottom:0.185427pt;}
.y74{bottom:0.187133pt;}
.y151{bottom:0.188560pt;}
.y191{bottom:0.188893pt;}
.y1a4{bottom:0.189067pt;}
.y14f{bottom:0.189973pt;}
.ye5{bottom:0.190160pt;}
.y15b{bottom:0.190267pt;}
.y24{bottom:0.190960pt;}
.y2{bottom:0.191093pt;}
.y145{bottom:0.191333pt;}
.y172{bottom:0.191427pt;}
.y206{bottom:0.235267pt;}
.y2b7{bottom:0.235480pt;}
.y20a{bottom:0.236773pt;}
.y29b{bottom:0.238200pt;}
.y2c0{bottom:0.238587pt;}
.y279{bottom:0.242920pt;}
.y1c0{bottom:0.244453pt;}
.ya{bottom:0.288813pt;}
.yc{bottom:0.289133pt;}
.y16b{bottom:0.299093pt;}
.y254{bottom:1.714187pt;}
.y1b9{bottom:1.721760pt;}
.y29f{bottom:1.874747pt;}
.y23c{bottom:1.876547pt;}
.y1ad{bottom:1.877680pt;}
.y70{bottom:1.879147pt;}
.y2a6{bottom:1.879280pt;}
.y23e{bottom:1.879560pt;}
.y2c7{bottom:1.880707pt;}
.y2eb{bottom:1.880813pt;}
.ya0{bottom:1.880867pt;}
.y240{bottom:1.881053pt;}
.y221{bottom:1.882400pt;}
.y258{bottom:1.883707pt;}
.y2cb{bottom:1.883720pt;}
.y8e{bottom:1.883787pt;}
.y1df{bottom:1.884093pt;}
.y24c{bottom:1.885173pt;}
.y1b3{bottom:1.885213pt;}
.y217{bottom:1.885333pt;}
.y174{bottom:1.954080pt;}
.y44{bottom:1.955893pt;}
.y175{bottom:1.956227pt;}
.y6{bottom:1.962000pt;}
.y4{bottom:1.965760pt;}
.y16f{bottom:2.236080pt;}
.y10{bottom:2.236480pt;}
.y16d{bottom:2.237227pt;}
.y42{bottom:2.318853pt;}
.y40{bottom:2.320040pt;}
.y1f1{bottom:2.354653pt;}
.y1b5{bottom:2.354733pt;}
.y2e4{bottom:2.354773pt;}
.yff{bottom:2.355880pt;}
.y24e{bottom:2.356200pt;}
.y82{bottom:2.356240pt;}
.y9a{bottom:2.356320pt;}
.y238{bottom:2.356547pt;}
.yd8{bottom:2.357533pt;}
.y295{bottom:2.357667pt;}
.y26d{bottom:2.357867pt;}
.y27c{bottom:2.357947pt;}
.y2c2{bottom:2.359133pt;}
.y260{bottom:2.359293pt;}
.y2b5{bottom:2.359480pt;}
.y1d1{bottom:2.359560pt;}
.y10f{bottom:2.360480pt;}
.y246{bottom:2.360587pt;}
.y297{bottom:2.360720pt;}
.y2da{bottom:2.360760pt;}
.y208{bottom:2.360800pt;}
.y271{bottom:2.360880pt;}
.y22d{bottom:2.360987pt;}
.y1d9{bottom:2.362587pt;}
.y105{bottom:2.363400pt;}
.y1ea{bottom:2.363600pt;}
.y1fe{bottom:2.363733pt;}
.y211{bottom:2.363813pt;}
.y2f3{bottom:2.363840pt;}
.y1cc{bottom:2.364013pt;}
.y2cd{bottom:2.365160pt;}
.y92{bottom:2.365293pt;}
.y223{bottom:2.365440pt;}
.y2a2{bottom:2.369747pt;}
.y286{bottom:2.395573pt;}
.y130{bottom:2.622880pt;}
.ye3{bottom:2.623147pt;}
.y147{bottom:2.630293pt;}
.ye9{bottom:2.630693pt;}
.y11c{bottom:2.632120pt;}
.y250{bottom:2.729653pt;}
.y27e{bottom:2.729960pt;}
.y3c{bottom:2.732120pt;}
.y1fb{bottom:2.732707pt;}
.y28f{bottom:2.734133pt;}
.y273{bottom:2.734413pt;}
.y107{bottom:2.735387pt;}
.y2e0{bottom:2.735760pt;}
.y213{bottom:2.735800pt;}
.y225{bottom:2.737427pt;}
.y233{bottom:2.737507pt;}
.y200{bottom:2.738720pt;}
.y2a{bottom:2.741000pt;}
.y2e8{bottom:2.741827pt;}
.y26f{bottom:2.741867pt;}
.y2c3{bottom:2.743080pt;}
.y252{bottom:2.743160pt;}
.y21d{bottom:2.743360pt;}
.y22b{bottom:2.743480pt;}
.y28a{bottom:2.743547pt;}
.y111{bottom:2.744467pt;}
.y2dc{bottom:2.744747pt;}
.y1bc{bottom:2.744787pt;}
.y1d5{bottom:2.745067pt;}
.y1e4{bottom:2.746093pt;}
.y1fd{bottom:2.746213pt;}
.y21f{bottom:2.746413pt;}
.y1c8{bottom:2.746493pt;}
.y54{bottom:2.747480pt;}
.y1ec{bottom:2.747640pt;}
.y275{bottom:2.747920pt;}
.y28d{bottom:2.748080pt;}
.y29d{bottom:2.749227pt;}
.y2e1{bottom:2.749267pt;}
.y268{bottom:2.749307pt;}
.y281{bottom:2.749507pt;}
.y244{bottom:2.749613pt;}
.y291{bottom:2.750653pt;}
.y227{bottom:2.750933pt;}
.y235{bottom:2.751040pt;}
.y1f3{bottom:2.752187pt;}
.y202{bottom:2.752240pt;}
.y2aa{bottom:2.752360pt;}
.y229{bottom:2.752440pt;}
.y23a{bottom:2.752547pt;}
.y1c2{bottom:2.753960pt;}
.y262{bottom:2.755293pt;}
.y1c4{bottom:2.755480pt;}
.y1d3{bottom:2.755560pt;}
.y248{bottom:2.756587pt;}
.y2c5{bottom:2.756680pt;}
.y299{bottom:2.756720pt;}
.y20c{bottom:2.756787pt;}
.y2ed{bottom:2.756827pt;}
.y2ac{bottom:2.756880pt;}
.y1c6{bottom:2.756973pt;}
.y1db{bottom:2.758587pt;}
.yb4{bottom:2.759280pt;}
.y256{bottom:2.759733pt;}
.y2f5{bottom:2.759840pt;}
.y1ca{bottom:2.760013pt;}
.y1dd{bottom:2.760093pt;}
.yb6{bottom:2.760827pt;}
.y56{bottom:2.761027pt;}
.y2cf{bottom:2.761147pt;}
.y24d{bottom:2.761160pt;}
.y215{bottom:2.761307pt;}
.y277{bottom:2.761440pt;}
.y25a{bottom:2.762733pt;}
.y101{bottom:2.763840pt;}
.y25c{bottom:2.764240pt;}
.y219{bottom:2.764360pt;}
.y2bb{bottom:2.764547pt;}
.y116{bottom:2.765533pt;}
.y1f5{bottom:2.765707pt;}
.y2d7{bottom:2.765787pt;}
.yb2{bottom:2.781813pt;}
.y1bb{bottom:2.791307pt;}
.yb0{bottom:2.792240pt;}
.y153{bottom:2.795573pt;}
.ye{bottom:2.801680pt;}
.y137{bottom:2.804493pt;}
.y186{bottom:2.887293pt;}
.y15d{bottom:2.888267pt;}
.y118{bottom:2.888547pt;}
.y176{bottom:2.888587pt;}
.y157{bottom:2.888653pt;}
.y17f{bottom:2.888720pt;}
.y88{bottom:2.888747pt;}
.y264{bottom:2.888787pt;}
.y1be{bottom:2.888880pt;}
.y27f{bottom:2.888973pt;}
.y1d7{bottom:2.889067pt;}
.y15f{bottom:2.889800pt;}
.ycf{bottom:2.889973pt;}
.y177{bottom:2.890133pt;}
.y2de{bottom:2.890267pt;}
.y20f{bottom:2.890307pt;}
.y231{bottom:2.890493pt;}
.y242{bottom:2.890587pt;}
.y12c{bottom:2.891280pt;}
.y149{bottom:2.891400pt;}
.y52{bottom:2.891480pt;}
.y167{bottom:2.891600pt;}
.y124{bottom:2.891680pt;}
.y141{bottom:2.891760pt;}
.y8c{bottom:2.891787pt;}
.y28b{bottom:2.892080pt;}
.yfd{bottom:2.892813pt;}
.y1ef{bottom:2.893147pt;}
.y169{bottom:2.893187pt;}
.y1b1{bottom:2.893227pt;}
.y143{bottom:2.893280pt;}
.y266{bottom:2.893307pt;}
.ya6{bottom:2.893400pt;}
.y2b1{bottom:2.893440pt;}
.y19c{bottom:2.893507pt;}
.y1e0{bottom:2.893613pt;}
.y14b{bottom:2.894413pt;}
.y114{bottom:2.894533pt;}
.y12e{bottom:2.895827pt;}
.y10b{bottom:2.895920pt;}
.y13c{bottom:2.896120pt;}
.y96{bottom:2.896320pt;}
.y27a{bottom:2.896453pt;}
.y1a0{bottom:2.896547pt;}
.y1e{bottom:2.896893pt;}
.y159{bottom:2.897720pt;}
.y25e{bottom:2.897787pt;}
.y18f{bottom:2.897867pt;}
.y1a1{bottom:2.898053pt;}
.y103{bottom:2.898840pt;}
.y14d{bottom:2.898960pt;}
.y72{bottom:2.899160pt;}
.yed{bottom:2.899240pt;}
.y62{bottom:2.900547pt;}
.y1ab{bottom:2.900627pt;}
.y120{bottom:2.900667pt;}
.y78{bottom:2.900680pt;}
.y1f9{bottom:2.900720pt;}
.yef{bottom:2.900760pt;}
.y188{bottom:2.900800pt;}
.y2ef{bottom:2.900827pt;}
.y2ad{bottom:2.900880pt;}
.y199{bottom:2.900987pt;}
.y2bc{bottom:2.901080pt;}
.y30{bottom:2.901533pt;}
.yfb{bottom:2.901773pt;}
.yc4{bottom:2.901893pt;}
.y163{bottom:2.901973pt;}
.y50{bottom:2.902013pt;}
.ydc{bottom:2.902067pt;}
.y2c9{bottom:2.902093pt;}
.y64{bottom:2.902107pt;}
.y122{bottom:2.902160pt;}
.y7a{bottom:2.902173pt;}
.y180{bottom:2.902213pt;}
.y12a{bottom:2.902253pt;}
.y8a{bottom:2.902267pt;}
.y189{bottom:2.902307pt;}
.y2f1{bottom:2.902347pt;}
.ya2{bottom:2.902360pt;}
.y192{bottom:2.902387pt;}
.y19a{bottom:2.902480pt;}
.y1a5{bottom:2.902587pt;}
.y16{bottom:2.902867pt;}
.y26{bottom:2.902960pt;}
.y32{bottom:2.903053pt;}
.y161{bottom:2.903320pt;}
.yc6{bottom:2.903400pt;}
.yd1{bottom:2.903493pt;}
.y66{bottom:2.903600pt;}
.y178{bottom:2.903640pt;}
.ye7{bottom:2.903680pt;}
.y7c{bottom:2.903693pt;}
.y181{bottom:2.903733pt;}
.yf3{bottom:2.903773pt;}
.y90{bottom:2.903787pt;}
.y18a{bottom:2.903813pt;}
.y2f7{bottom:2.903840pt;}
.ya4{bottom:2.903867pt;}
.y193{bottom:2.903920pt;}
.y19b{bottom:2.904013pt;}
.y1a6{bottom:2.904093pt;}
.y18{bottom:2.904387pt;}
.y34{bottom:2.904573pt;}
.yb8{bottom:2.904787pt;}
.y132{bottom:2.904907pt;}
.yd3{bottom:2.904987pt;}
.y11a{bottom:2.905107pt;}
.y68{bottom:2.905120pt;}
.y7e{bottom:2.905187pt;}
.y182{bottom:2.905227pt;}
.yf5{bottom:2.905267pt;}
.y18b{bottom:2.905307pt;}
.y2f9{bottom:2.905360pt;}
.y194{bottom:2.905440pt;}
.y1cd{bottom:2.905507pt;}
.y1a7{bottom:2.905600pt;}
.y1a{bottom:2.905880pt;}
.y36{bottom:2.906067pt;}
.yba{bottom:2.906333pt;}
.y109{bottom:2.906413pt;}
.yd5{bottom:2.906507pt;}
.y5a{bottom:2.906547pt;}
.y6a{bottom:2.906613pt;}
.y179{bottom:2.906653pt;}
.y80{bottom:2.906693pt;}
.y183{bottom:2.906733pt;}
.y94{bottom:2.906800pt;}
.y18c{bottom:2.906827pt;}
.ya8{bottom:2.906893pt;}
.y195{bottom:2.906933pt;}
.y236{bottom:2.907027pt;}
.y1c{bottom:2.907400pt;}
.y38{bottom:2.907587pt;}
.y134{bottom:2.907920pt;}
.y48{bottom:2.907960pt;}
.y5c{bottom:2.908040pt;}
.y6c{bottom:2.908120pt;}
.y2d4{bottom:2.908200pt;}
.y128{bottom:2.908227pt;}
.y184{bottom:2.908240pt;}
.y2e6{bottom:2.908280pt;}
.y18d{bottom:2.908360pt;}
.yaa{bottom:2.908413pt;}
.y196{bottom:2.908453pt;}
.y3a{bottom:2.909107pt;}
.ybe{bottom:2.909347pt;}
.y4a{bottom:2.909427pt;}
.y5e{bottom:2.909547pt;}
.y6e{bottom:2.909627pt;}
.y1f6{bottom:2.909667pt;}
.yeb{bottom:2.909720pt;}
.y84{bottom:2.909747pt;}
.y9c{bottom:2.909840pt;}
.y1bd{bottom:2.909880pt;}
.y197{bottom:2.909947pt;}
.y284{bottom:2.910053pt;}
.y20{bottom:2.910400pt;}
.y2c{bottom:2.910520pt;}
.yc0{bottom:2.910893pt;}
.y4c{bottom:2.910960pt;}
.y60{bottom:2.911053pt;}
.y76{bottom:2.911133pt;}
.y11e{bottom:2.911147pt;}
.y17d{bottom:2.911213pt;}
.y13f{bottom:2.911240pt;}
.y86{bottom:2.911253pt;}
.y207{bottom:2.911293pt;}
.y9e{bottom:2.911333pt;}
.y190{bottom:2.911373pt;}
.y198{bottom:2.911480pt;}
.y1a2{bottom:2.911560pt;}
.y22{bottom:2.911947pt;}
.y2e{bottom:2.912027pt;}
.y3e{bottom:2.912120pt;}
.yae{bottom:2.912267pt;}
.yc2{bottom:2.912347pt;}
.y4e{bottom:2.912440pt;}
.ycd{bottom:2.912480pt;}
.y3{bottom:64.176000pt;}
.y173{bottom:64.188013pt;}
.y16a{bottom:67.176000pt;}
.y1{bottom:67.284000pt;}
.y1a8{bottom:67.475987pt;}
.yf4{bottom:104.628013pt;}
.y142{bottom:104.640000pt;}
.y243{bottom:104.784000pt;}
.yab{bottom:105.336000pt;}
.y41{bottom:106.860000pt;}
.ya9{bottom:118.644000pt;}
.y3f{bottom:119.712000pt;}
.yf2{bottom:120.696000pt;}
.y140{bottom:120.708013pt;}
.y1dc{bottom:120.840000pt;}
.y28c{bottom:120.852013pt;}
.y1de{bottom:121.716000pt;}
.ya7{bottom:134.712000pt;}
.y129{bottom:136.764000pt;}
.y241{bottom:136.776000pt;}
.y1da{bottom:136.908000pt;}
.y1d8{bottom:137.304000pt;}
.y2bf{bottom:139.428000pt;}
.y15a{bottom:139.475987pt;}
.yf0{bottom:139.524013pt;}
.ya5{bottom:150.791987pt;}
.y3d{bottom:151.656000pt;}
.y3b{bottom:151.836000pt;}
.yee{bottom:152.831987pt;}
.y1d6{bottom:152.844000pt;}
.y1d4{bottom:152.988000pt;}
.y23f{bottom:153.852013pt;}
.y1a3{bottom:155.544000pt;}
.y2bd{bottom:155.556013pt;}
.ya3{bottom:166.848000pt;}
.y13e{bottom:168.888000pt;}
.yec{bottom:168.900000pt;}
.y1d2{bottom:169.044000pt;}
.y289{bottom:169.056013pt;}
.y285{bottom:169.403987pt;}
.y1d0{bottom:169.440000pt;}
.y23d{bottom:169.920000pt;}
.y287{bottom:171.647987pt;}
.ya1{bottom:182.916000pt;}
.y39{bottom:183.791987pt;}
.yea{bottom:184.956000pt;}
.y158{bottom:184.968000pt;}
.y37{bottom:199.859987pt;}
.y9f{bottom:200.003987pt;}
.y127{bottom:201.023987pt;}
.y19f{bottom:201.035987pt;}
.y2ba{bottom:201.167987pt;}
.y239{bottom:201.179987pt;}
.y237{bottom:201.575987pt;}
.y23b{bottom:202.055987pt;}
.y1ce{bottom:203.771987pt;}
.y9d{bottom:215.040000pt;}
.y35{bottom:215.928000pt;}
.y126{bottom:217.092000pt;}
.y234{bottom:217.247987pt;}
.ye8{bottom:217.368000pt;}
.y19d{bottom:219.816000pt;}
.y9b{bottom:231.107987pt;}
.y33{bottom:231.995987pt;}
.y125{bottom:233.160000pt;}
.y168{bottom:233.172000pt;}
.y280{bottom:233.316000pt;}
.y232{bottom:233.328000pt;}
.y282{bottom:236.063987pt;}
.y95{bottom:247.187987pt;}
.y99{bottom:247.727987pt;}
.y31{bottom:248.063987pt;}
.ye6{bottom:249.227987pt;}
.y123{bottom:249.239987pt;}
.y1c9{bottom:249.371987pt;}
.y1cb{bottom:249.767987pt;}
.y2b8{bottom:251.988000pt;}
.y97{bottom:253.811987pt;}
.y93{bottom:263.244000pt;}
.y2f{bottom:264.132000pt;}
.y121{bottom:265.296000pt;}
.y230{bottom:265.307987pt;}
.y1c7{bottom:265.451987pt;}
.ye4{bottom:268.008000pt;}
.y91{bottom:279.851987pt;}
.y2d{bottom:280.187987pt;}
.y11f{bottom:281.363987pt;}
.y156{bottom:281.376000pt;}
.y1c5{bottom:281.508000pt;}
.y22c{bottom:281.903987pt;}
.y22e{bottom:284.123987pt;}
.y8f{bottom:295.379987pt;}
.y8b{bottom:295.391987pt;}
.y2b{bottom:296.255987pt;}
.y8d{bottom:296.399987pt;}
.y11d{bottom:297.419987pt;}
.y1c3{bottom:297.575987pt;}
.y22a{bottom:297.587987pt;}
.ye2{bottom:297.707987pt;}
.y2b4{bottom:297.971987pt;}
.y2b6{bottom:300.095987pt;}
.y89{bottom:311.448000pt;}
.y29{bottom:312.491987pt;}
.y13d{bottom:313.488000pt;}
.y1c1{bottom:313.643987pt;}
.y27d{bottom:313.667987pt;}
.y27b{bottom:314.040000pt;}
.y154{bottom:316.259987pt;}
.y87{bottom:327.528000pt;}
.ye1{bottom:329.555987pt;}
.y13b{bottom:329.567987pt;}
.y228{bottom:329.712000pt;}
.y11b{bottom:329.831987pt;}
.y1bf{bottom:332.219987pt;}
.y2b2{bottom:332.291987pt;}
.y85{bottom:343.571987pt;}
.ye0{bottom:345.623987pt;}
.y226{bottom:345.779987pt;}
.y27{bottom:347.208013pt;}
.y278{bottom:348.288000pt;}
.y139{bottom:348.347987pt;}
.y83{bottom:359.639973pt;}
.y119{bottom:361.691973pt;}
.y2b0{bottom:361.703973pt;}
.y276{bottom:361.835973pt;}
.y224{bottom:361.859987pt;}
.y222{bottom:362.231973pt;}
.yde{bottom:364.415973pt;}
.y81{bottom:376.259973pt;}
.y25{bottom:376.595987pt;}
.ydd{bottom:377.759973pt;}
.y166{bottom:377.771973pt;}
.y152{bottom:377.868000pt;}
.y274{bottom:377.915973pt;}
.y23{bottom:379.307987pt;}
.y2ae{bottom:380.519973pt;}
.y7f{bottom:391.776000pt;}
.ydb{bottom:393.828000pt;}
.y21e{bottom:393.983973pt;}
.y272{bottom:393.995973pt;}
.yf8{bottom:394.559973pt;}
.y220{bottom:394.847987pt;}
.y7d{bottom:407.844000pt;}
.y21{bottom:408.719973pt;}
.yda{bottom:409.896000pt;}
.y117{bottom:409.908000pt;}
.y2ab{bottom:410.040000pt;}
.y270{bottom:410.436000pt;}
.y150{bottom:412.607987pt;}
.y7b{bottom:423.911987pt;}
.y1f{bottom:424.788000pt;}
.yd9{bottom:425.951987pt;}
.y21c{bottom:426.120000pt;}
.y79{bottom:439.979987pt;}
.y1d{bottom:440.868000pt;}
.y138{bottom:442.019973pt;}
.y18e{bottom:442.031987pt;}
.y115{bottom:442.163987pt;}
.y26e{bottom:442.187987pt;}
.yd7{bottom:442.571987pt;}
.yf6{bottom:442.955973pt;}
.y77{bottom:456.047973pt;}
.y1b{bottom:456.923987pt;}
.yd6{bottom:458.087973pt;}
.y218{bottom:458.231973pt;}
.y2a9{bottom:458.243973pt;}
.y2a7{bottom:460.847987pt;}
.y21a{bottom:460.991987pt;}
.y75{bottom:472.104000pt;}
.y71{bottom:472.115973pt;}
.y19{bottom:472.991987pt;}
.y6f{bottom:473.135987pt;}
.y2f8{bottom:474.144000pt;}
.yd4{bottom:474.156000pt;}
.y113{bottom:474.167973pt;}
.y73{bottom:474.828000pt;}
.y6d{bottom:488.172000pt;}
.y17{bottom:489.059973pt;}
.y2f6{bottom:490.212000pt;}
.yd2{bottom:490.224000pt;}
.y265{bottom:490.236000pt;}
.y2f4{bottom:490.356000pt;}
.y214{bottom:490.368000pt;}
.y267{bottom:490.380000pt;}
.y2f2{bottom:490.752000pt;}
.y216{bottom:491.243973pt;}
.y26b{bottom:492.960000pt;}
.y164{bottom:492.972000pt;}
.y269{bottom:493.127973pt;}
.y6b{bottom:504.239987pt;}
.y15{bottom:505.127973pt;}
.y2f0{bottom:506.279987pt;}
.yd0{bottom:506.291987pt;}
.y112{bottom:506.304000pt;}
.y212{bottom:506.460000pt;}
.y210{bottom:506.831987pt;}
.y69{bottom:520.307987pt;}
.y2ee{bottom:522.347987pt;}
.y162{bottom:522.359987pt;}
.yce{bottom:522.371987pt;}
.y2ec{bottom:522.491987pt;}
.y2ea{bottom:523.368000pt;}
.y14e{bottom:525.071987pt;}
.y67{bottom:536.375973pt;}
.y2e9{bottom:538.403973pt;}
.ycc{bottom:538.415973pt;}
.y187{bottom:538.427973pt;}
.y263{bottom:538.439987pt;}
.y136{bottom:538.523960pt;}
.y20b{bottom:538.571987pt;}
.y110{bottom:538.583987pt;}
.y10e{bottom:538.967973pt;}
.y13{bottom:540.000000pt;}
.y209{bottom:541.092000pt;}
.y20d{bottom:541.187987pt;}
.y65{bottom:552.443973pt;}
.y2e7{bottom:554.471960pt;}
.ycb{bottom:554.483973pt;}
.y14c{bottom:554.495973pt;}
.y185{bottom:554.507973pt;}
.y1ba{bottom:554.603960pt;}
.y261{bottom:554.639973pt;}
.y25f{bottom:555.035973pt;}
.y2a5{bottom:555.515987pt;}
.y205{bottom:557.160000pt;}
.y203{bottom:557.243973pt;}
.y63{bottom:568.511960pt;}
.y2e5{bottom:570.540000pt;}
.y135{bottom:570.552000pt;}
.y25d{bottom:570.563960pt;}
.y2a1{bottom:571.092000pt;}
.y1b8{bottom:571.739987pt;}
.y10c{bottom:573.276000pt;}
.y2a3{bottom:573.311973pt;}
.y1b6{bottom:573.323973pt;}
.y61{bottom:584.580000pt;}
.y133{bottom:586.620000pt;}
.y10a{bottom:586.632000pt;}
.y25b{bottom:586.764000pt;}
.y201{bottom:586.776000pt;}
.y2e3{bottom:587.160000pt;}
.y2a0{bottom:587.172000pt;}
.y11{bottom:588.239987pt;}
.yc9{bottom:589.368000pt;}
.yf{bottom:598.979987pt;}
.y5f{bottom:600.635987pt;}
.y2e2{bottom:602.675987pt;}
.y108{bottom:602.687987pt;}
.y14a{bottom:602.699987pt;}
.y259{bottom:602.831987pt;}
.y1ff{bottom:602.856000pt;}
.y1b4{bottom:603.239987pt;}
.y29e{bottom:603.719973pt;}
.yd{bottom:611.267987pt;}
.y5d{bottom:616.703973pt;}
.y2df{bottom:618.743973pt;}
.y131{bottom:618.755987pt;}
.y1b0{bottom:618.767987pt;}
.y29c{bottom:618.911987pt;}
.y1b2{bottom:619.776000pt;}
.yc7{bottom:621.515987pt;}
.y5b{bottom:632.771973pt;}
.yc5{bottom:634.823973pt;}
.y148{bottom:634.835973pt;}
.y255{bottom:634.967973pt;}
.y106{bottom:634.991987pt;}
.y104{bottom:635.363973pt;}
.y257{bottom:635.844000pt;}
.y59{bottom:648.839960pt;}
.y2dd{bottom:650.879960pt;}
.yc3{bottom:650.891973pt;}
.y2db{bottom:651.035973pt;}
.y1fc{bottom:651.047973pt;}
.y2d9{bottom:651.419960pt;}
.y253{bottom:652.080000pt;}
.y29a{bottom:653.555987pt;}
.yb{bottom:661.979987pt;}
.y55{bottom:665.051960pt;}
.y2d8{bottom:666.936000pt;}
.yc1{bottom:666.948000pt;}
.y1f8{bottom:666.959960pt;}
.y17e{bottom:666.971960pt;}
.y298{bottom:667.103960pt;}
.y1fa{bottom:667.127973pt;}
.y296{bottom:667.499960pt;}
.y57{bottom:667.667973pt;}
.y1ae{bottom:669.695960pt;}
.y51{bottom:680.988000pt;}
.y53{bottom:681.132000pt;}
.y2d5{bottom:683.003987pt;}
.ybf{bottom:683.015947pt;}
.y102{bottom:683.028000pt;}
.y2d6{bottom:683.147947pt;}
.y251{bottom:683.184000pt;}
.y12f{bottom:683.303960pt;}
.y1f7{bottom:684.048013pt;}
.y9{bottom:690.899987pt;}
.y4f{bottom:697.043947pt;}
.y2d3{bottom:699.071947pt;}
.ybd{bottom:699.083987pt;}
.y1f4{bottom:699.227947pt;}
.y24f{bottom:699.264000pt;}
.y294{bottom:699.635987pt;}
.y1ac{bottom:700.115973pt;}
.y17b{bottom:701.844000pt;}
.y4d{bottom:713.100013pt;}
.y17a{bottom:715.152013pt;}
.y12d{bottom:715.163987pt;}
.y100{bottom:715.295973pt;}
.y1f2{bottom:715.307947pt;}
.yfe{bottom:715.703933pt;}
.y2d2{bottom:716.171960pt;}
.y292{bottom:717.887933pt;}
.ybb{bottom:717.911947pt;}
.y4b{bottom:729.167973pt;}
.yb9{bottom:731.219973pt;}
.y2ce{bottom:731.351973pt;}
.y290{bottom:731.375973pt;}
.y146{bottom:731.496013pt;}
.y2cc{bottom:731.747960pt;}
.y1f0{bottom:731.771973pt;}
.y2d0{bottom:733.968013pt;}
.y49{bottom:745.236000pt;}
.yb7{bottom:747.288000pt;}
.yfc{bottom:747.299973pt;}
.yb5{bottom:747.431960pt;}
.y2ca{bottom:748.295973pt;}
.y24b{bottom:748.307947pt;}
.y1ed{bottom:750.024013pt;}
.y47{bottom:761.303960pt;}
.y2c8{bottom:763.344000pt;}
.y160{bottom:763.355960pt;}
.y12b{bottom:763.368000pt;}
.yb3{bottom:763.500000pt;}
.y1eb{bottom:763.511960pt;}
.y1e9{bottom:763.896000pt;}
.y144{bottom:766.067947pt;}
.y170{bottom:775.223960pt;}
.yfa{bottom:779.423987pt;}
.y15e{bottom:779.435960pt;}
.yb1{bottom:779.543947pt;}
.y2c4{bottom:779.555987pt;}
.y1e3{bottom:779.580000pt;}
.y28e{bottom:779.591960pt;}
.y2c6{bottom:780.431960pt;}
.y1e7{bottom:782.147947pt;}
.y1e5{bottom:782.327960pt;}
.y16e{bottom:785.963947pt;}
.yad{bottom:795.479987pt;}
.y1aa{bottom:795.491947pt;}
.y15c{bottom:795.503987pt;}
.yaf{bottom:795.600013pt;}
.y247{bottom:795.635987pt;}
.y2c1{bottom:796.019933pt;}
.y245{bottom:796.031987pt;}
.y45{bottom:796.187987pt;}
.y1e1{bottom:798.215987pt;}
.y249{bottom:798.251947pt;}
.y16c{bottom:798.816000pt;}
.y7{bottom:816.119960pt;}
.y5{bottom:832.187987pt;}
.y43{bottom:832.656000pt;}
.h2a{height:1.475987pt;}
.h7f{height:1.476000pt;}
.h8b{height:1.476013pt;}
.ha8{height:1.487947pt;}
.h9d{height:1.488000pt;}
.h32{height:5.412013pt;}
.ha4{height:5.700013pt;}
.h7{height:6.912027pt;}
.hf{height:7.800013pt;}
.h5d{height:7.884027pt;}
.h21{height:8.747973pt;}
.h5e{height:8.747987pt;}
.h4{height:8.760000pt;}
.h6{height:8.760013pt;}
.h83{height:9.012000pt;}
.h63{height:9.012013pt;}
.h72{height:9.012040pt;}
.h9b{height:9.036013pt;}
.h7e{height:9.120000pt;}
.h2d{height:9.203987pt;}
.h2{height:9.204000pt;}
.h16{height:9.204013pt;}
.h69{height:9.239987pt;}
.h59{height:9.240013pt;}
.h5f{height:9.251947pt;}
.h36{height:9.251987pt;}
.h3d{height:9.252000pt;}
.h3a{height:9.252040pt;}
.h75{height:9.275960pt;}
.hb3{height:9.276000pt;}
.ha7{height:9.276053pt;}
.h4d{height:9.287960pt;}
.h61{height:9.287987pt;}
.h42{height:9.288000pt;}
.h44{height:9.299987pt;}
.h57{height:9.300000pt;}
.h58{height:9.300013pt;}
.h55{height:9.300053pt;}
.h5a{height:9.312000pt;}
.h51{height:9.312013pt;}
.h7c{height:9.335973pt;}
.h9f{height:9.347987pt;}
.h6b{height:9.348000pt;}
.h73{height:9.348067pt;}
.h49{height:9.360000pt;}
.h1e{height:9.599987pt;}
.h20{height:9.600000pt;}
.h18{height:9.863973pt;}
.h10{height:9.875973pt;}
.h5b{height:9.911947pt;}
.hd{height:9.996000pt;}
.h6a{height:10.823973pt;}
.h93{height:10.895987pt;}
.hae{height:10.896000pt;}
.h64{height:10.979973pt;}
.h2c{height:10.979987pt;}
.h8e{height:10.980000pt;}
.hb8{height:10.980053pt;}
.h98{height:10.991973pt;}
.h8f{height:10.991987pt;}
.h30{height:10.992000pt;}
.h71{height:10.992013pt;}
.h82{height:10.992027pt;}
.h90{height:11.003987pt;}
.h87{height:11.052000pt;}
.h66{height:11.063960pt;}
.ha3{height:11.316000pt;}
.h68{height:11.363973pt;}
.h4a{height:11.364013pt;}
.h92{height:11.375973pt;}
.h70{height:11.375987pt;}
.h8a{height:11.376000pt;}
.h4b{height:11.376013pt;}
.h4e{height:11.376027pt;}
.h34{height:11.460000pt;}
.h76{height:11.460040pt;}
.hb6{height:11.460053pt;}
.hab{height:11.471960pt;}
.h2f{height:11.472000pt;}
.h31{height:11.472013pt;}
.hb2{height:11.484013pt;}
.h77{height:11.484053pt;}
.hb9{height:11.531973pt;}
.h80{height:11.531987pt;}
.hb4{height:11.532000pt;}
.h40{height:11.532013pt;}
.hb1{height:11.628000pt;}
.ha9{height:11.639973pt;}
.h1c{height:11.748000pt;}
.had{height:11.795987pt;}
.h5c{height:11.808027pt;}
.h95{height:11.831947pt;}
.h4c{height:11.843987pt;}
.h8c{height:11.844000pt;}
.ha1{height:11.844027pt;}
.h27{height:11.855960pt;}
.ha5{height:11.855973pt;}
.h85{height:11.855987pt;}
.h4f{height:11.856000pt;}
.h6c{height:11.856013pt;}
.h86{height:11.856027pt;}
.h74{height:11.856040pt;}
.h6f{height:11.867987pt;}
.h29{height:11.868000pt;}
.h39{height:11.868013pt;}
.h38{height:11.892013pt;}
.h37{height:11.903973pt;}
.h88{height:11.904013pt;}
.h67{height:11.915973pt;}
.h91{height:11.939973pt;}
.ha0{height:11.939987pt;}
.h97{height:11.940013pt;}
.h8d{height:11.951987pt;}
.h19{height:11.952000pt;}
.h7d{height:11.952027pt;}
.h60{height:11.988000pt;}
.h26{height:11.999960pt;}
.h13{height:12.000000pt;}
.h24{height:12.011960pt;}
.h14{height:12.011973pt;}
.h1b{height:12.011987pt;}
.h11{height:12.012000pt;}
.h12{height:12.012013pt;}
.h23{height:12.012040pt;}
.h3b{height:12.012053pt;}
.h25{height:12.023933pt;}
.h3c{height:12.023960pt;}
.h2e{height:12.023973pt;}
.h1d{height:12.023987pt;}
.h15{height:12.024000pt;}
.h1a{height:12.024013pt;}
.h9e{height:12.060013pt;}
.h41{height:12.071987pt;}
.h35{height:12.072000pt;}
.h79{height:12.072013pt;}
.h9a{height:12.083973pt;}
.h2b{height:12.083987pt;}
.h89{height:12.084000pt;}
.h3f{height:12.084013pt;}
.h84{height:12.084027pt;}
.h96{height:12.084067pt;}
.h43{height:12.192000pt;}
.h52{height:12.192053pt;}
.h50{height:12.203987pt;}
.h45{height:12.204000pt;}
.h3e{height:12.287960pt;}
.h22{height:12.288000pt;}
.h6d{height:12.288013pt;}
.h65{height:12.300013pt;}
.h56{height:12.335933pt;}
.hb{height:12.503987pt;}
.h53{height:12.516040pt;}
.h99{height:13.691973pt;}
.h78{height:13.739987pt;}
.hb5{height:13.752000pt;}
.hb7{height:13.752040pt;}
.h7b{height:14.040000pt;}
.haa{height:14.219973pt;}
.h9c{height:14.220013pt;}
.h94{height:14.220053pt;}
.h6e{height:14.232000pt;}
.h7a{height:14.232013pt;}
.h81{height:14.411987pt;}
.ha2{height:14.412013pt;}
.h62{height:14.759987pt;}
.haf{height:14.760000pt;}
.ha6{height:14.760013pt;}
.h54{height:14.772000pt;}
.hac{height:14.772013pt;}
.hb0{height:14.784013pt;}
.ha{height:17.760000pt;}
.h8{height:21.936027pt;}
.h5{height:27.179688pt;}
.h33{height:28.480285pt;}
.h46{height:29.736000pt;}
.h17{height:36.853333pt;}
.h1f{height:37.973333pt;}
.h48{height:38.270833pt;}
.he{height:38.458333pt;}
.h28{height:46.720000pt;}
.h3{height:47.466667pt;}
.hc{height:48.515625pt;}
.h9{height:86.531250pt;}
.h47{height:127.992027pt;}
.h0{height:907.086587pt;}
.h1{height:907.333333pt;}
.w1c0{width:0.359987pt;}
.w2b{width:2.399973pt;}
.w198{width:2.975987pt;}
.w17b{width:3.636013pt;}
.w40{width:3.756027pt;}
.wdc{width:7.380000pt;}
.w67{width:7.896013pt;}
.w17c{width:9.419987pt;}
.w66{width:9.900013pt;}
.wfd{width:12.648013pt;}
.w160{width:12.660000pt;}
.w72{width:12.960000pt;}
.w6f{width:13.104000pt;}
.w76{width:13.848000pt;}
.w6c{width:13.860013pt;}
.w11c{width:14.052000pt;}
.w15f{width:14.135987pt;}
.wfc{width:14.136013pt;}
.w177{width:14.220000pt;}
.w157{width:15.672000pt;}
.w19e{width:16.632000pt;}
.w2{width:17.099973pt;}
.w46{width:17.592000pt;}
.w68{width:17.687987pt;}
.wa6{width:17.784000pt;}
.w93{width:17.831987pt;}
.wb5{width:17.963987pt;}
.w83{width:18.084000pt;}
.w65{width:18.144000pt;}
.w20{width:18.179987pt;}
.wb9{width:18.192000pt;}
.w18c{width:18.780000pt;}
.w105{width:20.832013pt;}
.w17f{width:22.020000pt;}
.w109{width:23.136013pt;}
.w1a8{width:25.032000pt;}
.w33{width:25.344013pt;}
.w54{width:25.896000pt;}
.w13b{width:27.539987pt;}
.wb6{width:30.888000pt;}
.wde{width:32.688013pt;}
.wa3{width:34.632000pt;}
.w1c6{width:36.132000pt;}
.wfa{width:36.456013pt;}
.w41{width:38.064000pt;}
.w96{width:38.460013pt;}
.w114{width:41.208013pt;}
.w195{width:43.824000pt;}
.w8d{width:45.228000pt;}
.w144{width:47.003987pt;}
.w123{width:47.423987pt;}
.w1ce{width:47.711987pt;}
.w137{width:48.036000pt;}
.w98{width:48.875987pt;}
.w19d{width:49.356000pt;}
.w133{width:50.075987pt;}
.w101{width:50.280000pt;}
.w1ba{width:50.616000pt;}
.w185{width:51.612000pt;}
.w1bd{width:52.043987pt;}
.wb{width:53.003987pt;}
.w9a{width:54.132000pt;}
.w110{width:54.180013pt;}
.w182{width:56.219987pt;}
.w94{width:56.736013pt;}
.w150{width:56.760013pt;}
.w15{width:59.880013pt;}
.we2{width:59.904013pt;}
.w189{width:65.400013pt;}
.w1ad{width:65.795973pt;}
.wbe{width:66.300000pt;}
.wdb{width:66.347987pt;}
.w1c7{width:67.092000pt;}
.w13e{width:67.511987pt;}
.w30{width:68.208013pt;}
.w191{width:68.472000pt;}
.w16c{width:69.480000pt;}
.w19f{width:71.639987pt;}
.w111{width:72.612000pt;}
.w1a4{width:74.399973pt;}
.w71{width:74.423987pt;}
.wd6{width:74.556013pt;}
.w14d{width:75.756000pt;}
.w1be{width:76.080000pt;}
.w32{width:77.339987pt;}
.w124{width:77.891987pt;}
.wf2{width:77.951987pt;}
.w13{width:78.072000pt;}
.w1d7{width:80.615987pt;}
.w5{width:80.675987pt;}
.w168{width:81.143960pt;}
.w14a{width:81.660000pt;}
.w149{width:82.632000pt;}
.w161{width:83.880000pt;}
.w152{width:84.108000pt;}
.w1b7{width:86.856000pt;}
.wb1{width:87.636013pt;}
.w14e{width:88.752000pt;}
.w19a{width:89.076000pt;}
.w106{width:90.540000pt;}
.wef{width:91.284027pt;}
.w23{width:92.544013pt;}
.w10e{width:92.796000pt;}
.w55{width:93.816000pt;}
.w1c5{width:94.116000pt;}
.wfe{width:94.608013pt;}
.w1bf{width:95.423987pt;}
.w17e{width:97.248000pt;}
.w1a2{width:98.003987pt;}
.wd8{width:98.543987pt;}
.w5d{width:100.259987pt;}
.w31{width:100.536013pt;}
.w70{width:100.932000pt;}
.we8{width:101.352000pt;}
.wb8{width:101.711987pt;}
.w120{width:102.083973pt;}
.w13c{width:102.756000pt;}
.w3d{width:103.043987pt;}
.w155{width:103.572000pt;}
.w169{width:104.676000pt;}
.w6e{width:105.143973pt;}
.w164{width:105.947987pt;}
.w3b{width:107.244000pt;}
.w11d{width:107.387987pt;}
.w1bb{width:107.448000pt;}
.w45{width:108.263987pt;}
.w1a0{width:110.232000pt;}
.w129{width:110.543987pt;}
.w178{width:111.132000pt;}
.w117{width:111.563987pt;}
.w135{width:112.224000pt;}
.wb2{width:113.292000pt;}
.wed{width:114.036000pt;}
.w12d{width:115.080000pt;}
.w138{width:115.956000pt;}
.w184{width:116.052000pt;}
.w181{width:116.508027pt;}
.w3a{width:116.699987pt;}
.w4f{width:117.288013pt;}
.w14b{width:118.008000pt;}
.w1d6{width:118.008027pt;}
.w1d2{width:118.931987pt;}
.w1c3{width:118.955973pt;}
.w186{width:119.651987pt;}
.w1d1{width:120.132000pt;}
.w162{width:120.252000pt;}
.w81{width:120.768013pt;}
.w1dd{width:121.175973pt;}
.w132{width:121.812000pt;}
.w6d{width:122.376000pt;}
.w18f{width:122.436000pt;}
.w153{width:122.819987pt;}
.w60{width:124.403987pt;}
.w1b4{width:126.383987pt;}
.w119{width:127.632000pt;}
.w112{width:127.824000pt;}
.w134{width:128.759987pt;}
.w14c{width:128.843973pt;}
.wf8{width:130.187987pt;}
.w1a6{width:130.451987pt;}
.w141{width:130.595987pt;}
.w1a9{width:132.035987pt;}
.w10a{width:132.263973pt;}
.wc0{width:133.176000pt;}
.wd7{width:135.660000pt;}
.wfb{width:135.708013pt;}
.w113{width:136.152000pt;}
.w140{width:136.884000pt;}
.w79{width:141.264000pt;}
.wee{width:142.056013pt;}
.wf0{width:142.488000pt;}
.w194{width:144.083973pt;}
.wa{width:146.244000pt;}
.w1b8{width:146.483987pt;}
.w14f{width:146.700000pt;}
.w1ab{width:147.948000pt;}
.w10d{width:148.236000pt;}
.w196{width:148.343987pt;}
.w1f{width:148.704000pt;}
.w108{width:149.795973pt;}
.w5a{width:149.868000pt;}
.w87{width:149.987973pt;}
.w1b3{width:150.467973pt;}
.w38{width:150.599987pt;}
.w15d{width:152.171973pt;}
.wa0{width:152.604000pt;}
.w16f{width:157.067987pt;}
.wc6{width:157.547987pt;}
.w15a{width:158.100000pt;}
.w1aa{width:158.964000pt;}
.w16a{width:159.635987pt;}
.wff{width:159.912013pt;}
.w1e{width:160.572000pt;}
.w12c{width:163.175973pt;}
.w1cd{width:164.135987pt;}
.w29{width:165.071973pt;}
.wd5{width:166.272000pt;}
.we3{width:166.727987pt;}
.w1d5{width:166.763987pt;}
.w1a1{width:166.775973pt;}
.w13f{width:166.776000pt;}
.w17d{width:168.491973pt;}
.w15e{width:168.815987pt;}
.w11f{width:168.816000pt;}
.w1c9{width:168.911987pt;}
.w176{width:169.068000pt;}
.w1d4{width:171.695987pt;}
.w1ae{width:171.912013pt;}
.wf6{width:172.776000pt;}
.wc3{width:173.724000pt;}
.w11a{width:174.540000pt;}
.w122{width:175.967973pt;}
.w9{width:175.968013pt;}
.w12e{width:176.147987pt;}
.w139{width:176.580000pt;}
.w1b2{width:177.899973pt;}
.w11e{width:180.720000pt;}
.w1cf{width:182.640000pt;}
.w1dc{width:182.760013pt;}
.w1d8{width:182.820000pt;}
.w1db{width:182.879973pt;}
.w12b{width:184.775987pt;}
.wce{width:185.339987pt;}
.w17a{width:186.179987pt;}
.w16e{width:189.659987pt;}
.w18b{width:189.959987pt;}
.w8a{width:189.971987pt;}
.w145{width:191.628000pt;}
.w165{width:191.808013pt;}
.w77{width:192.167987pt;}
.w1cb{width:192.887987pt;}
.w95{width:196.055987pt;}
.wae{width:196.355987pt;}
.w64{width:198.983987pt;}
.w1b0{width:200.447987pt;}
.w1d9{width:204.359987pt;}
.w9e{width:207.731987pt;}
.w34{width:207.779987pt;}
.w4d{width:208.811960pt;}
.w104{width:209.460000pt;}
.w11b{width:214.211973pt;}
.w188{width:215.135987pt;}
.w73{width:215.663973pt;}
.wf4{width:216.012013pt;}
.w9c{width:218.231987pt;}
.w126{width:219.227987pt;}
.w173{width:220.296013pt;}
.w49{width:222.119987pt;}
.w130{width:222.971987pt;}
.w146{width:226.955987pt;}
.w159{width:228.216000pt;}
.w9f{width:234.744000pt;}
.w18a{width:237.791987pt;}
.w121{width:238.572000pt;}
.w163{width:240.468000pt;}
.w9d{width:242.316000pt;}
.w63{width:245.520000pt;}
.w48{width:245.844000pt;}
.w172{width:249.828000pt;}
.wcb{width:251.519973pt;}
.w158{width:252.660000pt;}
.w187{width:253.475973pt;}
.wd9{width:254.303987pt;}
.w128{width:257.531960pt;}
.w103{width:258.779960pt;}
.wf3{width:259.811987pt;}
.w99{width:259.895973pt;}
.w3{width:260.664013pt;}
.w21{width:260.675987pt;}
.w18e{width:261.119987pt;}
.w22{width:262.320000pt;}
.w10f{width:262.367973pt;}
.wcf{width:262.584000pt;}
.wb0{width:263.267987pt;}
.w3c{width:264.347973pt;}
.wc4{width:264.564013pt;}
.w125{width:266.159987pt;}
.wf5{width:268.595987pt;}
.w18d{width:270.480000pt;}
.w1ca{width:272.987973pt;}
.w1c{width:276.444013pt;}
.wca{width:279.756000pt;}
.w151{width:280.511973pt;}
.w4c{width:281.664000pt;}
.w13a{width:281.687973pt;}
.w53{width:282.120000pt;}
.w6a{width:282.467987pt;}
.w175{width:284.027987pt;}
.w1af{width:285.180000pt;}
.w116{width:285.936000pt;}
.w1b9{width:287.603987pt;}
.w1b1{width:293.064013pt;}
.wd3{width:293.988000pt;}
.wc9{width:294.636000pt;}
.w115{width:297.443987pt;}
.wf7{width:298.103973pt;}
.wc5{width:298.607987pt;}
.w75{width:299.267987pt;}
.w192{width:302.219987pt;}
.w50{width:303.419987pt;}
.wa1{width:303.540000pt;}
.w12f{width:307.308000pt;}
.w78{width:316.163973pt;}
.w12{width:316.331987pt;}
.w107{width:317.232000pt;}
.w8{width:317.940013pt;}
.w10c{width:319.032000pt;}
.wd1{width:321.215973pt;}
.w28{width:321.635987pt;}
.w4{width:324.912013pt;}
.w47{width:325.151987pt;}
.w62{width:325.607987pt;}
.w136{width:326.039973pt;}
.w100{width:326.207987pt;}
.w16b{width:326.675973pt;}
.w19b{width:329.651973pt;}
.w170{width:330.515987pt;}
.w6b{width:335.988000pt;}
.w1a5{width:340.440013pt;}
.w193{width:341.268013pt;}
.w5c{width:342.528000pt;}
.wf1{width:344.963987pt;}
.w131{width:345.155987pt;}
.w1d0{width:347.315973pt;}
.wd0{width:348.083987pt;}
.w174{width:349.572000pt;}
.w1c2{width:350.963973pt;}
.w142{width:352.572000pt;}
.w183{width:353.172000pt;}
.w180{width:354.635960pt;}
.w90{width:355.404013pt;}
.w1b5{width:357.743987pt;}
.w84{width:360.048000pt;}
.w156{width:363.191973pt;}
.w190{width:364.223973pt;}
.wb4{width:364.583987pt;}
.w154{width:365.363987pt;}
.wd4{width:373.199987pt;}
.w1c4{width:376.391973pt;}
.wec{width:376.392013pt;}
.w118{width:376.547987pt;}
.w1cc{width:381.095987pt;}
.w199{width:382.043960pt;}
.w148{width:385.319987pt;}
.w91{width:387.179960pt;}
.w102{width:388.092000pt;}
.w167{width:388.212000pt;}
.w14{width:388.344000pt;}
.w92{width:388.691987pt;}
.we7{width:389.183987pt;}
.w1a3{width:392.951973pt;}
.w1c8{width:397.103987pt;}
.w1d{width:398.711973pt;}
.w16d{width:401.135987pt;}
.w1ac{width:402.167987pt;}
.wcc{width:403.643973pt;}
.w89{width:404.099987pt;}
.w147{width:404.999987pt;}
.w9b{width:405.083987pt;}
.w1da{width:412.572013pt;}
.wc7{width:412.848000pt;}
.wda{width:415.284000pt;}
.w1bc{width:415.463987pt;}
.w143{width:423.971987pt;}
.wc8{width:425.064000pt;}
.we1{width:430.332000pt;}
.w16{width:431.124000pt;}
.w86{width:431.208013pt;}
.w6{width:440.340000pt;}
.w3f{width:445.847973pt;}
.w7{width:448.416000pt;}
.wf9{width:450.215987pt;}
.wa7{width:452.675973pt;}
.wa8{width:452.687987pt;}
.wac{width:452.903960pt;}
.wad{width:453.047973pt;}
.wab{width:453.179973pt;}
.w52{width:453.203973pt;}
.wa5{width:453.287973pt;}
.waa{width:453.311987pt;}
.wa9{width:453.323973pt;}
.wcd{width:453.371960pt;}
.wdf{width:457.307973pt;}
.wb7{width:460.920000pt;}
.w2c{width:463.247960pt;}
.w197{width:468.156000pt;}
.w1de{width:470.447960pt;}
.w3e{width:471.239987pt;}
.w8b{width:471.431987pt;}
.w1a7{width:471.443987pt;}
.w179{width:471.467987pt;}
.w56{width:471.575987pt;}
.w8e{width:471.587987pt;}
.w61{width:471.599987pt;}
.w85{width:471.647987pt;}
.w51{width:471.803987pt;}
.w69{width:471.840000pt;}
.w74{width:471.875973pt;}
.wd2{width:471.911960pt;}
.w88{width:471.935973pt;}
.w171{width:472.031973pt;}
.w24{width:472.067973pt;}
.w19c{width:472.079973pt;}
.w13d{width:472.103973pt;}
.w1b6{width:472.199960pt;}
.w7a{width:472.199973pt;}
.w17{width:472.211973pt;}
.w5e{width:472.223973pt;}
.w5b{width:472.235973pt;}
.wc{width:472.283973pt;}
.w127{width:472.295987pt;}
.we4{width:472.307973pt;}
.wa2{width:472.439973pt;}
.w15c{width:472.440000pt;}
.wa4{width:472.463987pt;}
.w5f{width:477.840000pt;}
.we6{width:479.291960pt;}
.w2a{width:487.727987pt;}
.w4e{width:490.020000pt;}
.wbc{width:490.055987pt;}
.we9{width:490.103973pt;}
.w1c1{width:490.139987pt;}
.wbf{width:490.211987pt;}
.w2e{width:490.296000pt;}
.w43{width:490.319987pt;}
.wdd{width:490.331987pt;}
.wd{width:490.343987pt;}
.w97{width:490.368000pt;}
.w19{width:490.379973pt;}
.waf{width:490.451987pt;}
.w12a{width:490.475987pt;}
.w59{width:490.487987pt;}
.w8c{width:490.511973pt;}
.w36{width:490.523987pt;}
.w15b{width:490.535987pt;}
.w58{width:490.583973pt;}
.wc1{width:490.631987pt;}
.w27{width:490.655987pt;}
.w2f{width:490.691973pt;}
.web{width:490.775973pt;}
.w42{width:490.799987pt;}
.we5{width:490.823973pt;}
.w82{width:490.847973pt;}
.w10{width:490.871987pt;}
.w166{width:490.907973pt;}
.we0{width:490.919973pt;}
.w35{width:490.931987pt;}
.wb3{width:490.955973pt;}
.w57{width:490.967973pt;}
.w1b{width:490.979973pt;}
.w11{width:491.003987pt;}
.w44{width:491.028000pt;}
.w1d3{width:491.039973pt;}
.we{width:491.075960pt;}
.wf{width:491.087973pt;}
.w80{width:491.111973pt;}
.w26{width:491.123973pt;}
.w8f{width:491.135987pt;}
.w4b{width:491.147960pt;}
.w25{width:491.159973pt;}
.w2d{width:491.171973pt;}
.w1a{width:491.171987pt;}
.w39{width:491.219960pt;}
.w7e{width:491.219973pt;}
.wbd{width:491.243973pt;}
.w7c{width:491.255973pt;}
.w18{width:491.267973pt;}
.wbb{width:491.267987pt;}
.w37{width:491.279987pt;}
.wc2{width:491.291960pt;}
.w7b{width:491.291973pt;}
.w7f{width:491.351960pt;}
.w7d{width:491.399973pt;}
.wba{width:491.423973pt;}
.w4a{width:491.651973pt;}
.w10b{width:491.807987pt;}
.wea{width:492.335973pt;}
.w0{width:642.519693pt;}
.w1{width:642.666667pt;}
.x77{left:-76.307907pt;}
.x2{left:-1.484213pt;}
.x0{left:0.000000pt;}
.x2a{left:0.998573pt;}
.x1f{left:7.665760pt;}
.x1b{left:75.276000pt;}
.x3{left:76.271987pt;}
.x1e{left:77.436000pt;}
.xc{left:78.408000pt;}
.x20{left:90.660000pt;}
.x21{left:92.880000pt;}
.x9{left:94.644000pt;}
.x5{left:98.388000pt;}
.x4{left:101.028000pt;}
.x27{left:109.620000pt;}
.x1d{left:113.724000pt;}
.x35{left:116.903987pt;}
.x37{left:118.944013pt;}
.x69{left:140.028000pt;}
.x7d{left:142.644000pt;}
.x33{left:145.776000pt;}
.x4f{left:146.952000pt;}
.x11{left:148.127987pt;}
.x3a{left:152.244000pt;}
.xb{left:156.216000pt;}
.x19{left:158.748000pt;}
.x6{left:162.311987pt;}
.x4d{left:165.468000pt;}
.x7a{left:166.848000pt;}
.x76{left:170.796000pt;}
.xa{left:173.831987pt;}
.x52{left:177.839987pt;}
.x39{left:189.336000pt;}
.xe{left:190.416000pt;}
.x4b{left:191.928000pt;}
.x15{left:193.175987pt;}
.x57{left:201.563987pt;}
.x58{left:203.736000pt;}
.x73{left:205.548000pt;}
.x6b{left:208.428000pt;}
.x4e{left:210.600000pt;}
.x23{left:212.184000pt;}
.x3c{left:218.219987pt;}
.x2c{left:221.963987pt;}
.x3e{left:224.172000pt;}
.x3b{left:226.127987pt;}
.x53{left:227.028000pt;}
.x55{left:228.167987pt;}
.x30{left:232.127987pt;}
.x7{left:233.411987pt;}
.x5e{left:236.411987pt;}
.x32{left:240.035987pt;}
.x7c{left:243.600000pt;}
.x8{left:248.112000pt;}
.x12{left:250.824000pt;}
.x49{left:255.983987pt;}
.x7f{left:261.635987pt;}
.x31{left:262.931987pt;}
.x3d{left:265.704000pt;}
.x70{left:267.851987pt;}
.x2e{left:268.824000pt;}
.x22{left:270.672000pt;}
.x41{left:278.807987pt;}
.x62{left:281.411987pt;}
.x47{left:282.528000pt;}
.x56{left:286.416000pt;}
.x67{left:292.692000pt;}
.x2d{left:298.331987pt;}
.x63{left:299.436000pt;}
.x16{left:302.580000pt;}
.x54{left:304.319987pt;}
.xd{left:305.807987pt;}
.x3f{left:310.152000pt;}
.x24{left:312.623987pt;}
.x40{left:328.187987pt;}
.x13{left:332.495987pt;}
.x59{left:334.919987pt;}
.x43{left:338.304000pt;}
.x50{left:339.971987pt;}
.x1a{left:344.807987pt;}
.x5f{left:345.995973pt;}
.x45{left:347.015987pt;}
.x66{left:351.107987pt;}
.x46{left:353.279987pt;}
.x34{left:356.783973pt;}
.x1c{left:358.116013pt;}
.x14{left:359.147987pt;}
.x7e{left:362.567987pt;}
.x71{left:366.479987pt;}
.x6e{left:371.304000pt;}
.x7b{left:372.552000pt;}
.x6c{left:376.331987pt;}
.x60{left:382.104000pt;}
.x72{left:389.028000pt;}
.xf{left:401.172000pt;}
.x36{left:416.448000pt;}
.x38{left:418.691973pt;}
.x5a{left:420.623987pt;}
.x68{left:422.844000pt;}
.x6d{left:436.475987pt;}
.x5b{left:438.467973pt;}
.x4a{left:445.115973pt;}
.x48{left:446.687987pt;}
.x78{left:447.972000pt;}
.x42{left:449.160000pt;}
.x65{left:450.431960pt;}
.x2b{left:452.891973pt;}
.x5c{left:460.344000pt;}
.x29{left:465.575973pt;}
.x64{left:469.043987pt;}
.x79{left:472.811973pt;}
.x6a{left:477.851973pt;}
.x51{left:484.655960pt;}
.x5d{left:486.144000pt;}
.x25{left:492.095987pt;}
.x6f{left:500.448000pt;}
.x28{left:507.023960pt;}
.x75{left:514.883987pt;}
.x74{left:516.311973pt;}
.x44{left:519.503987pt;}
.x17{left:521.903973pt;}
.x18{left:528.863973pt;}
.x2f{left:529.787960pt;}
.x4c{left:538.752000pt;}
.x1{left:547.080000pt;}
.x61{left:552.707973pt;}
.x26{left:559.547973pt;}
.x10{left:564.528000pt;}
}




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