
    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_e92e447fcf5919f9209a842f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_92c5d4db391f7ffa88bf065a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f063818ed9af6806a7667818.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_03d30a50b53d8f78d360194c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_14792cbef34152b510e02797.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6698843f81faeebb3a97411d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5e4bc5184b479fee5c61cd3a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1d8c772209a592aca17e81ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0f99709e7834fee8e77e8202.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:ffd;src:url('chunks/assets/font_77f7eb3316154b5b26e27aa9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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:ffe;src:url('chunks/assets/font_5189eb0c126261757d388ca0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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:fff;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;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:ff10;src:url('chunks/assets/font_96e365cb681a383ae30d0f7d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.870605;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:ff11;src:url('chunks/assets/font_20bef43acb31633898b3bc90.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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.161874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161874,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-77.760000px;}
.v6{vertical-align:-70.560000px;}
.v7{vertical-align:-69.120000px;}
.v5{vertical-align:-67.680000px;}
.v4{vertical-align:-60.480000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls9{letter-spacing:-1.752000px;}
.lsb{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.586833px;}
.lsf{letter-spacing:-0.382800px;}
.ls7{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.089400px;}
.ls14{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.020160px;}
.ls1f{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.313920px;}
.ls1d{letter-spacing:0.457800px;}
.lse{letter-spacing:0.466800px;}
.ls4{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.493920px;}
.ls15{letter-spacing:0.507000px;}
.ls1e{letter-spacing:0.612000px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:2.160000px;}
.ls23{letter-spacing:9.360000px;}
.ls22{letter-spacing:16.306560px;}
.ls13{letter-spacing:23.506560px;}
.ls12{letter-spacing:46.546560px;}
.ls11{letter-spacing:49.426560px;}
.ls1a{letter-spacing:55.186560px;}
.lsa{letter-spacing:63.826560px;}
.ls17{letter-spacing:66.706560px;}
.ls20{letter-spacing:80.281440px;}
.ls21{letter-spacing:81.541440px;}
.ls1b{letter-spacing:92.880000px;}
.ls24{letter-spacing:201.024000px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.ws5{word-spacing:-54.720000px;}
.ws1c{word-spacing:-17.172000px;}
.ws1b{word-spacing:-17.017800px;}
.ws12{word-spacing:-15.627000px;}
.ws2{word-spacing:-15.606600px;}
.wsc{word-spacing:-15.586800px;}
.wse{word-spacing:-15.264000px;}
.ws14{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws11{word-spacing:-15.099840px;}
.ws13{word-spacing:-14.184000px;}
.ws6{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.050000px;}
.ws9{word-spacing:-11.928000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws1a{word-spacing:-0.060480px;}
.wsa{word-spacing:0.000000px;}
.wsd{word-spacing:24.413280px;}
.ws16{word-spacing:127.032564px;}
.ws15{word-spacing:138.205552px;}
.ws19{word-spacing:182.623387px;}
.ws18{word-spacing:205.471901px;}
.wsf{word-spacing:243.013440px;}
.ws10{word-spacing:284.710080px;}
.ws17{word-spacing:295.292705px;}
._13{margin-left:-3.678720px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._9{width:4.518240px;}
._d{width:6.436800px;}
._8{width:8.199360px;}
._7{width:9.270720px;}
._12{width:10.290240px;}
._b{width:11.295360px;}
._c{width:12.615840px;}
._10{width:14.091840px;}
._43{width:15.290880px;}
._6{width:16.591680px;}
._a{width:18.318240px;}
._11{width:19.357920px;}
._e{width:20.502720px;}
._f{width:21.738240px;}
._17{width:22.999680px;}
._40{width:24.399360px;}
._41{width:25.448160px;}
._42{width:26.524800px;}
._45{width:27.527040px;}
._27{width:64.421355px;}
._22{width:104.453717px;}
._21{width:107.439357px;}
._24{width:119.401051px;}
._25{width:126.018362px;}
._23{width:131.850828px;}
._20{width:141.219562px;}
._1c{width:143.591088px;}
._26{width:147.792947px;}
._19{width:159.438720px;}
._32{width:177.276576px;}
._38{width:182.389169px;}
._16{width:186.621120px;}
._31{width:194.265454px;}
._33{width:195.324584px;}
._34{width:197.935089px;}
._36{width:201.343481px;}
._44{width:204.878400px;}
._2a{width:206.774258px;}
._2f{width:212.951445px;}
._39{width:214.213523px;}
._28{width:217.258034px;}
._37{width:222.592361px;}
._35{width:225.680955px;}
._30{width:234.571600px;}
._3b{width:238.084875px;}
._2e{width:241.333689px;}
._2b{width:243.785904px;}
._29{width:246.925974px;}
._3c{width:253.525912px;}
._1f{width:255.771219px;}
._1d{width:261.563808px;}
._3a{width:263.456872px;}
._2d{width:265.457535px;}
._5{width:269.556480px;}
._2c{width:274.608780px;}
._3f{width:278.541823px;}
._3d{width:281.323254px;}
._1b{width:284.721600px;}
._3e{width:296.714745px;}
._1e{width:352.012800px;}
._1a{width:357.821760px;}
._14{width:377.144640px;}
._15{width:592.170912px;}
._18{width:1072.987200px;}
.fc7{color:transparent;}
.fc6{color:rgb(238,0,0);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:5.760000px;}
.fs7{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs10{font-size:47.520000px;}
.fs9{font-size:54.720000px;}
.fsd{font-size:54.864000px;}
.fse{font-size:55.980758px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsf{font-size:66.384000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y221{bottom:-17.715000px;}
.y21c{bottom:-9.105000px;}
.y216{bottom:-6.195000px;}
.y223{bottom:-0.435000px;}
.y0{bottom:0.000000px;}
.y263{bottom:0.870000px;}
.y261{bottom:1.230000px;}
.y98{bottom:1.425000px;}
.ya4{bottom:1.440000px;}
.yb4{bottom:1.795500px;}
.y17f{bottom:1.800000px;}
.y56{bottom:3.235500px;}
.y14c{bottom:3.600000px;}
.y228{bottom:3.855000px;}
.y197{bottom:3.892915px;}
.y161{bottom:3.945000px;}
.y5{bottom:3.960000px;}
.y15f{bottom:3.975000px;}
.y14f{bottom:3.990000px;}
.y225{bottom:4.290000px;}
.yc1{bottom:4.305000px;}
.ybf{bottom:4.665000px;}
.ydb{bottom:4.680000px;}
.y17d{bottom:4.710000px;}
.y218{bottom:4.935000px;}
.yaf{bottom:5.025000px;}
.ya2{bottom:5.040000px;}
.y58{bottom:5.370000px;}
.yc3{bottom:5.385000px;}
.y49{bottom:5.395500px;}
.ya6{bottom:5.400000px;}
.y138{bottom:5.415000px;}
.y19b{bottom:5.437188px;}
.y137{bottom:5.775000px;}
.y21e{bottom:6.765000px;}
.y2{bottom:7.920000px;}
.y254{bottom:9.510000px;}
.yb3{bottom:10.795500px;}
.y21b{bottom:11.805000px;}
.y1f4{bottom:12.240000px;}
.y1ba{bottom:12.600000px;}
.y9a{bottom:12.945000px;}
.yb1{bottom:13.675500px;}
.ybd{bottom:14.370000px;}
.y129{bottom:14.385000px;}
.yf5{bottom:14.400000px;}
.y96{bottom:14.415000px;}
.y140{bottom:14.430000px;}
.y126{bottom:14.745000px;}
.y122{bottom:14.760000px;}
.y13b{bottom:15.105000px;}
.y220{bottom:15.405000px;}
.yed{bottom:15.840000px;}
.y55{bottom:18.715500px;}
.y1f2{bottom:20.880000px;}
.y4{bottom:21.240000px;}
.y212{bottom:21.279000px;}
.y123{bottom:23.745000px;}
.y12e{bottom:23.755500px;}
.yf1{bottom:23.760000px;}
.y141{bottom:23.790000px;}
.y127{bottom:24.105000px;}
.yf8{bottom:24.120000px;}
.y136{bottom:24.135000px;}
.y19a{bottom:24.869847px;}
.y215{bottom:26.925000px;}
.y1f3{bottom:29.520000px;}
.y205{bottom:29.880000px;}
.y251{bottom:29.910000px;}
.y227{bottom:30.855000px;}
.y21a{bottom:32.325000px;}
.y12b{bottom:33.115500px;}
.y11f{bottom:33.120000px;}
.yf4{bottom:33.165000px;}
.y11b{bottom:33.480000px;}
.y54{bottom:34.195500px;}
.y25f{bottom:34.710000px;}
.y48{bottom:34.915500px;}
.y10e{bottom:38.055000px;}
.ybc{bottom:38.160000px;}
.y246{bottom:38.205000px;}
.y41{bottom:38.520000px;}
.y24b{bottom:38.550000px;}
.y211{bottom:38.559000px;}
.y12d{bottom:42.475500px;}
.yf0{bottom:42.480000px;}
.y124{bottom:42.495000px;}
.y116{bottom:42.510000px;}
.yf3{bottom:42.525000px;}
.yf7{bottom:42.840000px;}
.y199{bottom:43.530099px;}
.y3{bottom:44.280000px;}
.y1ff{bottom:46.800000px;}
.y204{bottom:47.160000px;}
.y250{bottom:47.190000px;}
.y20b{bottom:47.199000px;}
.y11a{bottom:51.840000px;}
.y53{bottom:51.871500px;}
.y40{bottom:55.440000px;}
.y245{bottom:55.485000px;}
.y1fa{bottom:55.800000px;}
.y24a{bottom:55.830000px;}
.y47{bottom:55.831500px;}
.y210{bottom:55.839000px;}
.y7{bottom:57.636000px;}
.y120{bottom:60.840000px;}
.y11d{bottom:61.200000px;}
.y118{bottom:61.230000px;}
.y12c{bottom:61.234500px;}
.y10d{bottom:61.845000px;}
.ybb{bottom:61.995000px;}
.y198{bottom:62.158179px;}
.y1fe{bottom:64.080000px;}
.y20a{bottom:64.119000px;}
.y1f7{bottom:64.440000px;}
.y24f{bottom:64.470000px;}
.y52{bottom:67.714500px;}
.y46{bottom:69.154500px;}
.y3f{bottom:72.720000px;}
.y20f{bottom:72.759000px;}
.y244{bottom:72.765000px;}
.y1f9{bottom:73.080000px;}
.y249{bottom:73.110000px;}
.y11c{bottom:79.920000px;}
.y117{bottom:79.950000px;}
.y195{bottom:80.818431px;}
.y1fd{bottom:81.360000px;}
.y209{bottom:81.399000px;}
.y1f6{bottom:81.720000px;}
.y24e{bottom:81.750000px;}
.y51{bottom:83.194500px;}
.yb8{bottom:85.470000px;}
.y10c{bottom:85.680000px;}
.yb2{bottom:86.080500px;}
.y3e{bottom:90.000000px;}
.y20e{bottom:90.039000px;}
.y201{bottom:90.360000px;}
.y248{bottom:90.390000px;}
.y45{bottom:90.754500px;}
.y42{bottom:92.200500px;}
.y12a{bottom:92.560500px;}
.y193{bottom:93.996000px;}
.y16a{bottom:95.796000px;}
.y50{bottom:96.154500px;}
.y242{bottom:97.236000px;}
.y203{bottom:99.000000px;}
.y24d{bottom:99.030000px;}
.y1eb{bottom:99.036000px;}
.y213{bottom:99.396000px;}
.y4f{bottom:102.274500px;}
.yb6{bottom:102.990000px;}
.y104{bottom:106.596000px;}
.y3d{bottom:107.280000px;}
.y20d{bottom:107.319000px;}
.y206{bottom:107.640000px;}
.y24c{bottom:107.670000px;}
.yd9{bottom:108.396000px;}
.y10b{bottom:109.470000px;}
.y90{bottom:109.836000px;}
.yb0{bottom:110.200500px;}
.y192{bottom:110.916000px;}
.y169{bottom:113.796000px;}
.yb7{bottom:114.150000px;}
.y241{bottom:114.516000px;}
.y202{bottom:116.280000px;}
.y1ea{bottom:116.316000px;}
.y4e{bottom:118.114500px;}
.y103{bottom:123.876000px;}
.y1f8{bottom:124.590000px;}
.y20c{bottom:124.599000px;}
.y3c{bottom:124.605000px;}
.y207{bottom:124.920000px;}
.yd8{bottom:125.676000px;}
.y8f{bottom:127.116000px;}
.y191{bottom:128.196000px;}
.y1c5{bottom:131.076000px;}
.y168{bottom:131.436000px;}
.y240{bottom:131.796000px;}
.y4d{bottom:133.594500px;}
.y1e9{bottom:133.596000px;}
.y208{bottom:134.676000px;}
.yba{bottom:140.070000px;}
.y102{bottom:140.796000px;}
.y1fb{bottom:141.870000px;}
.y3b{bottom:141.885000px;}
.yd7{bottom:142.992000px;}
.y8e{bottom:144.432000px;}
.y190{bottom:145.512000px;}
.y1c4{bottom:148.392000px;}
.y23f{bottom:149.112000px;}
.y4c{bottom:149.434500px;}
.y167{bottom:149.832000px;}
.y1e8{bottom:150.915000px;}
.y44{bottom:153.034500px;}
.yb9{bottom:157.350000px;}
.y101{bottom:158.115000px;}
.y3a{bottom:159.165000px;}
.yd6{bottom:160.275000px;}
.y8d{bottom:161.355000px;}
.y108{bottom:162.030000px;}
.y18f{bottom:162.795000px;}
.y43{bottom:163.834500px;}
.y4b{bottom:164.914500px;}
.y1c3{bottom:165.315000px;}
.y23e{bottom:166.395000px;}
.y166{bottom:167.835000px;}
.y128{bottom:167.850000px;}
.y1e7{bottom:168.195000px;}
.y256{bottom:170.070000px;}
.y39{bottom:176.445000px;}
.yd5{bottom:177.195000px;}
.y106{bottom:177.945000px;}
.y4a{bottom:180.034500px;}
.y18e{bottom:180.075000px;}
.y1c2{bottom:182.595000px;}
.y23d{bottom:183.675000px;}
.y100{bottom:184.755000px;}
.y165{bottom:185.475000px;}
.y8c{bottom:187.995000px;}
.y107{bottom:191.625000px;}
.y38{bottom:193.725000px;}
.yd4{bottom:194.475000px;}
.y18d{bottom:197.355000px;}
.y1c1{bottom:199.875000px;}
.y23c{bottom:200.955000px;}
.yff{bottom:202.035000px;}
.y164{bottom:202.755000px;}
.y125{bottom:205.650000px;}
.y8b{bottom:206.355000px;}
.y37{bottom:211.005000px;}
.yd3{bottom:211.755000px;}
.y18c{bottom:214.635000px;}
.y1c0{bottom:217.155000px;}
.y10a{bottom:217.545000px;}
.y23b{bottom:217.875000px;}
.yfe{bottom:219.315000px;}
.y163{bottom:220.035000px;}
.y8a{bottom:224.715000px;}
.y36{bottom:228.285000px;}
.yd2{bottom:229.035000px;}
.y18b{bottom:231.555000px;}
.y1bf{bottom:234.435000px;}
.y162{bottom:234.450000px;}
.y109{bottom:234.825000px;}
.yfd{bottom:236.595000px;}
.y1e6{bottom:237.315000px;}
.y89{bottom:243.075000px;}
.yae{bottom:243.810000px;}
.y23a{bottom:244.155000px;}
.y35{bottom:245.565000px;}
.yd1{bottom:246.315000px;}
.y1be{bottom:251.715000px;}
.y160{bottom:252.810000px;}
.yfc{bottom:253.875000px;}
.y1e5{bottom:254.595000px;}
.y18a{bottom:258.195000px;}
.y88{bottom:260.355000px;}
.y34{bottom:262.515000px;}
.yd0{bottom:263.595000px;}
.y1bd{bottom:265.770000px;}
.yfb{bottom:271.155000px;}
.y15e{bottom:271.170000px;}
.y1e4{bottom:271.875000px;}
.y200{bottom:273.345000px;}
.y239{bottom:274.065000px;}
.yad{bottom:275.145000px;}
.y189{bottom:275.505000px;}
.y87{bottom:277.305000px;}
.y33{bottom:279.795000px;}
.ycf{bottom:280.905000px;}
.y1bc{bottom:283.785000px;}
.y10{bottom:285.585000px;}
.yfa{bottom:288.105000px;}
.y1e3{bottom:289.185000px;}
.y15d{bottom:289.545000px;}
.yac{bottom:292.425000px;}
.y188{bottom:292.785000px;}
.y86{bottom:294.225000px;}
.y255{bottom:294.840000px;}
.y32{bottom:297.075000px;}
.yce{bottom:298.185000px;}
.y121{bottom:300.345000px;}
.y1bb{bottom:301.785000px;}
.yf9{bottom:305.385000px;}
.y1e2{bottom:306.105000px;}
.y15c{bottom:307.905000px;}
.yab{bottom:309.705000px;}
.y187{bottom:310.065000px;}
.ycd{bottom:311.505000px;}
.y31{bottom:314.355000px;}
.y238{bottom:314.385000px;}
.y25d{bottom:317.265000px;}
.y1e{bottom:318.675000px;}
.yf6{bottom:319.425000px;}
.y85{bottom:320.865000px;}
.y1e1{bottom:323.025000px;}
.y15b{bottom:326.265000px;}
.yaa{bottom:326.985000px;}
.ycc{bottom:330.225000px;}
.y30{bottom:331.635000px;}
.y25c{bottom:334.905000px;}
.y1b9{bottom:337.065000px;}
.y84{bottom:338.145000px;}
.y11e{bottom:338.505000px;}
.y237{bottom:340.665000px;}
.y1d{bottom:342.795000px;}
.ya9{bottom:344.265000px;}
.y15a{bottom:348.585000px;}
.y2f{bottom:348.915000px;}
.y1e0{bottom:349.665000px;}
.y25b{bottom:352.185000px;}
.y83{bottom:355.425000px;}
.ya8{bottom:361.545000px;}
.y159{bottom:365.865000px;}
.y2e{bottom:366.195000px;}
.y1c{bottom:366.915000px;}
.y1df{bottom:366.945000px;}
.y25a{bottom:369.465000px;}
.y1b8{bottom:372.345000px;}
.y82{bottom:372.705000px;}
.yf2{bottom:376.305000px;}
.ya7{bottom:378.825000px;}
.y158{bottom:383.145000px;}
.y2d{bottom:383.505000px;}
.y1de{bottom:384.225000px;}
.y259{bottom:386.745000px;}
.y236{bottom:389.265000px;}
.y81{bottom:389.985000px;}
.y1b{bottom:391.065000px;}
.ya5{bottom:392.145000px;}
.y1b7{bottom:394.305000px;}
.y186{bottom:396.105000px;}
.y26b{bottom:398.625000px;}
.y157{bottom:400.425000px;}
.y2c{bottom:400.785000px;}
.y1dd{bottom:401.505000px;}
.y258{bottom:404.025000px;}
.y80{bottom:407.310000px;}
.ya3{bottom:410.910000px;}
.y1b6{bottom:411.630000px;}
.y119{bottom:413.430000px;}
.yb5{bottom:414.000000px;}
.y1a{bottom:415.545000px;}
.y2b{bottom:417.705000px;}
.y156{bottom:417.750000px;}
.y1dc{bottom:418.830000px;}
.y7f{bottom:424.590000px;}
.y1b5{bottom:428.910000px;}
.y1fc{bottom:429.630000px;}
.y185{bottom:430.710000px;}
.yef{bottom:432.870000px;}
.y257{bottom:434.310000px;}
.y155{bottom:434.670000px;}
.y235{bottom:435.030000px;}
.y1db{bottom:436.110000px;}
.y26a{bottom:437.190000px;}
.y19{bottom:439.665000px;}
.y7e{bottom:441.870000px;}
.y2a{bottom:443.625000px;}
.y1b4{bottom:446.190000px;}
.y184{bottom:447.990000px;}
.y154{bottom:451.950000px;}
.y1da{bottom:453.390000px;}
.y269{bottom:456.630000px;}
.y268{bottom:458.070000px;}
.y29{bottom:459.105000px;}
.y7d{bottom:459.150000px;}
.y1b3{bottom:463.110000px;}
.y18{bottom:463.785000px;}
.y183{bottom:465.270000px;}
.y25e{bottom:469.080000px;}
.y153{bottom:469.230000px;}
.y28{bottom:474.585000px;}
.y267{bottom:475.350000px;}
.y7c{bottom:476.430000px;}
.y1b2{bottom:480.390000px;}
.y182{bottom:482.190000px;}
.y253{bottom:484.200000px;}
.y152{bottom:486.510000px;}
.y260{bottom:487.230000px;}
.y17{bottom:487.905000px;}
.y1d9{bottom:487.950000px;}
.yee{bottom:489.390000px;}
.y27{bottom:490.065000px;}
.y266{bottom:492.270000px;}
.y7b{bottom:493.350000px;}
.y1b1{bottom:497.670000px;}
.y181{bottom:499.470000px;}
.y151{bottom:503.790000px;}
.y1d8{bottom:504.870000px;}
.y26{bottom:505.545000px;}
.y115{bottom:507.390000px;}
.yec{bottom:508.830000px;}
.y7a{bottom:510.630000px;}
.y16{bottom:512.025000px;}
.y180{bottom:513.870000px;}
.y1b0{bottom:514.950000px;}
.y150{bottom:518.190000px;}
.y265{bottom:518.910000px;}
.ycb{bottom:520.350000px;}
.y25{bottom:521.070000px;}
.y1d7{bottom:523.230000px;}
.y79{bottom:527.910000px;}
.y1af{bottom:532.230000px;}
.y262{bottom:533.160000px;}
.y264{bottom:535.830000px;}
.y15{bottom:536.190000px;}
.y14e{bottom:536.550000px;}
.y24{bottom:536.910000px;}
.y1d6{bottom:541.620000px;}
.y78{bottom:545.220000px;}
.y1ae{bottom:549.180000px;}
.y1f5{bottom:550.980000px;}
.y17e{bottom:551.700000px;}
.yca{bottom:552.060000px;}
.y23{bottom:552.390000px;}
.y194{bottom:553.791242px;}
.y14d{bottom:554.940000px;}
.y1d5{bottom:559.980000px;}
.y14{bottom:560.310000px;}
.y234{bottom:560.340000px;}
.y77{bottom:562.500000px;}
.y22{bottom:567.870000px;}
.yc9{bottom:569.340000px;}
.yeb{bottom:571.140000px;}
.y14b{bottom:573.300000px;}
.y1ad{bottom:575.820000px;}
.y1d4{bottom:578.340000px;}
.y76{bottom:579.780000px;}
.y21{bottom:583.350000px;}
.y13{bottom:584.430000px;}
.yc8{bottom:586.620000px;}
.yea{bottom:588.420000px;}
.y233{bottom:588.780000px;}
.y1ac{bottom:594.180000px;}
.y14a{bottom:595.620000px;}
.y1d3{bottom:596.700000px;}
.y75{bottom:597.060000px;}
.y20{bottom:598.830000px;}
.ya1{bottom:598.860000px;}
.y114{bottom:601.380000px;}
.yc7{bottom:603.900000px;}
.ye9{bottom:605.700000px;}
.y232{bottom:606.060000px;}
.y12{bottom:608.550000px;}
.y1ab{bottom:612.540000px;}
.y149{bottom:612.900000px;}
.y1d2{bottom:613.980000px;}
.y74{bottom:614.340000px;}
.yc6{bottom:621.180000px;}
.ye8{bottom:622.980000px;}
.y231{bottom:623.340000px;}
.y1f{bottom:629.430000px;}
.y148{bottom:630.180000px;}
.ya0{bottom:630.540000px;}
.y196{bottom:630.716759px;}
.y73{bottom:631.620000px;}
.y11{bottom:632.670000px;}
.yc5{bottom:638.460000px;}
.ye7{bottom:640.260000px;}
.y230{bottom:640.620000px;}
.y147{bottom:647.460000px;}
.y9f{bottom:647.820000px;}
.y72{bottom:648.900000px;}
.y19c{bottom:649.377011px;}
.yc4{bottom:651.780000px;}
.y1aa{bottom:657.180000px;}
.ye6{bottom:657.540000px;}
.y113{bottom:657.900000px;}
.y146{bottom:664.740000px;}
.y9e{bottom:665.100000px;}
.y71{bottom:666.180000px;}
.y17c{bottom:668.700000px;}
.yc2{bottom:670.185000px;}
.y1a9{bottom:674.130000px;}
.ye5{bottom:674.850000px;}
.y22f{bottom:675.210000px;}
.y112{bottom:677.385000px;}
.y145{bottom:682.050000px;}
.y9d{bottom:682.410000px;}
.y70{bottom:683.130000px;}
.yc0{bottom:688.905000px;}
.y1a8{bottom:691.410000px;}
.ye4{bottom:691.770000px;}
.y22e{bottom:692.130000px;}
.y9c{bottom:699.330000px;}
.y6f{bottom:700.410000px;}
.y1f1{bottom:706.890000px;}
.y1a7{bottom:708.690000px;}
.ye3{bottom:709.050000px;}
.y22d{bottom:709.410000px;}
.y144{bottom:716.250000px;}
.y9b{bottom:716.610000px;}
.y6e{bottom:717.690000px;}
.y1a6{bottom:725.970000px;}
.ye2{bottom:726.330000px;}
.y22c{bottom:726.690000px;}
.y99{bottom:729.945000px;}
.y6d{bottom:734.970000px;}
.y143{bottom:742.890000px;}
.y1a5{bottom:743.250000px;}
.ye1{bottom:743.610000px;}
.y22b{bottom:743.970000px;}
.y1d1{bottom:751.890000px;}
.y6c{bottom:752.250000px;}
.y97{bottom:756.225000px;}
.y1f0{bottom:759.450000px;}
.y142{bottom:760.170000px;}
.y1a4{bottom:760.530000px;}
.ye0{bottom:760.890000px;}
.y22a{bottom:761.250000px;}
.y6b{bottom:769.530000px;}
.y1a3{bottom:777.810000px;}
.ydf{bottom:778.170000px;}
.y1d0{bottom:778.530000px;}
.y1ef{bottom:781.050000px;}
.y6a{bottom:786.810000px;}
.y13f{bottom:793.665000px;}
.y1a2{bottom:795.090000px;}
.yde{bottom:795.450000px;}
.y1cf{bottom:795.810000px;}
.y1ee{bottom:798.690000px;}
.y69{bottom:804.135000px;}
.ydd{bottom:808.830000px;}
.y1a1{bottom:812.415000px;}
.y17b{bottom:812.775000px;}
.y1ce{bottom:813.135000px;}
.y1ed{bottom:815.655000px;}
.y68{bottom:821.415000px;}
.ydc{bottom:827.550000px;}
.y1ec{bottom:829.335000px;}
.y1a0{bottom:829.695000px;}
.y17a{bottom:830.055000px;}
.y1cd{bottom:830.415000px;}
.y13e{bottom:831.510000px;}
.y105{bottom:831.960000px;}
.y226{bottom:838.440000px;}
.y67{bottom:838.695000px;}
.y19f{bottom:846.615000px;}
.y179{bottom:846.975000px;}
.y1cc{bottom:847.695000px;}
.y13d{bottom:850.950000px;}
.y66{bottom:855.975000px;}
.y252{bottom:858.495000px;}
.y1cb{bottom:864.975000px;}
.y13c{bottom:870.390000px;}
.y111{bottom:873.255000px;}
.y178{bottom:873.615000px;}
.y1ca{bottom:882.255000px;}
.y13a{bottom:889.470000px;}
.y65{bottom:890.175000px;}
.y177{bottom:890.895000px;}
.y1c9{bottom:899.175000px;}
.ybe{bottom:902.430000px;}
.y64{bottom:907.455000px;}
.y176{bottom:907.815000px;}
.y139{bottom:908.910000px;}
.y217{bottom:910.800000px;}
.y247{bottom:911.055000px;}
.y1c8{bottom:916.455000px;}
.y63{bottom:924.735000px;}
.y175{bottom:925.095000px;}
.y95{bottom:927.270000px;}
.y135{bottom:928.350000px;}
.y1c7{bottom:933.765000px;}
.yf{bottom:940.245000px;}
.y110{bottom:941.685000px;}
.y62{bottom:942.045000px;}
.y219{bottom:942.120000px;}
.y174{bottom:943.485000px;}
.y214{bottom:947.520000px;}
.y134{bottom:947.805000px;}
.ye{bottom:948.165000px;}
.y1c6{bottom:951.045000px;}
.y94{bottom:958.965000px;}
.y61{bottom:959.325000px;}
.y173{bottom:960.765000px;}
.y133{bottom:967.245000px;}
.y10f{bottom:968.325000px;}
.yd{bottom:972.285000px;}
.y60{bottom:976.605000px;}
.y172{bottom:979.125000px;}
.y93{bottom:985.605000px;}
.yc{bottom:989.565000px;}
.y5f{bottom:993.885000px;}
.y21d{bottom:997.200000px;}
.y171{bottom:997.485000px;}
.y21f{bottom:1000.080000px;}
.y92{bottom:1002.885000px;}
.y132{bottom:1005.045000px;}
.yb{bottom:1006.845000px;}
.y5e{bottom:1010.805000px;}
.y19e{bottom:1011.165000px;}
.y170{bottom:1015.485000px;}
.y91{bottom:1020.165000px;}
.y131{bottom:1028.445000px;}
.y243{bottom:1032.765000px;}
.y16f{bottom:1033.125000px;}
.ya{bottom:1036.005000px;}
.y5d{bottom:1037.445000px;}
.y19d{bottom:1045.365000px;}
.y130{bottom:1045.725000px;}
.y16e{bottom:1051.485000px;}
.y5c{bottom:1054.725000px;}
.y222{bottom:1056.960000px;}
.y9{bottom:1060.485000px;}
.y12f{bottom:1062.645000px;}
.y16d{bottom:1069.890000px;}
.y5b{bottom:1072.050000px;}
.y16c{bottom:1087.530000px;}
.y8{bottom:1088.250000px;}
.y5a{bottom:1088.970000px;}
.y57{bottom:1091.520000px;}
.yda{bottom:1092.210000px;}
.y224{bottom:1099.080000px;}
.y16b{bottom:1105.170000px;}
.y229{bottom:1105.890000px;}
.y59{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.h56{height:10.440000px;}
.h5f{height:14.760000px;}
.h58{height:15.120000px;}
.h42{height:17.265000px;}
.h40{height:17.280000px;}
.h41{height:17.310000px;}
.h48{height:17.888104px;}
.h26{height:18.345000px;}
.hb{height:18.372656px;}
.h29{height:18.396000px;}
.h28{height:18.705000px;}
.h3c{height:18.720000px;}
.h1e{height:18.750000px;}
.h33{height:18.756000px;}
.h52{height:20.160000px;}
.h54{height:21.960000px;}
.h5d{height:23.400000px;}
.h21{height:24.115500px;}
.h6{height:24.348516px;}
.h1c{height:26.265000px;}
.h2c{height:27.345000px;}
.h1f{height:27.705000px;}
.h16{height:27.720000px;}
.h2a{height:27.750000px;}
.h19{height:28.080000px;}
.h13{height:29.678906px;}
.h55{height:30.600000px;}
.h4a{height:34.545000px;}
.h4f{height:34.560000px;}
.h38{height:37.065000px;}
.h3f{height:37.101000px;}
.h45{height:37.110000px;}
.h39{height:37.425000px;}
.h3e{height:37.785000px;}
.h3b{height:37.800000px;}
.h3d{height:38.145000px;}
.h9{height:38.158594px;}
.h2e{height:40.350000px;}
.he{height:40.985156px;}
.h59{height:41.760000px;}
.hd{height:42.086250px;}
.h50{height:42.120000px;}
.h10{height:42.229688px;}
.h57{height:46.638281px;}
.h53{height:47.160000px;}
.h4b{height:51.840000px;}
.hf{height:53.677969px;}
.h24{height:53.704687px;}
.h25{height:53.846016px;}
.h23{height:54.426094px;}
.h14{height:55.147500px;}
.h47{height:55.680080px;}
.h2f{height:55.785000px;}
.h34{height:55.800000px;}
.h30{height:55.830000px;}
.h31{height:56.145000px;}
.h7{height:58.050000px;}
.h49{height:59.328281px;}
.h5{height:59.357813px;}
.h11{height:60.155156px;}
.ha{height:60.952500px;}
.h18{height:62.163910px;}
.h43{height:62.960625px;}
.h17{height:63.455625px;}
.h8{height:63.577969px;}
.h1b{height:65.010937px;}
.h3{height:65.884219px;}
.h51{height:66.027445px;}
.h5a{height:66.757500px;}
.h37{height:74.190000px;}
.h3a{height:74.551500px;}
.h2{height:81.390000px;}
.h5b{height:86.076000px;}
.h36{height:93.225000px;}
.h35{height:93.270000px;}
.h46{height:113.473639px;}
.h44{height:116.280000px;}
.h4{height:116.640000px;}
.h4d{height:120.636000px;}
.h5c{height:120.996000px;}
.h20{height:133.591500px;}
.h4e{height:137.916000px;}
.h4c{height:155.190000px;}
.h1a{height:171.015000px;}
.h22{height:182.880000px;}
.h5e{height:184.320000px;}
.h1d{height:187.950000px;}
.h2b{height:190.110000px;}
.h12{height:192.645000px;}
.h27{height:213.495000px;}
.h32{height:260.280000px;}
.h2d{height:264.645000px;}
.hc{height:642.030000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w25{width:40.505306px;}
.w1f{width:50.436000px;}
.w29{width:60.840000px;}
.w41{width:65.160000px;}
.w32{width:65.916000px;}
.w22{width:66.990000px;}
.w38{width:68.040000px;}
.w1a{width:69.840000px;}
.w21{width:76.320000px;}
.w3d{width:80.280000px;}
.w3f{width:89.280000px;}
.w2a{width:92.190000px;}
.w39{width:94.320000px;}
.w37{width:100.440000px;}
.w34{width:100.800000px;}
.w3a{width:102.600000px;}
.w35{width:102.960000px;}
.w36{width:103.320000px;}
.w2{width:103.702500px;}
.w19{width:105.912000px;}
.w2c{width:108.072000px;}
.w28{width:117.742500px;}
.w2f{width:119.592000px;}
.w20{width:123.501000px;}
.w2b{width:127.110000px;}
.w4{width:132.502500px;}
.w1b{width:132.912000px;}
.w33{width:135.792000px;}
.w31{width:136.476000px;}
.w15{width:137.925000px;}
.w16{width:148.350000px;}
.w1c{width:155.205000px;}
.w6{width:163.080000px;}
.w12{width:169.245000px;}
.w30{width:179.355000px;}
.w42{width:196.665000px;}
.w3b{width:201.600000px;}
.w2d{width:211.005000px;}
.w40{width:238.320000px;}
.w3e{width:317.880000px;}
.we{width:321.615000px;}
.w1e{width:330.255000px;}
.wf{width:337.095000px;}
.w17{width:388.965000px;}
.w13{width:477.570000px;}
.w9{width:509.040000px;}
.w10{width:536.760000px;}
.w26{width:562.874597px;}
.w5{width:596.745000px;}
.w3c{width:600.840000px;}
.w3{width:622.665000px;}
.w18{width:637.830000px;}
.w2e{width:638.565000px;}
.wc{width:639.225000px;}
.w11{width:647.550000px;}
.w1d{width:651.870000px;}
.w7{width:657.990000px;}
.wd{width:659.430000px;}
.w8{width:664.425000px;}
.wb{width:676.350000px;}
.w24{width:676.441109px;}
.w14{width:676.710000px;}
.wa{width:682.470000px;}
.w23{width:693.270000px;}
.w27{width:720.630000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x68{left:-11.024176px;}
.x0{left:0.000000px;}
.x70{left:1.080000px;}
.x60{left:3.960000px;}
.x7e{left:5.760000px;}
.x1f{left:6.876000px;}
.x18{left:8.266500px;}
.x2a{left:9.930000px;}
.x85{left:11.160000px;}
.x61{left:12.226500px;}
.x4{left:13.305000px;}
.x40{left:14.422500px;}
.x47{left:15.480000px;}
.x16{left:17.266500px;}
.x1c{left:18.346500px;}
.x5{left:19.425000px;}
.x7b{left:20.520000px;}
.x80{left:21.960000px;}
.x41{left:23.062500px;}
.x36{left:24.862500px;}
.x90{left:25.920000px;}
.x82{left:27.000000px;}
.x66{left:28.018739px;}
.x17{left:29.146500px;}
.x29{left:30.450000px;}
.x4b{left:32.422500px;}
.x3d{left:33.865500px;}
.x83{left:34.959000px;}
.x7f{left:36.000000px;}
.x6e{left:37.080000px;}
.x74{left:38.190000px;}
.x42{left:40.705500px;}
.x72{left:42.510000px;}
.x10{left:43.906500px;}
.x84{left:45.360000px;}
.x43{left:46.465500px;}
.x1d{left:47.542500px;}
.x6{left:48.615000px;}
.x58{left:49.710000px;}
.x11{left:50.782500px;}
.x4c{left:51.865500px;}
.x15{left:54.022500px;}
.xf{left:55.102500px;}
.x4e{left:58.680000px;}
.x48{left:60.480000px;}
.x1a{left:62.295000px;}
.x81{left:64.080000px;}
.x57{left:67.705500px;}
.x4f{left:70.230000px;}
.x22{left:71.665500px;}
.x1{left:78.529500px;}
.x4d{left:79.950000px;}
.x65{left:81.385500px;}
.x14{left:83.905500px;}
.x7{left:86.436000px;}
.x75{left:88.575000px;}
.x13{left:90.025500px;}
.x2{left:95.425500px;}
.x50{left:97.260000px;}
.x51{left:100.140000px;}
.x1e{left:102.985500px;}
.x1b{left:106.945500px;}
.x44{left:108.409500px;}
.x25{left:110.545500px;}
.x45{left:113.455500px;}
.x3b{left:115.710000px;}
.x21{left:117.769500px;}
.x59{left:120.649500px;}
.x2d{left:122.785500px;}
.x12{left:124.585500px;}
.x79{left:125.676000px;}
.x38{left:127.830000px;}
.x8d{left:131.040000px;}
.x3f{left:133.995000px;}
.x2b{left:135.570000px;}
.x5b{left:136.855500px;}
.x30{left:138.985500px;}
.x20{left:140.472000px;}
.x33{left:143.335500px;}
.x6b{left:148.375500px;}
.x5a{left:157.015500px;}
.xa{left:164.955000px;}
.x52{left:167.475000px;}
.x39{left:169.200000px;}
.x4a{left:170.340000px;}
.x3c{left:179.695500px;}
.x69{left:180.982040px;}
.x3{left:182.250000px;}
.x64{left:184.735500px;}
.x6a{left:188.106774px;}
.xc{left:192.315000px;}
.x2c{left:195.015000px;}
.x6c{left:204.930000px;}
.x35{left:206.695500px;}
.x3a{left:208.980000px;}
.x19{left:218.970000px;}
.x24{left:220.780500px;}
.x27{left:223.615500px;}
.x32{left:225.055500px;}
.x2f{left:228.295500px;}
.x8f{left:240.225000px;}
.x7a{left:245.625000px;}
.x46{left:247.065000px;}
.x62{left:249.940500px;}
.x91{left:251.745000px;}
.x86{left:262.080000px;}
.x6d{left:266.505000px;}
.x96{left:274.680000px;}
.x92{left:283.425000px;}
.x8a{left:287.640000px;}
.x3e{left:292.785000px;}
.x53{left:298.185000px;}
.x93{left:314.790000px;}
.x77{left:328.830000px;}
.x78{left:336.390000px;}
.x8c{left:357.120000px;}
.x6f{left:359.430000px;}
.xb{left:375.990000px;}
.x97{left:381.390000px;}
.x87{left:394.560000px;}
.x49{left:396.150000px;}
.x54{left:405.180000px;}
.x7c{left:425.340000px;}
.x37{left:439.380000px;}
.x5c{left:451.980000px;}
.x8b{left:453.600000px;}
.x55{left:476.460000px;}
.x71{left:487.260000px;}
.x5d{left:503.505000px;}
.x23{left:521.845500px;}
.x28{left:535.525500px;}
.x88{left:541.080000px;}
.x7d{left:562.170000px;}
.x31{left:567.565500px;}
.xd{left:574.050000px;}
.x73{left:596.070000px;}
.x56{left:610.470000px;}
.x94{left:614.520000px;}
.x2e{left:623.755500px;}
.x5e{left:628.110000px;}
.x34{left:630.955500px;}
.x95{left:642.855000px;}
.x26{left:656.155500px;}
.x89{left:663.480000px;}
.x63{left:685.360500px;}
.x5f{left:705.525000px;}
.x67{left:744.360766px;}
.x9{left:766.050000px;}
.x76{left:770.730000px;}
.x8e{left:778.290000px;}
.x8{left:791.970000px;}
.xe{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v6{vertical-align:-62.720000pt;}
.v7{vertical-align:-61.440000pt;}
.v5{vertical-align:-60.160000pt;}
.v4{vertical-align:-53.760000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls9{letter-spacing:-1.557333pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.521629pt;}
.lsf{letter-spacing:-0.340267pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls14{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.017920pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.279040pt;}
.ls1d{letter-spacing:0.406933pt;}
.lse{letter-spacing:0.414933pt;}
.ls4{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.439040pt;}
.ls15{letter-spacing:0.450667pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.920000pt;}
.ls23{letter-spacing:8.320000pt;}
.ls22{letter-spacing:14.494720pt;}
.ls13{letter-spacing:20.894720pt;}
.ls12{letter-spacing:41.374720pt;}
.ls11{letter-spacing:43.934720pt;}
.ls1a{letter-spacing:49.054720pt;}
.lsa{letter-spacing:56.734720pt;}
.ls17{letter-spacing:59.294720pt;}
.ls20{letter-spacing:71.361280pt;}
.ls21{letter-spacing:72.481280pt;}
.ls1b{letter-spacing:82.560000pt;}
.ls24{letter-spacing:178.688000pt;}
.wsb{word-spacing:-53.760000pt;}
.ws5{word-spacing:-48.640000pt;}
.ws1c{word-spacing:-15.264000pt;}
.ws1b{word-spacing:-15.126933pt;}
.ws12{word-spacing:-13.890667pt;}
.ws2{word-spacing:-13.872533pt;}
.wsc{word-spacing:-13.854933pt;}
.wse{word-spacing:-13.568000pt;}
.ws14{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.422080pt;}
.ws13{word-spacing:-12.608000pt;}
.ws6{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws9{word-spacing:-10.602667pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws1a{word-spacing:-0.053760pt;}
.wsa{word-spacing:0.000000pt;}
.wsd{word-spacing:21.700693pt;}
.ws16{word-spacing:112.917835pt;}
.ws15{word-spacing:122.849379pt;}
.ws19{word-spacing:162.331900pt;}
.ws18{word-spacing:182.641690pt;}
.wsf{word-spacing:216.011947pt;}
.ws10{word-spacing:253.075627pt;}
.ws17{word-spacing:262.482404pt;}
._13{margin-left:-3.269973pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._9{width:4.016213pt;}
._d{width:5.721600pt;}
._8{width:7.288320pt;}
._7{width:8.240640pt;}
._12{width:9.146880pt;}
._b{width:10.040320pt;}
._c{width:11.214080pt;}
._10{width:12.526080pt;}
._43{width:13.591893pt;}
._6{width:14.748160pt;}
._a{width:16.282880pt;}
._11{width:17.207040pt;}
._e{width:18.224640pt;}
._f{width:19.322880pt;}
._17{width:20.444160pt;}
._40{width:21.688320pt;}
._41{width:22.620587pt;}
._42{width:23.577600pt;}
._45{width:24.468480pt;}
._27{width:57.263427pt;}
._22{width:92.847748pt;}
._21{width:95.501651pt;}
._24{width:106.134267pt;}
._25{width:112.016322pt;}
._23{width:117.200736pt;}
._20{width:125.528499pt;}
._1c{width:127.636523pt;}
._26{width:131.371508pt;}
._19{width:141.723307pt;}
._32{width:157.579179pt;}
._38{width:162.123706pt;}
._16{width:165.885440pt;}
._31{width:172.680404pt;}
._33{width:173.621853pt;}
._34{width:175.942302pt;}
._36{width:178.971983pt;}
._44{width:182.114133pt;}
._2a{width:183.799340pt;}
._2f{width:189.290173pt;}
._39{width:190.412020pt;}
._28{width:193.118252pt;}
._37{width:197.859876pt;}
._35{width:200.605293pt;}
._30{width:208.508089pt;}
._3b{width:211.631000pt;}
._2e{width:214.518835pt;}
._2b{width:216.698581pt;}
._29{width:219.489754pt;}
._3c{width:225.356366pt;}
._1f{width:227.352195pt;}
._1d{width:232.501163pt;}
._3a{width:234.183886pt;}
._2d{width:235.962253pt;}
._5{width:239.605760pt;}
._2c{width:244.096693pt;}
._3f{width:247.592731pt;}
._3d{width:250.065114pt;}
._1b{width:253.085867pt;}
._3e{width:263.746440pt;}
._1e{width:312.900267pt;}
._1a{width:318.063787pt;}
._14{width:335.239680pt;}
._15{width:526.374144pt;}
._18{width:953.766400pt;}
.fsc{font-size:5.120000pt;}
.fs7{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs10{font-size:42.240000pt;}
.fs9{font-size:48.640000pt;}
.fsd{font-size:48.768000pt;}
.fse{font-size:49.760673pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsf{font-size:59.008000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y221{bottom:-15.746667pt;}
.y21c{bottom:-8.093333pt;}
.y216{bottom:-5.506667pt;}
.y223{bottom:-0.386667pt;}
.y0{bottom:0.000000pt;}
.y263{bottom:0.773333pt;}
.y261{bottom:1.093333pt;}
.y98{bottom:1.266667pt;}
.ya4{bottom:1.280000pt;}
.yb4{bottom:1.596000pt;}
.y17f{bottom:1.600000pt;}
.y56{bottom:2.876000pt;}
.y14c{bottom:3.200000pt;}
.y228{bottom:3.426667pt;}
.y197{bottom:3.460369pt;}
.y161{bottom:3.506667pt;}
.y5{bottom:3.520000pt;}
.y15f{bottom:3.533333pt;}
.y14f{bottom:3.546667pt;}
.y225{bottom:3.813333pt;}
.yc1{bottom:3.826667pt;}
.ybf{bottom:4.146667pt;}
.ydb{bottom:4.160000pt;}
.y17d{bottom:4.186667pt;}
.y218{bottom:4.386667pt;}
.yaf{bottom:4.466667pt;}
.ya2{bottom:4.480000pt;}
.y58{bottom:4.773333pt;}
.yc3{bottom:4.786667pt;}
.y49{bottom:4.796000pt;}
.ya6{bottom:4.800000pt;}
.y138{bottom:4.813333pt;}
.y19b{bottom:4.833056pt;}
.y137{bottom:5.133333pt;}
.y21e{bottom:6.013333pt;}
.y2{bottom:7.040000pt;}
.y254{bottom:8.453333pt;}
.yb3{bottom:9.596000pt;}
.y21b{bottom:10.493333pt;}
.y1f4{bottom:10.880000pt;}
.y1ba{bottom:11.200000pt;}
.y9a{bottom:11.506667pt;}
.yb1{bottom:12.156000pt;}
.ybd{bottom:12.773333pt;}
.y129{bottom:12.786667pt;}
.yf5{bottom:12.800000pt;}
.y96{bottom:12.813333pt;}
.y140{bottom:12.826667pt;}
.y126{bottom:13.106667pt;}
.y122{bottom:13.120000pt;}
.y13b{bottom:13.426667pt;}
.y220{bottom:13.693333pt;}
.yed{bottom:14.080000pt;}
.y55{bottom:16.636000pt;}
.y1f2{bottom:18.560000pt;}
.y4{bottom:18.880000pt;}
.y212{bottom:18.914667pt;}
.y123{bottom:21.106667pt;}
.y12e{bottom:21.116000pt;}
.yf1{bottom:21.120000pt;}
.y141{bottom:21.146667pt;}
.y127{bottom:21.426667pt;}
.yf8{bottom:21.440000pt;}
.y136{bottom:21.453333pt;}
.y19a{bottom:22.106530pt;}
.y215{bottom:23.933333pt;}
.y1f3{bottom:26.240000pt;}
.y205{bottom:26.560000pt;}
.y251{bottom:26.586667pt;}
.y227{bottom:27.426667pt;}
.y21a{bottom:28.733333pt;}
.y12b{bottom:29.436000pt;}
.y11f{bottom:29.440000pt;}
.yf4{bottom:29.480000pt;}
.y11b{bottom:29.760000pt;}
.y54{bottom:30.396000pt;}
.y25f{bottom:30.853333pt;}
.y48{bottom:31.036000pt;}
.y10e{bottom:33.826667pt;}
.ybc{bottom:33.920000pt;}
.y246{bottom:33.960000pt;}
.y41{bottom:34.240000pt;}
.y24b{bottom:34.266667pt;}
.y211{bottom:34.274667pt;}
.y12d{bottom:37.756000pt;}
.yf0{bottom:37.760000pt;}
.y124{bottom:37.773333pt;}
.y116{bottom:37.786667pt;}
.yf3{bottom:37.800000pt;}
.yf7{bottom:38.080000pt;}
.y199{bottom:38.693421pt;}
.y3{bottom:39.360000pt;}
.y1ff{bottom:41.600000pt;}
.y204{bottom:41.920000pt;}
.y250{bottom:41.946667pt;}
.y20b{bottom:41.954667pt;}
.y11a{bottom:46.080000pt;}
.y53{bottom:46.108000pt;}
.y40{bottom:49.280000pt;}
.y245{bottom:49.320000pt;}
.y1fa{bottom:49.600000pt;}
.y24a{bottom:49.626667pt;}
.y47{bottom:49.628000pt;}
.y210{bottom:49.634667pt;}
.y7{bottom:51.232000pt;}
.y120{bottom:54.080000pt;}
.y11d{bottom:54.400000pt;}
.y118{bottom:54.426667pt;}
.y12c{bottom:54.430667pt;}
.y10d{bottom:54.973333pt;}
.ybb{bottom:55.106667pt;}
.y198{bottom:55.251714pt;}
.y1fe{bottom:56.960000pt;}
.y20a{bottom:56.994667pt;}
.y1f7{bottom:57.280000pt;}
.y24f{bottom:57.306667pt;}
.y52{bottom:60.190667pt;}
.y46{bottom:61.470667pt;}
.y3f{bottom:64.640000pt;}
.y20f{bottom:64.674667pt;}
.y244{bottom:64.680000pt;}
.y1f9{bottom:64.960000pt;}
.y249{bottom:64.986667pt;}
.y11c{bottom:71.040000pt;}
.y117{bottom:71.066667pt;}
.y195{bottom:71.838606pt;}
.y1fd{bottom:72.320000pt;}
.y209{bottom:72.354667pt;}
.y1f6{bottom:72.640000pt;}
.y24e{bottom:72.666667pt;}
.y51{bottom:73.950667pt;}
.yb8{bottom:75.973333pt;}
.y10c{bottom:76.160000pt;}
.yb2{bottom:76.516000pt;}
.y3e{bottom:80.000000pt;}
.y20e{bottom:80.034667pt;}
.y201{bottom:80.320000pt;}
.y248{bottom:80.346667pt;}
.y45{bottom:80.670667pt;}
.y42{bottom:81.956000pt;}
.y12a{bottom:82.276000pt;}
.y193{bottom:83.552000pt;}
.y16a{bottom:85.152000pt;}
.y50{bottom:85.470667pt;}
.y242{bottom:86.432000pt;}
.y203{bottom:88.000000pt;}
.y24d{bottom:88.026667pt;}
.y1eb{bottom:88.032000pt;}
.y213{bottom:88.352000pt;}
.y4f{bottom:90.910667pt;}
.yb6{bottom:91.546667pt;}
.y104{bottom:94.752000pt;}
.y3d{bottom:95.360000pt;}
.y20d{bottom:95.394667pt;}
.y206{bottom:95.680000pt;}
.y24c{bottom:95.706667pt;}
.yd9{bottom:96.352000pt;}
.y10b{bottom:97.306667pt;}
.y90{bottom:97.632000pt;}
.yb0{bottom:97.956000pt;}
.y192{bottom:98.592000pt;}
.y169{bottom:101.152000pt;}
.yb7{bottom:101.466667pt;}
.y241{bottom:101.792000pt;}
.y202{bottom:103.360000pt;}
.y1ea{bottom:103.392000pt;}
.y4e{bottom:104.990667pt;}
.y103{bottom:110.112000pt;}
.y1f8{bottom:110.746667pt;}
.y20c{bottom:110.754667pt;}
.y3c{bottom:110.760000pt;}
.y207{bottom:111.040000pt;}
.yd8{bottom:111.712000pt;}
.y8f{bottom:112.992000pt;}
.y191{bottom:113.952000pt;}
.y1c5{bottom:116.512000pt;}
.y168{bottom:116.832000pt;}
.y240{bottom:117.152000pt;}
.y4d{bottom:118.750667pt;}
.y1e9{bottom:118.752000pt;}
.y208{bottom:119.712000pt;}
.yba{bottom:124.506667pt;}
.y102{bottom:125.152000pt;}
.y1fb{bottom:126.106667pt;}
.y3b{bottom:126.120000pt;}
.yd7{bottom:127.104000pt;}
.y8e{bottom:128.384000pt;}
.y190{bottom:129.344000pt;}
.y1c4{bottom:131.904000pt;}
.y23f{bottom:132.544000pt;}
.y4c{bottom:132.830667pt;}
.y167{bottom:133.184000pt;}
.y1e8{bottom:134.146667pt;}
.y44{bottom:136.030667pt;}
.yb9{bottom:139.866667pt;}
.y101{bottom:140.546667pt;}
.y3a{bottom:141.480000pt;}
.yd6{bottom:142.466667pt;}
.y8d{bottom:143.426667pt;}
.y108{bottom:144.026667pt;}
.y18f{bottom:144.706667pt;}
.y43{bottom:145.630667pt;}
.y4b{bottom:146.590667pt;}
.y1c3{bottom:146.946667pt;}
.y23e{bottom:147.906667pt;}
.y166{bottom:149.186667pt;}
.y128{bottom:149.200000pt;}
.y1e7{bottom:149.506667pt;}
.y256{bottom:151.173333pt;}
.y39{bottom:156.840000pt;}
.yd5{bottom:157.506667pt;}
.y106{bottom:158.173333pt;}
.y4a{bottom:160.030667pt;}
.y18e{bottom:160.066667pt;}
.y1c2{bottom:162.306667pt;}
.y23d{bottom:163.266667pt;}
.y100{bottom:164.226667pt;}
.y165{bottom:164.866667pt;}
.y8c{bottom:167.106667pt;}
.y107{bottom:170.333333pt;}
.y38{bottom:172.200000pt;}
.yd4{bottom:172.866667pt;}
.y18d{bottom:175.426667pt;}
.y1c1{bottom:177.666667pt;}
.y23c{bottom:178.626667pt;}
.yff{bottom:179.586667pt;}
.y164{bottom:180.226667pt;}
.y125{bottom:182.800000pt;}
.y8b{bottom:183.426667pt;}
.y37{bottom:187.560000pt;}
.yd3{bottom:188.226667pt;}
.y18c{bottom:190.786667pt;}
.y1c0{bottom:193.026667pt;}
.y10a{bottom:193.373333pt;}
.y23b{bottom:193.666667pt;}
.yfe{bottom:194.946667pt;}
.y163{bottom:195.586667pt;}
.y8a{bottom:199.746667pt;}
.y36{bottom:202.920000pt;}
.yd2{bottom:203.586667pt;}
.y18b{bottom:205.826667pt;}
.y1bf{bottom:208.386667pt;}
.y162{bottom:208.400000pt;}
.y109{bottom:208.733333pt;}
.yfd{bottom:210.306667pt;}
.y1e6{bottom:210.946667pt;}
.y89{bottom:216.066667pt;}
.yae{bottom:216.720000pt;}
.y23a{bottom:217.026667pt;}
.y35{bottom:218.280000pt;}
.yd1{bottom:218.946667pt;}
.y1be{bottom:223.746667pt;}
.y160{bottom:224.720000pt;}
.yfc{bottom:225.666667pt;}
.y1e5{bottom:226.306667pt;}
.y18a{bottom:229.506667pt;}
.y88{bottom:231.426667pt;}
.y34{bottom:233.346667pt;}
.yd0{bottom:234.306667pt;}
.y1bd{bottom:236.240000pt;}
.yfb{bottom:241.026667pt;}
.y15e{bottom:241.040000pt;}
.y1e4{bottom:241.666667pt;}
.y200{bottom:242.973333pt;}
.y239{bottom:243.613333pt;}
.yad{bottom:244.573333pt;}
.y189{bottom:244.893333pt;}
.y87{bottom:246.493333pt;}
.y33{bottom:248.706667pt;}
.ycf{bottom:249.693333pt;}
.y1bc{bottom:252.253333pt;}
.y10{bottom:253.853333pt;}
.yfa{bottom:256.093333pt;}
.y1e3{bottom:257.053333pt;}
.y15d{bottom:257.373333pt;}
.yac{bottom:259.933333pt;}
.y188{bottom:260.253333pt;}
.y86{bottom:261.533333pt;}
.y255{bottom:262.080000pt;}
.y32{bottom:264.066667pt;}
.yce{bottom:265.053333pt;}
.y121{bottom:266.973333pt;}
.y1bb{bottom:268.253333pt;}
.yf9{bottom:271.453333pt;}
.y1e2{bottom:272.093333pt;}
.y15c{bottom:273.693333pt;}
.yab{bottom:275.293333pt;}
.y187{bottom:275.613333pt;}
.ycd{bottom:276.893333pt;}
.y31{bottom:279.426667pt;}
.y238{bottom:279.453333pt;}
.y25d{bottom:282.013333pt;}
.y1e{bottom:283.266667pt;}
.yf6{bottom:283.933333pt;}
.y85{bottom:285.213333pt;}
.y1e1{bottom:287.133333pt;}
.y15b{bottom:290.013333pt;}
.yaa{bottom:290.653333pt;}
.ycc{bottom:293.533333pt;}
.y30{bottom:294.786667pt;}
.y25c{bottom:297.693333pt;}
.y1b9{bottom:299.613333pt;}
.y84{bottom:300.573333pt;}
.y11e{bottom:300.893333pt;}
.y237{bottom:302.813333pt;}
.y1d{bottom:304.706667pt;}
.ya9{bottom:306.013333pt;}
.y15a{bottom:309.853333pt;}
.y2f{bottom:310.146667pt;}
.y1e0{bottom:310.813333pt;}
.y25b{bottom:313.053333pt;}
.y83{bottom:315.933333pt;}
.ya8{bottom:321.373333pt;}
.y159{bottom:325.213333pt;}
.y2e{bottom:325.506667pt;}
.y1c{bottom:326.146667pt;}
.y1df{bottom:326.173333pt;}
.y25a{bottom:328.413333pt;}
.y1b8{bottom:330.973333pt;}
.y82{bottom:331.293333pt;}
.yf2{bottom:334.493333pt;}
.ya7{bottom:336.733333pt;}
.y158{bottom:340.573333pt;}
.y2d{bottom:340.893333pt;}
.y1de{bottom:341.533333pt;}
.y259{bottom:343.773333pt;}
.y236{bottom:346.013333pt;}
.y81{bottom:346.653333pt;}
.y1b{bottom:347.613333pt;}
.ya5{bottom:348.573333pt;}
.y1b7{bottom:350.493333pt;}
.y186{bottom:352.093333pt;}
.y26b{bottom:354.333333pt;}
.y157{bottom:355.933333pt;}
.y2c{bottom:356.253333pt;}
.y1dd{bottom:356.893333pt;}
.y258{bottom:359.133333pt;}
.y80{bottom:362.053333pt;}
.ya3{bottom:365.253333pt;}
.y1b6{bottom:365.893333pt;}
.y119{bottom:367.493333pt;}
.yb5{bottom:368.000000pt;}
.y1a{bottom:369.373333pt;}
.y2b{bottom:371.293333pt;}
.y156{bottom:371.333333pt;}
.y1dc{bottom:372.293333pt;}
.y7f{bottom:377.413333pt;}
.y1b5{bottom:381.253333pt;}
.y1fc{bottom:381.893333pt;}
.y185{bottom:382.853333pt;}
.yef{bottom:384.773333pt;}
.y257{bottom:386.053333pt;}
.y155{bottom:386.373333pt;}
.y235{bottom:386.693333pt;}
.y1db{bottom:387.653333pt;}
.y26a{bottom:388.613333pt;}
.y19{bottom:390.813333pt;}
.y7e{bottom:392.773333pt;}
.y2a{bottom:394.333333pt;}
.y1b4{bottom:396.613333pt;}
.y184{bottom:398.213333pt;}
.y154{bottom:401.733333pt;}
.y1da{bottom:403.013333pt;}
.y269{bottom:405.893333pt;}
.y268{bottom:407.173333pt;}
.y29{bottom:408.093333pt;}
.y7d{bottom:408.133333pt;}
.y1b3{bottom:411.653333pt;}
.y18{bottom:412.253333pt;}
.y183{bottom:413.573333pt;}
.y25e{bottom:416.960000pt;}
.y153{bottom:417.093333pt;}
.y28{bottom:421.853333pt;}
.y267{bottom:422.533333pt;}
.y7c{bottom:423.493333pt;}
.y1b2{bottom:427.013333pt;}
.y182{bottom:428.613333pt;}
.y253{bottom:430.400000pt;}
.y152{bottom:432.453333pt;}
.y260{bottom:433.093333pt;}
.y17{bottom:433.693333pt;}
.y1d9{bottom:433.733333pt;}
.yee{bottom:435.013333pt;}
.y27{bottom:435.613333pt;}
.y266{bottom:437.573333pt;}
.y7b{bottom:438.533333pt;}
.y1b1{bottom:442.373333pt;}
.y181{bottom:443.973333pt;}
.y151{bottom:447.813333pt;}
.y1d8{bottom:448.773333pt;}
.y26{bottom:449.373333pt;}
.y115{bottom:451.013333pt;}
.yec{bottom:452.293333pt;}
.y7a{bottom:453.893333pt;}
.y16{bottom:455.133333pt;}
.y180{bottom:456.773333pt;}
.y1b0{bottom:457.733333pt;}
.y150{bottom:460.613333pt;}
.y265{bottom:461.253333pt;}
.ycb{bottom:462.533333pt;}
.y25{bottom:463.173333pt;}
.y1d7{bottom:465.093333pt;}
.y79{bottom:469.253333pt;}
.y1af{bottom:473.093333pt;}
.y262{bottom:473.920000pt;}
.y264{bottom:476.293333pt;}
.y15{bottom:476.613333pt;}
.y14e{bottom:476.933333pt;}
.y24{bottom:477.253333pt;}
.y1d6{bottom:481.440000pt;}
.y78{bottom:484.640000pt;}
.y1ae{bottom:488.160000pt;}
.y1f5{bottom:489.760000pt;}
.y17e{bottom:490.400000pt;}
.yca{bottom:490.720000pt;}
.y23{bottom:491.013333pt;}
.y194{bottom:492.258882pt;}
.y14d{bottom:493.280000pt;}
.y1d5{bottom:497.760000pt;}
.y14{bottom:498.053333pt;}
.y234{bottom:498.080000pt;}
.y77{bottom:500.000000pt;}
.y22{bottom:504.773333pt;}
.yc9{bottom:506.080000pt;}
.yeb{bottom:507.680000pt;}
.y14b{bottom:509.600000pt;}
.y1ad{bottom:511.840000pt;}
.y1d4{bottom:514.080000pt;}
.y76{bottom:515.360000pt;}
.y21{bottom:518.533333pt;}
.y13{bottom:519.493333pt;}
.yc8{bottom:521.440000pt;}
.yea{bottom:523.040000pt;}
.y233{bottom:523.360000pt;}
.y1ac{bottom:528.160000pt;}
.y14a{bottom:529.440000pt;}
.y1d3{bottom:530.400000pt;}
.y75{bottom:530.720000pt;}
.y20{bottom:532.293333pt;}
.ya1{bottom:532.320000pt;}
.y114{bottom:534.560000pt;}
.yc7{bottom:536.800000pt;}
.ye9{bottom:538.400000pt;}
.y232{bottom:538.720000pt;}
.y12{bottom:540.933333pt;}
.y1ab{bottom:544.480000pt;}
.y149{bottom:544.800000pt;}
.y1d2{bottom:545.760000pt;}
.y74{bottom:546.080000pt;}
.yc6{bottom:552.160000pt;}
.ye8{bottom:553.760000pt;}
.y231{bottom:554.080000pt;}
.y1f{bottom:559.493333pt;}
.y148{bottom:560.160000pt;}
.ya0{bottom:560.480000pt;}
.y196{bottom:560.637119pt;}
.y73{bottom:561.440000pt;}
.y11{bottom:562.373333pt;}
.yc5{bottom:567.520000pt;}
.ye7{bottom:569.120000pt;}
.y230{bottom:569.440000pt;}
.y147{bottom:575.520000pt;}
.y9f{bottom:575.840000pt;}
.y72{bottom:576.800000pt;}
.y19c{bottom:577.224010pt;}
.yc4{bottom:579.360000pt;}
.y1aa{bottom:584.160000pt;}
.ye6{bottom:584.480000pt;}
.y113{bottom:584.800000pt;}
.y146{bottom:590.880000pt;}
.y9e{bottom:591.200000pt;}
.y71{bottom:592.160000pt;}
.y17c{bottom:594.400000pt;}
.yc2{bottom:595.720000pt;}
.y1a9{bottom:599.226667pt;}
.ye5{bottom:599.866667pt;}
.y22f{bottom:600.186667pt;}
.y112{bottom:602.120000pt;}
.y145{bottom:606.266667pt;}
.y9d{bottom:606.586667pt;}
.y70{bottom:607.226667pt;}
.yc0{bottom:612.360000pt;}
.y1a8{bottom:614.586667pt;}
.ye4{bottom:614.906667pt;}
.y22e{bottom:615.226667pt;}
.y9c{bottom:621.626667pt;}
.y6f{bottom:622.586667pt;}
.y1f1{bottom:628.346667pt;}
.y1a7{bottom:629.946667pt;}
.ye3{bottom:630.266667pt;}
.y22d{bottom:630.586667pt;}
.y144{bottom:636.666667pt;}
.y9b{bottom:636.986667pt;}
.y6e{bottom:637.946667pt;}
.y1a6{bottom:645.306667pt;}
.ye2{bottom:645.626667pt;}
.y22c{bottom:645.946667pt;}
.y99{bottom:648.840000pt;}
.y6d{bottom:653.306667pt;}
.y143{bottom:660.346667pt;}
.y1a5{bottom:660.666667pt;}
.ye1{bottom:660.986667pt;}
.y22b{bottom:661.306667pt;}
.y1d1{bottom:668.346667pt;}
.y6c{bottom:668.666667pt;}
.y97{bottom:672.200000pt;}
.y1f0{bottom:675.066667pt;}
.y142{bottom:675.706667pt;}
.y1a4{bottom:676.026667pt;}
.ye0{bottom:676.346667pt;}
.y22a{bottom:676.666667pt;}
.y6b{bottom:684.026667pt;}
.y1a3{bottom:691.386667pt;}
.ydf{bottom:691.706667pt;}
.y1d0{bottom:692.026667pt;}
.y1ef{bottom:694.266667pt;}
.y6a{bottom:699.386667pt;}
.y13f{bottom:705.480000pt;}
.y1a2{bottom:706.746667pt;}
.yde{bottom:707.066667pt;}
.y1cf{bottom:707.386667pt;}
.y1ee{bottom:709.946667pt;}
.y69{bottom:714.786667pt;}
.ydd{bottom:718.960000pt;}
.y1a1{bottom:722.146667pt;}
.y17b{bottom:722.466667pt;}
.y1ce{bottom:722.786667pt;}
.y1ed{bottom:725.026667pt;}
.y68{bottom:730.146667pt;}
.ydc{bottom:735.600000pt;}
.y1ec{bottom:737.186667pt;}
.y1a0{bottom:737.506667pt;}
.y17a{bottom:737.826667pt;}
.y1cd{bottom:738.146667pt;}
.y13e{bottom:739.120000pt;}
.y105{bottom:739.520000pt;}
.y226{bottom:745.280000pt;}
.y67{bottom:745.506667pt;}
.y19f{bottom:752.546667pt;}
.y179{bottom:752.866667pt;}
.y1cc{bottom:753.506667pt;}
.y13d{bottom:756.400000pt;}
.y66{bottom:760.866667pt;}
.y252{bottom:763.106667pt;}
.y1cb{bottom:768.866667pt;}
.y13c{bottom:773.680000pt;}
.y111{bottom:776.226667pt;}
.y178{bottom:776.546667pt;}
.y1ca{bottom:784.226667pt;}
.y13a{bottom:790.640000pt;}
.y65{bottom:791.266667pt;}
.y177{bottom:791.906667pt;}
.y1c9{bottom:799.266667pt;}
.ybe{bottom:802.160000pt;}
.y64{bottom:806.626667pt;}
.y176{bottom:806.946667pt;}
.y139{bottom:807.920000pt;}
.y217{bottom:809.600000pt;}
.y247{bottom:809.826667pt;}
.y1c8{bottom:814.626667pt;}
.y63{bottom:821.986667pt;}
.y175{bottom:822.306667pt;}
.y95{bottom:824.240000pt;}
.y135{bottom:825.200000pt;}
.y1c7{bottom:830.013333pt;}
.yf{bottom:835.773333pt;}
.y110{bottom:837.053333pt;}
.y62{bottom:837.373333pt;}
.y219{bottom:837.440000pt;}
.y174{bottom:838.653333pt;}
.y214{bottom:842.240000pt;}
.y134{bottom:842.493333pt;}
.ye{bottom:842.813333pt;}
.y1c6{bottom:845.373333pt;}
.y94{bottom:852.413333pt;}
.y61{bottom:852.733333pt;}
.y173{bottom:854.013333pt;}
.y133{bottom:859.773333pt;}
.y10f{bottom:860.733333pt;}
.yd{bottom:864.253333pt;}
.y60{bottom:868.093333pt;}
.y172{bottom:870.333333pt;}
.y93{bottom:876.093333pt;}
.yc{bottom:879.613333pt;}
.y5f{bottom:883.453333pt;}
.y21d{bottom:886.400000pt;}
.y171{bottom:886.653333pt;}
.y21f{bottom:888.960000pt;}
.y92{bottom:891.453333pt;}
.y132{bottom:893.373333pt;}
.yb{bottom:894.973333pt;}
.y5e{bottom:898.493333pt;}
.y19e{bottom:898.813333pt;}
.y170{bottom:902.653333pt;}
.y91{bottom:906.813333pt;}
.y131{bottom:914.173333pt;}
.y243{bottom:918.013333pt;}
.y16f{bottom:918.333333pt;}
.ya{bottom:920.893333pt;}
.y5d{bottom:922.173333pt;}
.y19d{bottom:929.213333pt;}
.y130{bottom:929.533333pt;}
.y16e{bottom:934.653333pt;}
.y5c{bottom:937.533333pt;}
.y222{bottom:939.520000pt;}
.y9{bottom:942.653333pt;}
.y12f{bottom:944.573333pt;}
.y16d{bottom:951.013333pt;}
.y5b{bottom:952.933333pt;}
.y16c{bottom:966.693333pt;}
.y8{bottom:967.333333pt;}
.y5a{bottom:967.973333pt;}
.y57{bottom:970.240000pt;}
.yda{bottom:970.853333pt;}
.y224{bottom:976.960000pt;}
.y16b{bottom:982.373333pt;}
.y229{bottom:983.013333pt;}
.y59{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.h56{height:9.280000pt;}
.h5f{height:13.120000pt;}
.h58{height:13.440000pt;}
.h42{height:15.346667pt;}
.h40{height:15.360000pt;}
.h41{height:15.386667pt;}
.h48{height:15.900537pt;}
.h26{height:16.306667pt;}
.hb{height:16.331250pt;}
.h29{height:16.352000pt;}
.h28{height:16.626667pt;}
.h3c{height:16.640000pt;}
.h1e{height:16.666667pt;}
.h33{height:16.672000pt;}
.h52{height:17.920000pt;}
.h54{height:19.520000pt;}
.h5d{height:20.800000pt;}
.h21{height:21.436000pt;}
.h6{height:21.643125pt;}
.h1c{height:23.346667pt;}
.h2c{height:24.306667pt;}
.h1f{height:24.626667pt;}
.h16{height:24.640000pt;}
.h2a{height:24.666667pt;}
.h19{height:24.960000pt;}
.h13{height:26.381250pt;}
.h55{height:27.200000pt;}
.h4a{height:30.706667pt;}
.h4f{height:30.720000pt;}
.h38{height:32.946667pt;}
.h3f{height:32.978667pt;}
.h45{height:32.986667pt;}
.h39{height:33.266667pt;}
.h3e{height:33.586667pt;}
.h3b{height:33.600000pt;}
.h3d{height:33.906667pt;}
.h9{height:33.918750pt;}
.h2e{height:35.866667pt;}
.he{height:36.431250pt;}
.h59{height:37.120000pt;}
.hd{height:37.410000pt;}
.h50{height:37.440000pt;}
.h10{height:37.537500pt;}
.h57{height:41.456250pt;}
.h53{height:41.920000pt;}
.h4b{height:46.080000pt;}
.hf{height:47.713750pt;}
.h24{height:47.737500pt;}
.h25{height:47.863125pt;}
.h23{height:48.378750pt;}
.h14{height:49.020000pt;}
.h47{height:49.493404pt;}
.h2f{height:49.586667pt;}
.h34{height:49.600000pt;}
.h30{height:49.626667pt;}
.h31{height:49.906667pt;}
.h7{height:51.600000pt;}
.h49{height:52.736250pt;}
.h5{height:52.762500pt;}
.h11{height:53.471250pt;}
.ha{height:54.180000pt;}
.h18{height:55.256809pt;}
.h43{height:55.965000pt;}
.h17{height:56.405000pt;}
.h8{height:56.513750pt;}
.h1b{height:57.787500pt;}
.h3{height:58.563750pt;}
.h51{height:58.691063pt;}
.h5a{height:59.340000pt;}
.h37{height:65.946667pt;}
.h3a{height:66.268000pt;}
.h2{height:72.346667pt;}
.h5b{height:76.512000pt;}
.h36{height:82.866667pt;}
.h35{height:82.906667pt;}
.h46{height:100.865457pt;}
.h44{height:103.360000pt;}
.h4{height:103.680000pt;}
.h4d{height:107.232000pt;}
.h5c{height:107.552000pt;}
.h20{height:118.748000pt;}
.h4e{height:122.592000pt;}
.h4c{height:137.946667pt;}
.h1a{height:152.013333pt;}
.h22{height:162.560000pt;}
.h5e{height:163.840000pt;}
.h1d{height:167.066667pt;}
.h2b{height:168.986667pt;}
.h12{height:171.240000pt;}
.h27{height:189.773333pt;}
.h32{height:231.360000pt;}
.h2d{height:235.240000pt;}
.hc{height:570.693333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w25{width:36.004716pt;}
.w1f{width:44.832000pt;}
.w29{width:54.080000pt;}
.w41{width:57.920000pt;}
.w32{width:58.592000pt;}
.w22{width:59.546667pt;}
.w38{width:60.480000pt;}
.w1a{width:62.080000pt;}
.w21{width:67.840000pt;}
.w3d{width:71.360000pt;}
.w3f{width:79.360000pt;}
.w2a{width:81.946667pt;}
.w39{width:83.840000pt;}
.w37{width:89.280000pt;}
.w34{width:89.600000pt;}
.w3a{width:91.200000pt;}
.w35{width:91.520000pt;}
.w36{width:91.840000pt;}
.w2{width:92.180000pt;}
.w19{width:94.144000pt;}
.w2c{width:96.064000pt;}
.w28{width:104.660000pt;}
.w2f{width:106.304000pt;}
.w20{width:109.778667pt;}
.w2b{width:112.986667pt;}
.w4{width:117.780000pt;}
.w1b{width:118.144000pt;}
.w33{width:120.704000pt;}
.w31{width:121.312000pt;}
.w15{width:122.600000pt;}
.w16{width:131.866667pt;}
.w1c{width:137.960000pt;}
.w6{width:144.960000pt;}
.w12{width:150.440000pt;}
.w30{width:159.426667pt;}
.w42{width:174.813333pt;}
.w3b{width:179.200000pt;}
.w2d{width:187.560000pt;}
.w40{width:211.840000pt;}
.w3e{width:282.560000pt;}
.we{width:285.880000pt;}
.w1e{width:293.560000pt;}
.wf{width:299.640000pt;}
.w17{width:345.746667pt;}
.w13{width:424.506667pt;}
.w9{width:452.480000pt;}
.w10{width:477.120000pt;}
.w26{width:500.332975pt;}
.w5{width:530.440000pt;}
.w3c{width:534.080000pt;}
.w3{width:553.480000pt;}
.w18{width:566.960000pt;}
.w2e{width:567.613333pt;}
.wc{width:568.200000pt;}
.w11{width:575.600000pt;}
.w1d{width:579.440000pt;}
.w7{width:584.880000pt;}
.wd{width:586.160000pt;}
.w8{width:590.600000pt;}
.wb{width:601.200000pt;}
.w24{width:601.280986pt;}
.w14{width:601.520000pt;}
.wa{width:606.640000pt;}
.w23{width:616.240000pt;}
.w27{width:640.560000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x68{left:-9.799268pt;}
.x0{left:0.000000pt;}
.x70{left:0.960000pt;}
.x60{left:3.520000pt;}
.x7e{left:5.120000pt;}
.x1f{left:6.112000pt;}
.x18{left:7.348000pt;}
.x2a{left:8.826667pt;}
.x85{left:9.920000pt;}
.x61{left:10.868000pt;}
.x4{left:11.826667pt;}
.x40{left:12.820000pt;}
.x47{left:13.760000pt;}
.x16{left:15.348000pt;}
.x1c{left:16.308000pt;}
.x5{left:17.266667pt;}
.x7b{left:18.240000pt;}
.x80{left:19.520000pt;}
.x41{left:20.500000pt;}
.x36{left:22.100000pt;}
.x90{left:23.040000pt;}
.x82{left:24.000000pt;}
.x66{left:24.905546pt;}
.x17{left:25.908000pt;}
.x29{left:27.066667pt;}
.x4b{left:28.820000pt;}
.x3d{left:30.102667pt;}
.x83{left:31.074667pt;}
.x7f{left:32.000000pt;}
.x6e{left:32.960000pt;}
.x74{left:33.946667pt;}
.x42{left:36.182667pt;}
.x72{left:37.786667pt;}
.x10{left:39.028000pt;}
.x84{left:40.320000pt;}
.x43{left:41.302667pt;}
.x1d{left:42.260000pt;}
.x6{left:43.213333pt;}
.x58{left:44.186667pt;}
.x11{left:45.140000pt;}
.x4c{left:46.102667pt;}
.x15{left:48.020000pt;}
.xf{left:48.980000pt;}
.x4e{left:52.160000pt;}
.x48{left:53.760000pt;}
.x1a{left:55.373333pt;}
.x81{left:56.960000pt;}
.x57{left:60.182667pt;}
.x4f{left:62.426667pt;}
.x22{left:63.702667pt;}
.x1{left:69.804000pt;}
.x4d{left:71.066667pt;}
.x65{left:72.342667pt;}
.x14{left:74.582667pt;}
.x7{left:76.832000pt;}
.x75{left:78.733333pt;}
.x13{left:80.022667pt;}
.x2{left:84.822667pt;}
.x50{left:86.453333pt;}
.x51{left:89.013333pt;}
.x1e{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x44{left:96.364000pt;}
.x25{left:98.262667pt;}
.x45{left:100.849333pt;}
.x3b{left:102.853333pt;}
.x21{left:104.684000pt;}
.x59{left:107.244000pt;}
.x2d{left:109.142667pt;}
.x12{left:110.742667pt;}
.x79{left:111.712000pt;}
.x38{left:113.626667pt;}
.x8d{left:116.480000pt;}
.x3f{left:119.106667pt;}
.x2b{left:120.506667pt;}
.x5b{left:121.649333pt;}
.x30{left:123.542667pt;}
.x20{left:124.864000pt;}
.x33{left:127.409333pt;}
.x6b{left:131.889333pt;}
.x5a{left:139.569333pt;}
.xa{left:146.626667pt;}
.x52{left:148.866667pt;}
.x39{left:150.400000pt;}
.x4a{left:151.413333pt;}
.x3c{left:159.729333pt;}
.x69{left:160.872924pt;}
.x3{left:162.000000pt;}
.x64{left:164.209333pt;}
.x6a{left:167.206021pt;}
.xc{left:170.946667pt;}
.x2c{left:173.346667pt;}
.x6c{left:182.160000pt;}
.x35{left:183.729333pt;}
.x3a{left:185.760000pt;}
.x19{left:194.640000pt;}
.x24{left:196.249333pt;}
.x27{left:198.769333pt;}
.x32{left:200.049333pt;}
.x2f{left:202.929333pt;}
.x8f{left:213.533333pt;}
.x7a{left:218.333333pt;}
.x46{left:219.613333pt;}
.x62{left:222.169333pt;}
.x91{left:223.773333pt;}
.x86{left:232.960000pt;}
.x6d{left:236.893333pt;}
.x96{left:244.160000pt;}
.x92{left:251.933333pt;}
.x8a{left:255.680000pt;}
.x3e{left:260.253333pt;}
.x53{left:265.053333pt;}
.x93{left:279.813333pt;}
.x77{left:292.293333pt;}
.x78{left:299.013333pt;}
.x8c{left:317.440000pt;}
.x6f{left:319.493333pt;}
.xb{left:334.213333pt;}
.x97{left:339.013333pt;}
.x87{left:350.720000pt;}
.x49{left:352.133333pt;}
.x54{left:360.160000pt;}
.x7c{left:378.080000pt;}
.x37{left:390.560000pt;}
.x5c{left:401.760000pt;}
.x8b{left:403.200000pt;}
.x55{left:423.520000pt;}
.x71{left:433.120000pt;}
.x5d{left:447.560000pt;}
.x23{left:463.862667pt;}
.x28{left:476.022667pt;}
.x88{left:480.960000pt;}
.x7d{left:499.706667pt;}
.x31{left:504.502667pt;}
.xd{left:510.266667pt;}
.x73{left:529.840000pt;}
.x56{left:542.640000pt;}
.x94{left:546.240000pt;}
.x2e{left:554.449333pt;}
.x5e{left:558.320000pt;}
.x34{left:560.849333pt;}
.x95{left:571.426667pt;}
.x26{left:583.249333pt;}
.x89{left:589.760000pt;}
.x63{left:609.209333pt;}
.x5f{left:627.133333pt;}
.x67{left:661.654014pt;}
.x9{left:680.933333pt;}
.x76{left:685.093333pt;}
.x8e{left:691.813333pt;}
.x8{left:703.973333pt;}
.xe{left:717.413333pt;}
}




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