
    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_2d802ea013d51f019da4e852.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925000;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_8286072f621eeffcc913225e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_9ed09c6a950eac158463a58e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_7e2bdd24b485fa448083564a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_ac84db2b5345fd7af4d942ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926000;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_2f8d5eb1ba7502ba1d68697d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926000;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_4f4ee9ac1592b0260b2ca637.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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_942a26cbf6db030792f2de1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926000;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_9ded116594d7b4d4a94382ff.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_c283824f5b4f7430cbb9b3cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925000;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_2f94760394bc1ed66791a83b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926000;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_e9220b8a1a9183b3d55e7678.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.738000;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_d355eeefba2d1dd1e4354b39.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.021000;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_278501cd5d632a04ffc9eed5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.725000;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_f8dfa878dffcf0e9e87d5a70.woff2')format("woff");}.fff{font-family:fff;line-height:0.751000;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_6c934fcc4247e6109a70aa67.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.913000;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_23c35080ab06c168769ffa90.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.926000;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:ff12;src:url('chunks/assets/font_1f8e5b58cc4872c5cd52200b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.725000;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);}
.m2{transform:matrix(0.124999,-0.216507,0.216507,0.124999,0,0);-ms-transform:matrix(0.124999,-0.216507,0.216507,0.124999,0,0);-webkit-transform:matrix(0.124999,-0.216507,0.216507,0.124999,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.m4{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-5.745600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:7.140000px;}
.v4{vertical-align:34.275000px;}
.v1{vertical-align:35.965200px;}
.v2{vertical-align:42.552000px;}
.lsb{letter-spacing:-5.745600px;}
.ls5{letter-spacing:-3.600000px;}
.lsa{letter-spacing:-2.418150px;}
.ls3{letter-spacing:-1.888920px;}
.ls6{letter-spacing:-1.415250px;}
.lsc{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.360000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.944460px;}
.ls2{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.350000px;}
.ls9{letter-spacing:1.620000px;}
.ls0{letter-spacing:506.734272px;}
.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;}
}
.ws7{word-spacing:-536.579208px;}
.ws11{word-spacing:-68.628000px;}
.ws0{word-spacing:-26.477640px;}
.ws5{word-spacing:-25.596000px;}
.ws1{word-spacing:-19.908000px;}
.ws8{word-spacing:-18.770400px;}
.ws3{word-spacing:-17.064037px;}
.ws4{word-spacing:-17.064000px;}
.wsb{word-spacing:-16.704000px;}
.ws2{word-spacing:-14.520138px;}
.wsa{word-spacing:-11.180475px;}
.ws9{word-spacing:-9.765225px;}
.wsf{word-spacing:-9.043881px;}
.ws1a{word-spacing:-1.620000px;}
.ws19{word-spacing:-1.350000px;}
.ws16{word-spacing:-1.080000px;}
.ws15{word-spacing:0.000000px;}
.ws17{word-spacing:1.888920px;}
.ws1b{word-spacing:2.418150px;}
.ws18{word-spacing:3.600000px;}
.ws12{word-spacing:193.690560px;}
.wse{word-spacing:291.417223px;}
.ws6{word-spacing:381.561840px;}
.wsc{word-spacing:775.296000px;}
.ws14{word-spacing:897.341400px;}
.wsd{word-spacing:1007.640000px;}
.ws13{word-spacing:3070.548000px;}
.ws10{word-spacing:11853.492000px;}
._14{margin-left:-506.734272px;}
._1d{margin-left:-23.908080px;}
._4{margin-left:-13.406400px;}
._6{margin-left:-12.289200px;}
._8{margin-left:-10.973760px;}
._a{margin-left:-8.699040px;}
._9{margin-left:-7.564200px;}
._b{margin-left:-5.027400px;}
._1{margin-left:-3.686760px;}
._5{margin-left:-2.457840px;}
._0{margin-left:-1.340640px;}
._2{width:1.117200px;}
._3{width:2.234400px;}
._f{width:3.272640px;}
._12{width:4.557840px;}
._17{width:11.864664px;}
._d{width:35.028000px;}
._e{width:36.456000px;}
._c{width:37.884000px;}
._10{width:44.352000px;}
._7{width:56.532000px;}
._11{width:59.724000px;}
._15{width:91.442820px;}
._1c{width:99.162672px;}
._1a{width:103.184592px;}
._1b{width:115.216836px;}
._18{width:156.977772px;}
._1e{width:164.652936px;}
._16{width:188.985552px;}
._13{width:462.596508px;}
._1f{width:560.994000px;}
._19{width:836.195400px;}
._20{width:5988.669000px;}
.fc17{color:transparent;}
.fc15{color:rgb(10,10,11);}
.fc12{color:rgb(80,136,198);}
.fc10{color:rgb(57,152,134);}
.fcf{color:rgb(202,82,84);}
.fcd{color:rgb(34,120,181);}
.fc11{color:rgb(241,131,96);}
.fc0{color:rgb(90,111,117);}
.fc1{color:rgb(0,0,0);}
.fc14{color:rgb(43,108,95);}
.fc3{color:rgb(1,1,1);}
.fc7{color:rgb(143,103,61);}
.fc16{color:rgb(249,251,240);}
.fc9{color:rgb(255,255,255);}
.fca{color:rgb(35,31,32);}
.fcb{color:rgb(120,55,120);}
.fc2{color:rgb(251,184,131);}
.fc4{color:rgb(85,69,139);}
.fc13{color:rgb(68,66,64);}
.fce{color:rgb(241,131,95);}
.fc6{color:rgb(195,153,108);}
.fc8{color:rgb(3,69,105);}
.fc5{color:rgb(88,185,95);}
.fcc{color:rgb(116,192,68);}
.fs10{font-size:47.175000px;}
.fs8{font-size:48.000000px;}
.fs16{font-size:48.363000px;}
.fs17{font-size:51.587400px;}
.fsc{font-size:62.964000px;}
.fs6{font-size:66.000626px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:72.000158px;}
.fse{font-size:79.200000px;}
.fs11{font-size:81.454200px;}
.fsb{font-size:83.563200px;}
.fs3{font-size:84.000000px;}
.fs12{font-size:90.000000px;}
.fs13{font-size:100.777200px;}
.fs7{font-size:102.000000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:111.720000px;}
.fs1{font-size:120.000000px;}
.fsd{font-size:125.928000px;}
.fs18{font-size:127.680000px;}
.fs0{font-size:132.000000px;}
.fsf{font-size:144.000000px;}
.fs5{font-size:180.000000px;}
.fs1a{font-size:216.000000px;}
.fs14{font-size:232.103400px;}
.fs19{font-size:288.000000px;}
.fs15{font-size:319.200000px;}
.y168{bottom:-0.007050px;}
.y5b{bottom:-0.001800px;}
.y126{bottom:-0.000600px;}
.y0{bottom:0.000000px;}
.y113{bottom:0.000150px;}
.y102{bottom:0.000450px;}
.y1bb{bottom:0.002100px;}
.yb8{bottom:1.923150px;}
.yae{bottom:1.923450px;}
.y63{bottom:1.923900px;}
.y92{bottom:1.924050px;}
.yb3{bottom:1.924200px;}
.y7b{bottom:1.924350px;}
.y77{bottom:1.924650px;}
.y8a{bottom:1.924800px;}
.y6d{bottom:1.924950px;}
.ya4{bottom:1.925550px;}
.ybb{bottom:1.925850px;}
.ya8{bottom:1.926150px;}
.y8c{bottom:1.926450px;}
.ybf{bottom:1.926750px;}
.ya0{bottom:1.927350px;}
.y79{bottom:1.927500px;}
.y65{bottom:1.928250px;}
.y97{bottom:1.928550px;}
.y7f{bottom:1.929000px;}
.y86{bottom:1.929600px;}
.y5d{bottom:1.930050px;}
.y6f{bottom:1.930200px;}
.y99{bottom:1.931700px;}
.y94{bottom:1.932000px;}
.yb0{bottom:1.932150px;}
.ybd{bottom:1.932300px;}
.ya2{bottom:1.932450px;}
.y67{bottom:1.932750px;}
.y90{bottom:1.932900px;}
.y5f{bottom:1.933500px;}
.y75{bottom:1.934850px;}
.y6b{bottom:1.935450px;}
.y7d{bottom:1.935900px;}
.y71{bottom:1.936500px;}
.yaa{bottom:1.937250px;}
.yb6{bottom:1.937400px;}
.ya6{bottom:1.937550px;}
.y9d{bottom:1.946100px;}
.y81{bottom:1.949400px;}
.yc3{bottom:2.333250px;}
.y73{bottom:2.739150px;}
.y69{bottom:2.741850px;}
.y8e{bottom:2.742300px;}
.y84{bottom:2.744250px;}
.yac{bottom:2.749500px;}
.y61{bottom:2.762400px;}
.yea{bottom:3.486750px;}
.yd1{bottom:3.487800px;}
.ycd{bottom:3.488550px;}
.yfb{bottom:3.491550px;}
.y118{bottom:3.491700px;}
.y11c{bottom:3.491850px;}
.yf9{bottom:3.492000px;}
.y17e{bottom:3.492150px;}
.y17b{bottom:3.492300px;}
.y11a{bottom:3.492450px;}
.yfd{bottom:3.492600px;}
.y115{bottom:3.492750px;}
.yec{bottom:3.492900px;}
.y1b1{bottom:3.493350px;}
.yd3{bottom:3.493500px;}
.y1af{bottom:3.493650px;}
.ye8{bottom:3.494250px;}
.y1b3{bottom:3.494550px;}
.y149{bottom:3.494700px;}
.y1b9{bottom:3.495300px;}
.y1b7{bottom:3.495600px;}
.y1b5{bottom:3.495750px;}
.y147{bottom:3.496200px;}
.ycf{bottom:3.497100px;}
.ycb{bottom:3.497850px;}
.yee{bottom:3.500400px;}
.y53{bottom:5.233050px;}
.y55{bottom:5.236350px;}
.y57{bottom:5.239500px;}
.y59{bottom:5.242800px;}
.y51{bottom:5.244900px;}
.yc1{bottom:5.893500px;}
.yf1{bottom:7.857750px;}
.y160{bottom:7.858950px;}
.y16a{bottom:7.859550px;}
.yd7{bottom:7.860000px;}
.y164{bottom:7.860300px;}
.y15a{bottom:7.860600px;}
.ydd{bottom:7.861650px;}
.y162{bottom:7.862400px;}
.yf5{bottom:7.862550px;}
.y155{bottom:7.863000px;}
.yd5{bottom:7.863600px;}
.y153{bottom:7.865250px;}
.y104{bottom:7.865700px;}
.y106{bottom:7.866000px;}
.y10b{bottom:7.866300px;}
.y10d{bottom:7.866450px;}
.y108{bottom:7.867050px;}
.yf3{bottom:7.867200px;}
.y15e{bottom:7.868700px;}
.y157{bottom:7.869450px;}
.ye1{bottom:7.871550px;}
.ye2{bottom:7.871850px;}
.yf7{bottom:7.872000px;}
.ydb{bottom:7.872600px;}
.y15c{bottom:7.872750px;}
.yd9{bottom:7.873950px;}
.y189{bottom:8.181600px;}
.ydf{bottom:11.117250px;}
.y110{bottom:11.124150px;}
.y151{bottom:12.585750px;}
.ye6{bottom:12.904650px;}
.y187{bottom:14.603400px;}
.y124{bottom:17.522400px;}
.y1ac{bottom:17.526600px;}
.y142{bottom:100.351350px;}
.y2c{bottom:101.352600px;}
.y194{bottom:103.894350px;}
.y4f{bottom:107.765250px;}
.y141{bottom:133.867350px;}
.y193{bottom:137.410350px;}
.y2b{bottom:141.252600px;}
.y4e{bottom:147.671250px;}
.y140{bottom:167.383350px;}
.y192{bottom:170.926350px;}
.y4d{bottom:187.577250px;}
.y2a{bottom:193.122600px;}
.y191{bottom:204.442350px;}
.y186{bottom:227.670000px;}
.y1a8{bottom:228.630919px;}
.y29{bottom:233.022600px;}
.y185{bottom:239.647500px;}
.y17a{bottom:260.931000px;}
.y28{bottom:284.892600px;}
.y12c{bottom:299.988300px;}
.y128{bottom:303.725250px;}
.y17c{bottom:304.600500px;}
.y4c{bottom:311.264250px;}
.y27{bottom:324.792600px;}
.y127{bottom:345.719250px;}
.y12b{bottom:348.357450px;}
.y131{bottom:348.358950px;}
.y17d{bottom:348.376500px;}
.y4b{bottom:351.170250px;}
.y18c{bottom:367.646550px;}
.y12f{bottom:368.236650px;}
.y129{bottom:372.164100px;}
.y26{bottom:376.662600px;}
.y4a{bottom:391.076250px;}
.y17f{bottom:392.046000px;}
.y25{bottom:428.532600px;}
.y180{bottom:435.822000px;}
.y18b{bottom:453.376500px;}
.y1a5{bottom:454.293450px;}
.y130{bottom:464.698650px;}
.y24{bottom:468.432600px;}
.y181{bottom:479.596500px;}
.y12a{bottom:506.521500px;}
.y23{bottom:520.302600px;}
.y182{bottom:523.267500px;}
.y1d2{bottom:528.931800px;}
.y22{bottom:560.202600px;}
.y12e{bottom:563.554650px;}
.y183{bottom:567.042000px;}
.y188{bottom:608.542500px;}
.y184{bottom:610.713000px;}
.y21{bottom:612.072600px;}
.yc9{bottom:650.798550px;}
.y20{bottom:651.972600px;}
.y12d{bottom:663.148650px;}
.yc8{bottom:684.314550px;}
.y1ce{bottom:697.230450px;}
.yc7{bottom:717.830550px;}
.y18a{bottom:726.184500px;}
.y198{bottom:753.824700px;}
.y19a{bottom:763.571400px;}
.y10f{bottom:768.429000px;}
.y197{bottom:792.855450px;}
.y199{bottom:797.087400px;}
.y17{bottom:813.472140px;}
.y10e{bottom:818.970000px;}
.y10a{bottom:821.809500px;}
.y107{bottom:824.469000px;}
.y103{bottom:828.961500px;}
.y10c{bottom:829.242000px;}
.y109{bottom:832.282500px;}
.y111{bottom:833.074500px;}
.y105{bottom:833.391000px;}
.y1f{bottom:861.288300px;}
.yc6{bottom:872.414850px;}
.y16{bottom:877.320120px;}
.y13f{bottom:881.678100px;}
.yf8{bottom:884.632500px;}
.yf{bottom:889.888620px;}
.yd{bottom:903.825690px;}
.yc5{bottom:905.930850px;}
.y13e{bottom:915.194100px;}
.y1e{bottom:925.136280px;}
.ye{bottom:937.369620px;}
.yc4{bottom:939.446850px;}
.y15{bottom:941.168100px;}
.y112{bottom:948.181500px;}
.y13d{bottom:948.710100px;}
.yc{bottom:951.306690px;}
.yfa{bottom:958.777500px;}
.y114{bottom:959.286000px;}
.y101{bottom:977.730000px;}
.y13c{bottom:982.226100px;}
.y123{bottom:984.376500px;}
.y1d{bottom:988.984260px;}
.y14{bottom:1005.016080px;}
.yb{bottom:1013.786100px;}
.y11d{bottom:1025.968500px;}
.yfc{bottom:1032.921000px;}
.y116{bottom:1033.942500px;}
.y1c{bottom:1052.832240px;}
.y13{bottom:1068.864060px;}
.y1b{bottom:1092.744210px;}
.y11e{bottom:1100.635500px;}
.yfe{bottom:1107.067500px;}
.y132{bottom:1107.566850px;}
.y117{bottom:1108.582500px;}
.y133{bottom:1130.594250px;}
.y12{bottom:1132.712040px;}
.y1a{bottom:1156.592190px;}
.y11f{bottom:1166.416500px;}
.y125{bottom:1173.210000px;}
.yff{bottom:1181.197500px;}
.y119{bottom:1183.236000px;}
.y11{bottom:1196.560020px;}
.y19{bottom:1220.440170px;}
.y120{bottom:1232.200500px;}
.y100{bottom:1255.342500px;}
.y11b{bottom:1257.892500px;}
.y18{bottom:1260.352140px;}
.y10{bottom:1260.408000px;}
.y121{bottom:1297.972500px;}
.y1d1{bottom:1327.011600px;}
.y1a4{bottom:1336.499490px;}
.y122{bottom:1363.755000px;}
.y1a3{bottom:1370.015490px;}
.y171{bottom:1421.547000px;}
.y135{bottom:1428.551550px;}
.y170{bottom:1455.063000px;}
.y196{bottom:1459.035600px;}
.ya{bottom:1466.665050px;}
.y134{bottom:1469.771550px;}
.y16f{bottom:1488.579000px;}
.y16e{bottom:1522.095000px;}
.y9{bottom:1527.565050px;}
.y179{bottom:1542.912150px;}
.y195{bottom:1554.997500px;}
.y16d{bottom:1555.611000px;}
.y8{bottom:1567.465050px;}
.y178{bottom:1576.428150px;}
.y16c{bottom:1589.127000px;}
.y7{bottom:1607.365050px;}
.yde{bottom:1623.915000px;}
.y166{bottom:1646.415000px;}
.ydc{bottom:1646.520000px;}
.ye3{bottom:1649.853450px;}
.y16b{bottom:1652.176050px;}
.yd8{bottom:1654.005000px;}
.yf6{bottom:1656.495000px;}
.y1d3{bottom:1661.293800px;}
.y6{bottom:1668.265050px;}
.y161{bottom:1675.005000px;}
.y163{bottom:1680.495000px;}
.y159{bottom:1682.505000px;}
.y167{bottom:1682.550000px;}
.yda{bottom:1685.100000px;}
.yf4{bottom:1687.515000px;}
.yf2{bottom:1692.285000px;}
.yd4{bottom:1695.330000px;}
.ye0{bottom:1696.110000px;}
.yf0{bottom:1696.125000px;}
.yd6{bottom:1696.440000px;}
.y5{bottom:1708.165050px;}
.y165{bottom:1710.495000px;}
.y15f{bottom:1713.600000px;}
.y158{bottom:1716.000000px;}
.y15d{bottom:1716.480000px;}
.y15b{bottom:1720.485000px;}
.y156{bottom:1720.770000px;}
.y152{bottom:1723.815000px;}
.y169{bottom:1724.610000px;}
.y154{bottom:1724.925000px;}
.ye4{bottom:1732.257450px;}
.yca{bottom:1742.070000px;}
.ye7{bottom:1742.910000px;}
.y4{bottom:1748.065050px;}
.y146{bottom:1769.640000px;}
.y3{bottom:1787.965050px;}
.y19f{bottom:1789.970970px;}
.ycc{bottom:1810.530000px;}
.y148{bottom:1812.765000px;}
.ye9{bottom:1813.605000px;}
.y19e{bottom:1823.486970px;}
.y2{bottom:1848.865050px;}
.y14a{bottom:1855.890000px;}
.y19d{bottom:1857.002970px;}
.yce{bottom:1878.975000px;}
.yeb{bottom:1884.285000px;}
.y19c{bottom:1890.518970px;}
.y14b{bottom:1899.015000px;}
.y1{bottom:1909.765200px;}
.ybe{bottom:1936.230000px;}
.y14c{bottom:1942.140000px;}
.yad{bottom:1945.665000px;}
.yd0{bottom:1947.435000px;}
.y66{bottom:1954.230000px;}
.yed{bottom:1954.965000px;}
.y74{bottom:1955.670000px;}
.y7c{bottom:1964.100000px;}
.y68{bottom:1965.195000px;}
.y6c{bottom:1965.555000px;}
.y5e{bottom:1969.290000px;}
.y9c{bottom:1973.535000px;}
.yb1{bottom:1975.860000px;}
.y70{bottom:1976.175000px;}
.y9b{bottom:1977.510000px;}
.y8d{bottom:1977.540000px;}
.y93{bottom:1977.780000px;}
.y60{bottom:1978.020000px;}
.y96{bottom:1982.385000px;}
.ya3{bottom:1983.615000px;}
.ya9{bottom:1984.305000px;}
.y82{bottom:1984.755000px;}
.y14d{bottom:1985.265000px;}
.y87{bottom:1987.575000px;}
.ya1{bottom:1988.025000px;}
.ya5{bottom:1989.420000px;}
.y8f{bottom:1991.310000px;}
.y1cf{bottom:1991.755350px;}
.y5c{bottom:1991.985000px;}
.y95{bottom:1993.620000px;}
.y6a{bottom:1995.180000px;}
.y64{bottom:1996.830000px;}
.y6e{bottom:1997.100000px;}
.yb2{bottom:1998.435000px;}
.yab{bottom:1998.810000px;}
.y80{bottom:1999.410000px;}
.y83{bottom:2000.445000px;}
.ybc{bottom:2000.685000px;}
.y98{bottom:2000.700000px;}
.y78{bottom:2001.390000px;}
.yaf{bottom:2001.585000px;}
.y8b{bottom:2002.290000px;}
.y76{bottom:2002.365000px;}
.y89{bottom:2003.550000px;}
.y9f{bottom:2006.220000px;}
.ya7{bottom:2006.535000px;}
.y9e{bottom:2007.105000px;}
.yba{bottom:2007.465000px;}
.y72{bottom:2007.480000px;}
.y7e{bottom:2008.275000px;}
.y85{bottom:2008.590000px;}
.y88{bottom:2009.310000px;}
.yb4{bottom:2010.060000px;}
.yb7{bottom:2010.810000px;}
.yb5{bottom:2012.940000px;}
.yb9{bottom:2013.450000px;}
.y7a{bottom:2014.395000px;}
.yd2{bottom:2015.880000px;}
.y91{bottom:2015.925000px;}
.y9a{bottom:2023.020000px;}
.yef{bottom:2025.660000px;}
.y62{bottom:2025.900000px;}
.y14e{bottom:2028.390000px;}
.y14f{bottom:2071.515000px;}
.ye5{bottom:2074.680000px;}
.y150{bottom:2081.880000px;}
.y50{bottom:2092.470000px;}
.y1a2{bottom:2149.039050px;}
.yc0{bottom:2152.635000px;}
.y5a{bottom:2168.265000px;}
.y1d4{bottom:2168.805150px;}
.y1a1{bottom:2182.555050px;}
.y52{bottom:2206.410000px;}
.y1a0{bottom:2216.071050px;}
.yc2{bottom:2266.950000px;}
.y54{bottom:2320.335000px;}
.y13a{bottom:2321.287425px;}
.y1d0{bottom:2338.476600px;}
.y18e{bottom:2347.092000px;}
.y139{bottom:2350.866150px;}
.y177{bottom:2351.930100px;}
.y13b{bottom:2396.201325px;}
.y138{bottom:2396.326800px;}
.y176{bottom:2402.330100px;}
.y173{bottom:2418.945300px;}
.y3d{bottom:2423.474250px;}
.y56{bottom:2434.260000px;}
.y172{bottom:2444.145300px;}
.y175{bottom:2452.730100px;}
.y137{bottom:2453.597250px;}
.y3c{bottom:2463.380250px;}
.y136{bottom:2467.749750px;}
.y174{bottom:2503.130100px;}
.y3b{bottom:2543.192250px;}
.y58{bottom:2548.185000px;}
.y3a{bottom:2583.098250px;}
.y190{bottom:2583.959550px;}
.y18d{bottom:2605.722600px;}
.y18f{bottom:2616.359550px;}
.y19b{bottom:2654.795490px;}
.y39{bottom:2662.910250px;}
.y1a9{bottom:2683.284600px;}
.y38{bottom:2702.816250px;}
.y49{bottom:2724.524250px;}
.y48{bottom:2764.430250px;}
.y37{bottom:2782.628250px;}
.y145{bottom:2797.172550px;}
.y47{bottom:2804.336250px;}
.y36{bottom:2822.534250px;}
.y144{bottom:2830.688550px;}
.y46{bottom:2844.242250px;}
.y35{bottom:2862.440250px;}
.y143{bottom:2864.204550px;}
.y45{bottom:2884.148250px;}
.y1ab{bottom:2896.260000px;}
.y44{bottom:2924.054250px;}
.y34{bottom:2942.252250px;}
.y1aa{bottom:2948.265000px;}
.y1ad{bottom:2968.305000px;}
.y1a6{bottom:2974.065986px;}
.y33{bottom:2982.158250px;}
.y1ba{bottom:3012.600000px;}
.y1ae{bottom:3020.940000px;}
.y32{bottom:3022.064250px;}
.y1cb{bottom:3045.409272px;}
.y43{bottom:3047.336250px;}
.y31{bottom:3061.970250px;}
.y1b0{bottom:3073.575000px;}
.y42{bottom:3087.242250px;}
.y30{bottom:3101.876250px;}
.y1c9{bottom:3120.662100px;}
.y1b2{bottom:3126.210000px;}
.y41{bottom:3127.148250px;}
.y1c6{bottom:3128.719870px;}
.y1c8{bottom:3135.171000px;}
.y2f{bottom:3141.782250px;}
.y1bd{bottom:3142.036650px;}
.y1c5{bottom:3146.457000px;}
.y1c7{bottom:3149.679900px;}
.y1c4{bottom:3160.965900px;}
.y40{bottom:3167.054250px;}
.y1c3{bottom:3175.474800px;}
.y1b4{bottom:3178.845000px;}
.y2e{bottom:3181.688250px;}
.y1c0{bottom:3185.146800px;}
.y1c2{bottom:3189.983700px;}
.y1bf{bottom:3199.655700px;}
.y3f{bottom:3206.960250px;}
.y1be{bottom:3214.164600px;}
.y2d{bottom:3221.594250px;}
.y1b6{bottom:3231.480000px;}
.y1cc{bottom:3232.973077px;}
.y1c1{bottom:3246.523650px;}
.y3e{bottom:3246.866250px;}
.y1ca{bottom:3254.978242px;}
.y1a7{bottom:3282.589431px;}
.y1b8{bottom:3284.115000px;}
.y1bc{bottom:3304.555650px;}
.y1d5{bottom:3317.457300px;}
.y1cd{bottom:3348.984450px;}
.y1d6{bottom:3421.017300px;}
.y1d8{bottom:3589.896900px;}
.y1d9{bottom:3591.145800px;}
.y1d7{bottom:3741.865650px;}
.h46{height:12.675000px;}
.h4a{height:19.005000px;}
.h5a{height:19.006500px;}
.h59{height:19.008000px;}
.h48{height:19.020000px;}
.h51{height:26.640000px;}
.h44{height:27.870000px;}
.h8{height:28.500000px;}
.h7{height:28.515000px;}
.h78{height:29.802000px;}
.h6c{height:30.135000px;}
.h53{height:30.915000px;}
.h76{height:33.997500px;}
.h6b{height:34.815150px;}
.h47{height:35.424000px;}
.h83{height:35.643531px;}
.h81{height:35.691894px;}
.h82{height:38.071501px;}
.h64{height:40.795500px;}
.h7f{height:40.800000px;}
.h67{height:46.467432px;}
.h10{height:48.708462px;}
.hc{height:48.972465px;}
.h4d{height:49.065000px;}
.h5d{height:49.066500px;}
.h55{height:49.380000px;}
.h62{height:49.386000px;}
.h52{height:49.395000px;}
.h4b{height:50.175000px;}
.hf{height:52.380000px;}
.h49{height:53.136000px;}
.h4c{height:53.136117px;}
.h60{height:53.215500px;}
.h56{height:53.220000px;}
.h5c{height:53.496000px;}
.h6f{height:53.505000px;}
.h2e{height:55.260000px;}
.h70{height:57.510000px;}
.h57{height:57.990000px;}
.h5e{height:57.991500px;}
.h69{height:58.449600px;}
.h6d{height:60.113200px;}
.h71{height:60.390000px;}
.h4f{height:60.405000px;}
.h5f{height:60.649500px;}
.h54{height:61.669642px;}
.h5{height:61.992000px;}
.h29{height:62.355000px;}
.h61{height:63.487500px;}
.h73{height:63.495000px;}
.h1c{height:63.885000px;}
.h40{height:64.830000px;}
.h3e{height:65.340000px;}
.h77{height:66.420000px;}
.h3f{height:67.470000px;}
.h3d{height:68.220000px;}
.h24{height:68.970000px;}
.h22{height:69.690000px;}
.h1e{height:70.005000px;}
.h18{height:70.800000px;}
.h41{height:70.815000px;}
.h31{height:71.175000px;}
.h36{height:71.745000px;}
.h32{height:72.060000px;}
.h79{height:73.368557px;}
.h25{height:74.730000px;}
.h45{height:75.276000px;}
.h1a{height:75.915000px;}
.h26{height:75.990000px;}
.h3a{height:76.695000px;}
.h1b{height:76.890000px;}
.h2d{height:77.580000px;}
.h42{height:77.595000px;}
.h21{height:77.835000px;}
.h7c{height:78.300000px;}
.h1f{height:78.870000px;}
.h38{height:79.470000px;}
.h6{height:79.704000px;}
.h3c{height:79.845000px;}
.h16{height:81.180000px;}
.h3{height:81.335215px;}
.h11{height:81.450000px;}
.h66{height:82.432632px;}
.h4{height:82.449360px;}
.h14{height:83.100000px;}
.h2b{height:84.660000px;}
.hb{height:86.295000px;}
.h28{height:86.970000px;}
.h2{height:88.560000px;}
.h35{height:88.860000px;}
.h33{height:90.255000px;}
.h23{height:90.705000px;}
.h6e{height:91.485000px;}
.h4e{height:91.500000px;}
.h68{height:92.934864px;}
.h72{height:93.495000px;}
.h58{height:93.510000px;}
.h20{height:93.525000px;}
.h37{height:93.975000px;}
.h86{height:94.100160px;}
.h84{height:94.227840px;}
.h7b{height:94.515120px;}
.h34{height:94.665000px;}
.h2c{height:95.895000px;}
.h1{height:97.284000px;}
.h50{height:98.985000px;}
.he{height:100.260000px;}
.h2a{height:100.500000px;}
.h27{height:100.740000px;}
.h2f{height:100.770000px;}
.h17{height:102.105000px;}
.h3b{height:102.420000px;}
.h74{height:104.565000px;}
.h30{height:104.745000px;}
.h6a{height:106.272000px;}
.hd{height:108.990000px;}
.h15{height:112.725000px;}
.h13{height:113.085000px;}
.h1d{height:114.180000px;}
.h7a{height:122.256000px;}
.h19{height:122.610000px;}
.h12{height:124.050000px;}
.h39{height:132.615000px;}
.ha{height:132.840000px;}
.h43{height:142.050000px;}
.h88{height:159.408000px;}
.h65{height:163.159500px;}
.h7d{height:171.292309px;}
.h87{height:212.544000px;}
.h5b{height:231.684000px;}
.h7e{height:235.250400px;}
.h85{height:235.569600px;}
.h63{height:249.208500px;}
.h80{height:278.070000px;}
.h9{height:415.020000px;}
.h75{height:437.527500px;}
.h0{height:3888.000000px;}
.w3d{width:11.625000px;}
.w56{width:11.628000px;}
.w1{width:17.442000px;}
.w53{width:23.250000px;}
.w55{width:23.256000px;}
.w67{width:23.265000px;}
.w5f{width:26.640000px;}
.w45{width:26.955000px;}
.w51{width:26.970000px;}
.w66{width:29.413500px;}
.w64{width:33.997500px;}
.w3e{width:34.875000px;}
.w61{width:34.884000px;}
.w52{width:39.945000px;}
.w4c{width:39.960000px;}
.w6{width:40.683000px;}
.w58{width:40.796700px;}
.w63{width:40.798500px;}
.w69{width:40.800000px;}
.w24{width:42.340500px;}
.w60{width:45.060000px;}
.w1f{width:46.441500px;}
.w62{width:46.510500px;}
.w59{width:46.515000px;}
.w12{width:47.325000px;}
.w37{width:47.869500px;}
.w34{width:48.159000px;}
.w40{width:49.065000px;}
.w46{width:49.380000px;}
.w35{width:49.395000px;}
.w33{width:49.824000px;}
.w3f{width:50.175000px;}
.w1a{width:50.262000px;}
.w18{width:50.674500px;}
.w14{width:50.856000px;}
.we{width:51.318000px;}
.w38{width:51.327000px;}
.w27{width:51.532500px;}
.w2c{width:51.862500px;}
.w28{width:52.044000px;}
.w49{width:53.205000px;}
.w4f{width:53.220000px;}
.w4d{width:53.490000px;}
.w5d{width:53.505000px;}
.w1b{width:53.587500px;}
.w10{width:54.270000px;}
.w1c{width:54.313500px;}
.w30{width:54.717000px;}
.w11{width:54.832500px;}
.w23{width:55.230000px;}
.w39{width:55.237500px;}
.w17{width:55.377000px;}
.w15{width:55.972500px;}
.w2e{width:56.317500px;}
.w32{width:56.541000px;}
.wc{width:57.307500px;}
.w7{width:57.463500px;}
.w5e{width:57.510000px;}
.w4a{width:57.990000px;}
.w5a{width:58.140000px;}
.wa{width:58.411500px;}
.w21{width:59.320500px;}
.w3{width:60.261000px;}
.w42{width:60.390000px;}
.w4e{width:60.645000px;}
.w1e{width:60.649500px;}
.w2b{width:61.738500px;}
.w29{width:62.545500px;}
.w19{width:62.811000px;}
.w54{width:63.480000px;}
.w50{width:63.495000px;}
.w16{width:64.435500px;}
.w2d{width:64.692000px;}
.w2a{width:65.095500px;}
.w22{width:65.805000px;}
.w2{width:67.995000px;}
.w5{width:68.322000px;}
.w20{width:68.461500px;}
.w1d{width:68.602500px;}
.w25{width:68.617500px;}
.wd{width:69.385500px;}
.w31{width:69.567000px;}
.w26{width:70.911000px;}
.w4{width:73.362000px;}
.wb{width:75.523500px;}
.w9{width:75.729000px;}
.w13{width:76.356000px;}
.w36{width:76.365000px;}
.wf{width:81.225000px;}
.w8{width:82.057500px;}
.w2f{width:87.007500px;}
.w5c{width:91.485000px;}
.w41{width:91.500000px;}
.w3a{width:92.451000px;}
.w4b{width:93.495000px;}
.w43{width:98.985000px;}
.w44{width:100.575000px;}
.w48{width:100.590000px;}
.w68{width:103.755000px;}
.w65{width:132.028500px;}
.w57{width:156.220500px;}
.w3c{width:157.281000px;}
.w3b{width:233.434500px;}
.w47{width:291.585000px;}
.w5b{width:335.400000px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.x50{left:10.977750px;}
.x11{left:12.317400px;}
.xac{left:15.521850px;}
.x67{left:23.274000px;}
.xf{left:38.789250px;}
.xd5{left:116.245575px;}
.x7{left:119.221350px;}
.x9{left:120.922350px;}
.xcb{left:137.110050px;}
.x8{left:146.221350px;}
.xa{left:147.922350px;}
.x4b{left:151.066350px;}
.x98{left:164.285100px;}
.xca{left:169.156500px;}
.x84{left:172.236000px;}
.x85{left:182.527500px;}
.xc3{left:190.533150px;}
.xba{left:195.054900px;}
.xcf{left:201.934440px;}
.xe{left:213.243000px;}
.xc2{left:249.339150px;}
.x81{left:274.105500px;}
.x10{left:275.427000px;}
.xd{left:281.739000px;}
.x12{left:285.235500px;}
.x13{left:309.552000px;}
.x4a{left:320.853000px;}
.xbb{left:344.647980px;}
.x86{left:350.577000px;}
.x49{left:355.065000px;}
.x14{left:356.803500px;}
.xce{left:359.571360px;}
.x15{left:361.581000px;}
.x16{left:384.585000px;}
.xf0{left:393.286200px;}
.x82{left:410.817000px;}
.x17{left:422.685000px;}
.x18{left:424.882500px;}
.xbe{left:457.843500px;}
.x19{left:464.107500px;}
.xbd{left:469.470000px;}
.x1a{left:472.030500px;}
.xbc{left:492.726000px;}
.x1c{left:501.319500px;}
.x1b{left:510.439500px;}
.x83{left:542.382000px;}
.x1d{left:548.305500px;}
.x1e{left:568.548000px;}
.xbf{left:578.836500px;}
.x20{left:589.090500px;}
.x1f{left:598.186500px;}
.xeb{left:631.299300px;}
.x21{left:634.113000px;}
.x91{left:646.808550px;}
.x22{left:648.121500px;}
.x90{left:650.300550px;}
.x23{left:660.220500px;}
.xc1{left:668.685000px;}
.x24{left:690.493500px;}
.xf3{left:702.005850px;}
.xc0{left:714.570000px;}
.x25{left:719.880000px;}
.x26{left:727.884000px;}
.x27{left:759.850500px;}
.x28{left:776.226000px;}
.x29{left:796.009500px;}
.x2a{left:803.613000px;}
.x2b{left:831.861000px;}
.x2d{left:863.500500px;}
.x2c{left:867.901500px;}
.x2e{left:893.752500px;}
.x2f{left:907.660500px;}
.xc7{left:926.337150px;}
.x30{left:937.878000px;}
.x88{left:939.243900px;}
.x87{left:951.087900px;}
.xc8{left:952.675140px;}
.x32{left:964.915500px;}
.x89{left:970.119750px;}
.x31{left:971.446500px;}
.x8b{left:980.684400px;}
.x33{left:982.302000px;}
.x8d{left:992.312400px;}
.xc9{left:1000.110300px;}
.x8c{left:1006.946400px;}
.x34{left:1023.867000px;}
.xcd{left:1029.723780px;}
.xcc{left:1030.952700px;}
.x35{left:1043.608500px;}
.x36{left:1053.552000px;}
.x37{left:1074.078000px;}
.x8a{left:1078.227600px;}
.x38{left:1098.906000px;}
.x39{left:1126.573500px;}
.x3a{left:1135.656000px;}
.x3c{left:1154.656500px;}
.x3b{left:1165.293000px;}
.x3d{left:1206.124500px;}
.x3e{left:1211.344500px;}
.x8e{left:1226.951700px;}
.x3f{left:1244.218500px;}
.x40{left:1271.146500px;}
.x41{left:1286.356500px;}
.x42{left:1314.043500px;}
.x43{left:1332.840000px;}
.x44{left:1349.320500px;}
.x45{left:1355.347500px;}
.x46{left:1394.292000px;}
.x48{left:1396.590000px;}
.x47{left:1411.665000px;}
.x8f{left:1475.678400px;}
.xd6{left:1837.843500px;}
.xb3{left:1845.392550px;}
.x59{left:1848.340650px;}
.xb{left:1852.135350px;}
.x99{left:1855.268550px;}
.xb1{left:1857.164100px;}
.xb4{left:1858.958550px;}
.xf2{left:1871.077950px;}
.xc{left:1879.135350px;}
.x5a{left:1880.740650px;}
.x4c{left:1884.213150px;}
.xd1{left:1885.862070px;}
.x4e{left:1895.700000px;}
.xd0{left:1916.920230px;}
.x4d{left:1918.950000px;}
.x58{left:1921.575000px;}
.xe0{left:1923.585900px;}
.xe1{left:1930.562263px;}
.xe2{left:1932.327512px;}
.x56{left:1952.580000px;}
.x66{left:1953.630000px;}
.x57{left:1970.910000px;}
.x52{left:1974.105000px;}
.x65{left:1997.190000px;}
.x71{left:2019.495000px;}
.x70{left:2030.250000px;}
.x4f{left:2060.100000px;}
.x72{left:2073.525000px;}
.x55{left:2078.595000px;}
.xb8{left:2089.811400px;}
.xe8{left:2099.331184px;}
.xe7{left:2104.312573px;}
.x51{left:2105.565000px;}
.xd4{left:2122.820190px;}
.x5b{left:2125.020000px;}
.xb7{left:2127.191400px;}
.x68{left:2128.815000px;}
.xb9{left:2131.895400px;}
.x53{left:2140.005000px;}
.x54{left:2144.550000px;}
.x69{left:2190.330000px;}
.x6a{left:2235.150000px;}
.x6f{left:2242.995000px;}
.xe3{left:2250.651150px;}
.x5d{left:2261.175000px;}
.x5c{left:2284.425000px;}
.x61{left:2295.705000px;}
.xe9{left:2299.482705px;}
.x6b{left:2301.150000px;}
.xd3{left:2317.743660px;}
.x5f{left:2323.725000px;}
.xb6{left:2339.375550px;}
.x6c{left:2342.790000px;}
.x60{left:2348.040000px;}
.xb5{left:2366.507550px;}
.x62{left:2398.500000px;}
.x6d{left:2406.540000px;}
.x5e{left:2421.480000px;}
.x63{left:2449.095000px;}
.x6e{left:2452.110000px;}
.x64{left:2466.255000px;}
.x97{left:2476.970231px;}
.xe5{left:2491.809020px;}
.xe4{left:2494.384350px;}
.xe6{left:2517.127051px;}
.xea{left:2570.109962px;}
.xb2{left:2627.829300px;}
.xb0{left:2638.069350px;}
.x73{left:2642.820000px;}
.xde{left:2651.625000px;}
.x9c{left:2653.710000px;}
.x9b{left:2665.335000px;}
.xab{left:2671.800000px;}
.xaf{left:2677.260000px;}
.x75{left:2685.090000px;}
.x92{left:2686.185000px;}
.x95{left:2689.128000px;}
.xdd{left:2690.970000px;}
.xd2{left:2697.479940px;}
.x74{left:2699.130000px;}
.x9a{left:2700.225000px;}
.x93{left:2706.812269px;}
.xae{left:2710.035000px;}
.x94{left:2713.287038px;}
.x96{left:2715.534206px;}
.x7f{left:2721.795000px;}
.x7e{left:2728.050000px;}
.xaa{left:2739.495000px;}
.xad{left:2760.270000px;}
.x80{left:2775.825000px;}
.xd7{left:2777.685000px;}
.x9e{left:2805.105000px;}
.x76{left:2831.115000px;}
.x9d{left:2849.670000px;}
.x9f{left:2854.305000px;}
.xc5{left:2857.291200px;}
.xc4{left:2882.040600px;}
.x77{left:2892.630000px;}
.xd8{left:2894.445000px;}
.xa0{left:2897.865000px;}
.x78{left:2937.450000px;}
.xa1{left:2941.725000px;}
.xc6{left:2949.928200px;}
.xa2{left:2953.635000px;}
.x7d{left:2955.795000px;}
.xdc{left:2987.625000px;}
.x79{left:3003.450000px;}
.xd9{left:3016.260000px;}
.xa9{left:3029.340000px;}
.xa3{left:3035.760000px;}
.x7a{left:3045.090000px;}
.xa4{left:3081.330000px;}
.x7b{left:3108.840000px;}
.xa5{left:3130.575000px;}
.xda{left:3138.060000px;}
.xa6{left:3139.575000px;}
.x7c{left:3154.410000px;}
.xa7{left:3191.265000px;}
.xdf{left:3225.824250px;}
.xdb{left:3259.875000px;}
.xa8{left:3269.370000px;}
.x1{left:3567.661350px;}
.x6{left:3593.873400px;}
.x4{left:3635.414850px;}
.x3{left:3735.069090px;}
.x2{left:3739.174800px;}
.xee{left:3908.236800px;}
.xef{left:3963.298800px;}
.xed{left:3990.941850px;}
.xec{left:4086.080700px;}
.x5{left:4365.141960px;}
.xf1{left:4384.286850px;}
@media print{
.v3{vertical-align:-5.107200pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:6.346667pt;}
.v4{vertical-align:30.466667pt;}
.v1{vertical-align:31.969067pt;}
.v2{vertical-align:37.824000pt;}
.lsb{letter-spacing:-5.107200pt;}
.ls5{letter-spacing:-3.200000pt;}
.lsa{letter-spacing:-2.149467pt;}
.ls3{letter-spacing:-1.679040pt;}
.ls6{letter-spacing:-1.258000pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.839520pt;}
.ls2{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.200000pt;}
.ls9{letter-spacing:1.440000pt;}
.ls0{letter-spacing:450.430464pt;}
.ws7{word-spacing:-476.959296pt;}
.ws11{word-spacing:-61.002667pt;}
.ws0{word-spacing:-23.535680pt;}
.ws5{word-spacing:-22.752000pt;}
.ws1{word-spacing:-17.696000pt;}
.ws8{word-spacing:-16.684800pt;}
.ws3{word-spacing:-15.168033pt;}
.ws4{word-spacing:-15.168000pt;}
.wsb{word-spacing:-14.848000pt;}
.ws2{word-spacing:-12.906789pt;}
.wsa{word-spacing:-9.938200pt;}
.ws9{word-spacing:-8.680200pt;}
.wsf{word-spacing:-8.039005pt;}
.ws1a{word-spacing:-1.440000pt;}
.ws19{word-spacing:-1.200000pt;}
.ws16{word-spacing:-0.960000pt;}
.ws15{word-spacing:0.000000pt;}
.ws17{word-spacing:1.679040pt;}
.ws1b{word-spacing:2.149467pt;}
.ws18{word-spacing:3.200000pt;}
.ws12{word-spacing:172.169387pt;}
.wse{word-spacing:259.037531pt;}
.ws6{word-spacing:339.166080pt;}
.wsc{word-spacing:689.152000pt;}
.ws14{word-spacing:797.636800pt;}
.wsd{word-spacing:895.680000pt;}
.ws13{word-spacing:2729.376000pt;}
.ws10{word-spacing:10536.437333pt;}
._14{margin-left:-450.430464pt;}
._1d{margin-left:-21.251627pt;}
._4{margin-left:-11.916800pt;}
._6{margin-left:-10.923733pt;}
._8{margin-left:-9.754453pt;}
._a{margin-left:-7.732480pt;}
._9{margin-left:-6.723733pt;}
._b{margin-left:-4.468800pt;}
._1{margin-left:-3.277120pt;}
._5{margin-left:-2.184747pt;}
._0{margin-left:-1.191680pt;}
._2{width:0.993067pt;}
._3{width:1.986133pt;}
._f{width:2.909013pt;}
._12{width:4.051413pt;}
._17{width:10.546368pt;}
._d{width:31.136000pt;}
._e{width:32.405333pt;}
._c{width:33.674667pt;}
._10{width:39.424000pt;}
._7{width:50.250667pt;}
._11{width:53.088000pt;}
._15{width:81.282507pt;}
._1c{width:88.144597pt;}
._1a{width:91.719637pt;}
._1b{width:102.414965pt;}
._18{width:139.535797pt;}
._1e{width:146.358165pt;}
._16{width:167.987157pt;}
._13{width:411.196896pt;}
._1f{width:498.661333pt;}
._19{width:743.284800pt;}
._20{width:5323.261333pt;}
.fs10{font-size:41.933333pt;}
.fs8{font-size:42.666667pt;}
.fs16{font-size:42.989333pt;}
.fs17{font-size:45.855467pt;}
.fsc{font-size:55.968000pt;}
.fs6{font-size:58.667224pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:64.000140pt;}
.fse{font-size:70.400000pt;}
.fs11{font-size:72.403733pt;}
.fsb{font-size:74.278400pt;}
.fs3{font-size:74.666667pt;}
.fs12{font-size:80.000000pt;}
.fs13{font-size:89.579733pt;}
.fs7{font-size:90.666667pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:99.306667pt;}
.fs1{font-size:106.666667pt;}
.fsd{font-size:111.936000pt;}
.fs18{font-size:113.493333pt;}
.fs0{font-size:117.333333pt;}
.fsf{font-size:128.000000pt;}
.fs5{font-size:160.000000pt;}
.fs1a{font-size:192.000000pt;}
.fs14{font-size:206.314133pt;}
.fs19{font-size:256.000000pt;}
.fs15{font-size:283.733333pt;}
.y168{bottom:-0.006267pt;}
.y5b{bottom:-0.001600pt;}
.y126{bottom:-0.000533pt;}
.y0{bottom:0.000000pt;}
.y113{bottom:0.000133pt;}
.y102{bottom:0.000400pt;}
.y1bb{bottom:0.001867pt;}
.yb8{bottom:1.709467pt;}
.yae{bottom:1.709733pt;}
.y63{bottom:1.710133pt;}
.y92{bottom:1.710267pt;}
.yb3{bottom:1.710400pt;}
.y7b{bottom:1.710533pt;}
.y77{bottom:1.710800pt;}
.y8a{bottom:1.710933pt;}
.y6d{bottom:1.711067pt;}
.ya4{bottom:1.711600pt;}
.ybb{bottom:1.711867pt;}
.ya8{bottom:1.712133pt;}
.y8c{bottom:1.712400pt;}
.ybf{bottom:1.712667pt;}
.ya0{bottom:1.713200pt;}
.y79{bottom:1.713333pt;}
.y65{bottom:1.714000pt;}
.y97{bottom:1.714267pt;}
.y7f{bottom:1.714667pt;}
.y86{bottom:1.715200pt;}
.y5d{bottom:1.715600pt;}
.y6f{bottom:1.715733pt;}
.y99{bottom:1.717067pt;}
.y94{bottom:1.717333pt;}
.yb0{bottom:1.717467pt;}
.ybd{bottom:1.717600pt;}
.ya2{bottom:1.717733pt;}
.y67{bottom:1.718000pt;}
.y90{bottom:1.718133pt;}
.y5f{bottom:1.718667pt;}
.y75{bottom:1.719867pt;}
.y6b{bottom:1.720400pt;}
.y7d{bottom:1.720800pt;}
.y71{bottom:1.721333pt;}
.yaa{bottom:1.722000pt;}
.yb6{bottom:1.722133pt;}
.ya6{bottom:1.722267pt;}
.y9d{bottom:1.729867pt;}
.y81{bottom:1.732800pt;}
.yc3{bottom:2.074000pt;}
.y73{bottom:2.434800pt;}
.y69{bottom:2.437200pt;}
.y8e{bottom:2.437600pt;}
.y84{bottom:2.439333pt;}
.yac{bottom:2.444000pt;}
.y61{bottom:2.455467pt;}
.yea{bottom:3.099333pt;}
.yd1{bottom:3.100267pt;}
.ycd{bottom:3.100933pt;}
.yfb{bottom:3.103600pt;}
.y118{bottom:3.103733pt;}
.y11c{bottom:3.103867pt;}
.yf9{bottom:3.104000pt;}
.y17e{bottom:3.104133pt;}
.y17b{bottom:3.104267pt;}
.y11a{bottom:3.104400pt;}
.yfd{bottom:3.104533pt;}
.y115{bottom:3.104667pt;}
.yec{bottom:3.104800pt;}
.y1b1{bottom:3.105200pt;}
.yd3{bottom:3.105333pt;}
.y1af{bottom:3.105467pt;}
.ye8{bottom:3.106000pt;}
.y1b3{bottom:3.106267pt;}
.y149{bottom:3.106400pt;}
.y1b9{bottom:3.106933pt;}
.y1b7{bottom:3.107200pt;}
.y1b5{bottom:3.107333pt;}
.y147{bottom:3.107733pt;}
.ycf{bottom:3.108533pt;}
.ycb{bottom:3.109200pt;}
.yee{bottom:3.111467pt;}
.y53{bottom:4.651600pt;}
.y55{bottom:4.654533pt;}
.y57{bottom:4.657333pt;}
.y59{bottom:4.660267pt;}
.y51{bottom:4.662133pt;}
.yc1{bottom:5.238667pt;}
.yf1{bottom:6.984667pt;}
.y160{bottom:6.985733pt;}
.y16a{bottom:6.986267pt;}
.yd7{bottom:6.986667pt;}
.y164{bottom:6.986933pt;}
.y15a{bottom:6.987200pt;}
.ydd{bottom:6.988133pt;}
.y162{bottom:6.988800pt;}
.yf5{bottom:6.988933pt;}
.y155{bottom:6.989333pt;}
.yd5{bottom:6.989867pt;}
.y153{bottom:6.991333pt;}
.y104{bottom:6.991733pt;}
.y106{bottom:6.992000pt;}
.y10b{bottom:6.992267pt;}
.y10d{bottom:6.992400pt;}
.y108{bottom:6.992933pt;}
.yf3{bottom:6.993067pt;}
.y15e{bottom:6.994400pt;}
.y157{bottom:6.995067pt;}
.ye1{bottom:6.996933pt;}
.ye2{bottom:6.997200pt;}
.yf7{bottom:6.997333pt;}
.ydb{bottom:6.997867pt;}
.y15c{bottom:6.998000pt;}
.yd9{bottom:6.999067pt;}
.y189{bottom:7.272533pt;}
.ydf{bottom:9.882000pt;}
.y110{bottom:9.888133pt;}
.y151{bottom:11.187333pt;}
.ye6{bottom:11.470800pt;}
.y187{bottom:12.980800pt;}
.y124{bottom:15.575467pt;}
.y1ac{bottom:15.579200pt;}
.y142{bottom:89.201200pt;}
.y2c{bottom:90.091200pt;}
.y194{bottom:92.350533pt;}
.y4f{bottom:95.791333pt;}
.y141{bottom:118.993200pt;}
.y193{bottom:122.142533pt;}
.y2b{bottom:125.557867pt;}
.y4e{bottom:131.263333pt;}
.y140{bottom:148.785200pt;}
.y192{bottom:151.934533pt;}
.y4d{bottom:166.735333pt;}
.y2a{bottom:171.664533pt;}
.y191{bottom:181.726533pt;}
.y186{bottom:202.373333pt;}
.y1a8{bottom:203.227484pt;}
.y29{bottom:207.131200pt;}
.y185{bottom:213.020000pt;}
.y17a{bottom:231.938667pt;}
.y28{bottom:253.237867pt;}
.y12c{bottom:266.656267pt;}
.y128{bottom:269.978000pt;}
.y17c{bottom:270.756000pt;}
.y4c{bottom:276.679333pt;}
.y27{bottom:288.704533pt;}
.y127{bottom:307.306000pt;}
.y12b{bottom:309.651067pt;}
.y131{bottom:309.652400pt;}
.y17d{bottom:309.668000pt;}
.y4b{bottom:312.151333pt;}
.y18c{bottom:326.796933pt;}
.y12f{bottom:327.321467pt;}
.y129{bottom:330.812533pt;}
.y26{bottom:334.811200pt;}
.y4a{bottom:347.623333pt;}
.y17f{bottom:348.485333pt;}
.y25{bottom:380.917867pt;}
.y180{bottom:387.397333pt;}
.y18b{bottom:403.001333pt;}
.y1a5{bottom:403.816400pt;}
.y130{bottom:413.065467pt;}
.y24{bottom:416.384533pt;}
.y181{bottom:426.308000pt;}
.y12a{bottom:450.241333pt;}
.y23{bottom:462.491200pt;}
.y182{bottom:465.126667pt;}
.y1d2{bottom:470.161600pt;}
.y22{bottom:497.957867pt;}
.y12e{bottom:500.937467pt;}
.y183{bottom:504.037333pt;}
.y188{bottom:540.926667pt;}
.y184{bottom:542.856000pt;}
.y21{bottom:544.064533pt;}
.yc9{bottom:578.487600pt;}
.y20{bottom:579.531200pt;}
.y12d{bottom:589.465467pt;}
.yc8{bottom:608.279600pt;}
.y1ce{bottom:619.760400pt;}
.yc7{bottom:638.071600pt;}
.y18a{bottom:645.497333pt;}
.y198{bottom:670.066400pt;}
.y19a{bottom:678.730133pt;}
.y10f{bottom:683.048000pt;}
.y197{bottom:704.760400pt;}
.y199{bottom:708.522133pt;}
.y17{bottom:723.086347pt;}
.y10e{bottom:727.973333pt;}
.y10a{bottom:730.497333pt;}
.y107{bottom:732.861333pt;}
.y103{bottom:736.854667pt;}
.y10c{bottom:737.104000pt;}
.y109{bottom:739.806667pt;}
.y111{bottom:740.510667pt;}
.y105{bottom:740.792000pt;}
.y1f{bottom:765.589600pt;}
.yc6{bottom:775.479867pt;}
.y16{bottom:779.840107pt;}
.y13f{bottom:783.713867pt;}
.yf8{bottom:786.340000pt;}
.yf{bottom:791.012107pt;}
.yd{bottom:803.400613pt;}
.yc5{bottom:805.271867pt;}
.y13e{bottom:813.505867pt;}
.y1e{bottom:822.343360pt;}
.ye{bottom:833.217440pt;}
.yc4{bottom:835.063867pt;}
.y15{bottom:836.593867pt;}
.y112{bottom:842.828000pt;}
.y13d{bottom:843.297867pt;}
.yc{bottom:845.605947pt;}
.yfa{bottom:852.246667pt;}
.y114{bottom:852.698667pt;}
.y101{bottom:869.093333pt;}
.y13c{bottom:873.089867pt;}
.y123{bottom:875.001333pt;}
.y1d{bottom:879.097120pt;}
.y14{bottom:893.347627pt;}
.yb{bottom:901.143200pt;}
.y11d{bottom:911.972000pt;}
.yfc{bottom:918.152000pt;}
.y116{bottom:919.060000pt;}
.y1c{bottom:935.850880pt;}
.y13{bottom:950.101387pt;}
.y1b{bottom:971.328187pt;}
.y11e{bottom:978.342667pt;}
.yfe{bottom:984.060000pt;}
.y132{bottom:984.503867pt;}
.y117{bottom:985.406667pt;}
.y133{bottom:1004.972667pt;}
.y12{bottom:1006.855147pt;}
.y1a{bottom:1028.081947pt;}
.y11f{bottom:1036.814667pt;}
.y125{bottom:1042.853333pt;}
.yff{bottom:1049.953333pt;}
.y119{bottom:1051.765333pt;}
.y11{bottom:1063.608907pt;}
.y19{bottom:1084.835707pt;}
.y120{bottom:1095.289333pt;}
.y100{bottom:1115.860000pt;}
.y11b{bottom:1118.126667pt;}
.y18{bottom:1120.313013pt;}
.y10{bottom:1120.362667pt;}
.y121{bottom:1153.753333pt;}
.y1d1{bottom:1179.565867pt;}
.y1a4{bottom:1187.999547pt;}
.y122{bottom:1212.226667pt;}
.y1a3{bottom:1217.791547pt;}
.y171{bottom:1263.597333pt;}
.y135{bottom:1269.823600pt;}
.y170{bottom:1293.389333pt;}
.y196{bottom:1296.920533pt;}
.ya{bottom:1303.702267pt;}
.y134{bottom:1306.463600pt;}
.y16f{bottom:1323.181333pt;}
.y16e{bottom:1352.973333pt;}
.y9{bottom:1357.835600pt;}
.y179{bottom:1371.477467pt;}
.y195{bottom:1382.220000pt;}
.y16d{bottom:1382.765333pt;}
.y8{bottom:1393.302267pt;}
.y178{bottom:1401.269467pt;}
.y16c{bottom:1412.557333pt;}
.y7{bottom:1428.768933pt;}
.yde{bottom:1443.480000pt;}
.y166{bottom:1463.480000pt;}
.ydc{bottom:1463.573333pt;}
.ye3{bottom:1466.536400pt;}
.y16b{bottom:1468.600933pt;}
.yd8{bottom:1470.226667pt;}
.yf6{bottom:1472.440000pt;}
.y1d3{bottom:1476.705600pt;}
.y6{bottom:1482.902267pt;}
.y161{bottom:1488.893333pt;}
.y163{bottom:1493.773333pt;}
.y159{bottom:1495.560000pt;}
.y167{bottom:1495.600000pt;}
.yda{bottom:1497.866667pt;}
.yf4{bottom:1500.013333pt;}
.yf2{bottom:1504.253333pt;}
.yd4{bottom:1506.960000pt;}
.ye0{bottom:1507.653333pt;}
.yf0{bottom:1507.666667pt;}
.yd6{bottom:1507.946667pt;}
.y5{bottom:1518.368933pt;}
.y165{bottom:1520.440000pt;}
.y15f{bottom:1523.200000pt;}
.y158{bottom:1525.333333pt;}
.y15d{bottom:1525.760000pt;}
.y15b{bottom:1529.320000pt;}
.y156{bottom:1529.573333pt;}
.y152{bottom:1532.280000pt;}
.y169{bottom:1532.986667pt;}
.y154{bottom:1533.266667pt;}
.ye4{bottom:1539.784400pt;}
.yca{bottom:1548.506667pt;}
.ye7{bottom:1549.253333pt;}
.y4{bottom:1553.835600pt;}
.y146{bottom:1573.013333pt;}
.y3{bottom:1589.302267pt;}
.y19f{bottom:1591.085307pt;}
.ycc{bottom:1609.360000pt;}
.y148{bottom:1611.346667pt;}
.ye9{bottom:1612.093333pt;}
.y19e{bottom:1620.877307pt;}
.y2{bottom:1643.435600pt;}
.y14a{bottom:1649.680000pt;}
.y19d{bottom:1650.669307pt;}
.yce{bottom:1670.200000pt;}
.yeb{bottom:1674.920000pt;}
.y19c{bottom:1680.461307pt;}
.y14b{bottom:1688.013333pt;}
.y1{bottom:1697.569067pt;}
.ybe{bottom:1721.093333pt;}
.y14c{bottom:1726.346667pt;}
.yad{bottom:1729.480000pt;}
.yd0{bottom:1731.053333pt;}
.y66{bottom:1737.093333pt;}
.yed{bottom:1737.746667pt;}
.y74{bottom:1738.373333pt;}
.y7c{bottom:1745.866667pt;}
.y68{bottom:1746.840000pt;}
.y6c{bottom:1747.160000pt;}
.y5e{bottom:1750.480000pt;}
.y9c{bottom:1754.253333pt;}
.yb1{bottom:1756.320000pt;}
.y70{bottom:1756.600000pt;}
.y9b{bottom:1757.786667pt;}
.y8d{bottom:1757.813333pt;}
.y93{bottom:1758.026667pt;}
.y60{bottom:1758.240000pt;}
.y96{bottom:1762.120000pt;}
.ya3{bottom:1763.213333pt;}
.ya9{bottom:1763.826667pt;}
.y82{bottom:1764.226667pt;}
.y14d{bottom:1764.680000pt;}
.y87{bottom:1766.733333pt;}
.ya1{bottom:1767.133333pt;}
.ya5{bottom:1768.373333pt;}
.y8f{bottom:1770.053333pt;}
.y1cf{bottom:1770.449200pt;}
.y5c{bottom:1770.653333pt;}
.y95{bottom:1772.106667pt;}
.y6a{bottom:1773.493333pt;}
.y64{bottom:1774.960000pt;}
.y6e{bottom:1775.200000pt;}
.yb2{bottom:1776.386667pt;}
.yab{bottom:1776.720000pt;}
.y80{bottom:1777.253333pt;}
.y83{bottom:1778.173333pt;}
.ybc{bottom:1778.386667pt;}
.y98{bottom:1778.400000pt;}
.y78{bottom:1779.013333pt;}
.yaf{bottom:1779.186667pt;}
.y8b{bottom:1779.813333pt;}
.y76{bottom:1779.880000pt;}
.y89{bottom:1780.933333pt;}
.y9f{bottom:1783.306667pt;}
.ya7{bottom:1783.586667pt;}
.y9e{bottom:1784.093333pt;}
.yba{bottom:1784.413333pt;}
.y72{bottom:1784.426667pt;}
.y7e{bottom:1785.133333pt;}
.y85{bottom:1785.413333pt;}
.y88{bottom:1786.053333pt;}
.yb4{bottom:1786.720000pt;}
.yb7{bottom:1787.386667pt;}
.yb5{bottom:1789.280000pt;}
.yb9{bottom:1789.733333pt;}
.y7a{bottom:1790.573333pt;}
.yd2{bottom:1791.893333pt;}
.y91{bottom:1791.933333pt;}
.y9a{bottom:1798.240000pt;}
.yef{bottom:1800.586667pt;}
.y62{bottom:1800.800000pt;}
.y14e{bottom:1803.013333pt;}
.y14f{bottom:1841.346667pt;}
.ye5{bottom:1844.160000pt;}
.y150{bottom:1850.560000pt;}
.y50{bottom:1859.973333pt;}
.y1a2{bottom:1910.256933pt;}
.yc0{bottom:1913.453333pt;}
.y5a{bottom:1927.346667pt;}
.y1d4{bottom:1927.826800pt;}
.y1a1{bottom:1940.048933pt;}
.y52{bottom:1961.253333pt;}
.y1a0{bottom:1969.840933pt;}
.yc2{bottom:2015.066667pt;}
.y54{bottom:2062.520000pt;}
.y13a{bottom:2063.366600pt;}
.y1d0{bottom:2078.645867pt;}
.y18e{bottom:2086.304000pt;}
.y139{bottom:2089.658800pt;}
.y177{bottom:2090.604533pt;}
.y13b{bottom:2129.956733pt;}
.y138{bottom:2130.068267pt;}
.y176{bottom:2135.404533pt;}
.y173{bottom:2150.173600pt;}
.y3d{bottom:2154.199333pt;}
.y56{bottom:2163.786667pt;}
.y172{bottom:2172.573600pt;}
.y175{bottom:2180.204533pt;}
.y137{bottom:2180.975333pt;}
.y3c{bottom:2189.671333pt;}
.y136{bottom:2193.555333pt;}
.y174{bottom:2225.004533pt;}
.y3b{bottom:2260.615333pt;}
.y58{bottom:2265.053333pt;}
.y3a{bottom:2296.087333pt;}
.y190{bottom:2296.852933pt;}
.y18d{bottom:2316.197867pt;}
.y18f{bottom:2325.652933pt;}
.y19b{bottom:2359.818213pt;}
.y39{bottom:2367.031333pt;}
.y1a9{bottom:2385.141867pt;}
.y38{bottom:2402.503333pt;}
.y49{bottom:2421.799333pt;}
.y48{bottom:2457.271333pt;}
.y37{bottom:2473.447333pt;}
.y145{bottom:2486.375600pt;}
.y47{bottom:2492.743333pt;}
.y36{bottom:2508.919333pt;}
.y144{bottom:2516.167600pt;}
.y46{bottom:2528.215333pt;}
.y35{bottom:2544.391333pt;}
.y143{bottom:2545.959600pt;}
.y45{bottom:2563.687333pt;}
.y1ab{bottom:2574.453333pt;}
.y44{bottom:2599.159333pt;}
.y34{bottom:2615.335333pt;}
.y1aa{bottom:2620.680000pt;}
.y1ad{bottom:2638.493333pt;}
.y1a6{bottom:2643.614210pt;}
.y33{bottom:2650.807333pt;}
.y1ba{bottom:2677.866667pt;}
.y1ae{bottom:2685.280000pt;}
.y32{bottom:2686.279333pt;}
.y1cb{bottom:2707.030464pt;}
.y43{bottom:2708.743333pt;}
.y31{bottom:2721.751333pt;}
.y1b0{bottom:2732.066667pt;}
.y42{bottom:2744.215333pt;}
.y30{bottom:2757.223333pt;}
.y1c9{bottom:2773.921867pt;}
.y1b2{bottom:2778.853333pt;}
.y41{bottom:2779.687333pt;}
.y1c6{bottom:2781.084329pt;}
.y1c8{bottom:2786.818667pt;}
.y2f{bottom:2792.695333pt;}
.y1bd{bottom:2792.921467pt;}
.y1c5{bottom:2796.850667pt;}
.y1c7{bottom:2799.715467pt;}
.y1c4{bottom:2809.747467pt;}
.y40{bottom:2815.159333pt;}
.y1c3{bottom:2822.644267pt;}
.y1b4{bottom:2825.640000pt;}
.y2e{bottom:2828.167333pt;}
.y1c0{bottom:2831.241600pt;}
.y1c2{bottom:2835.541067pt;}
.y1bf{bottom:2844.138400pt;}
.y3f{bottom:2850.631333pt;}
.y1be{bottom:2857.035200pt;}
.y2d{bottom:2863.639333pt;}
.y1b6{bottom:2872.426667pt;}
.y1cc{bottom:2873.753846pt;}
.y1c1{bottom:2885.798800pt;}
.y3e{bottom:2886.103333pt;}
.y1ca{bottom:2893.313993pt;}
.y1a7{bottom:2917.857272pt;}
.y1b8{bottom:2919.213333pt;}
.y1bc{bottom:2937.382800pt;}
.y1d5{bottom:2948.850933pt;}
.y1cd{bottom:2976.875067pt;}
.y1d6{bottom:3040.904267pt;}
.y1d8{bottom:3191.019467pt;}
.y1d9{bottom:3192.129600pt;}
.y1d7{bottom:3326.102800pt;}
.h46{height:11.266667pt;}
.h4a{height:16.893333pt;}
.h5a{height:16.894667pt;}
.h59{height:16.896000pt;}
.h48{height:16.906667pt;}
.h51{height:23.680000pt;}
.h44{height:24.773333pt;}
.h8{height:25.333333pt;}
.h7{height:25.346667pt;}
.h78{height:26.490667pt;}
.h6c{height:26.786667pt;}
.h53{height:27.480000pt;}
.h76{height:30.220000pt;}
.h6b{height:30.946800pt;}
.h47{height:31.488000pt;}
.h83{height:31.683139pt;}
.h81{height:31.726128pt;}
.h82{height:33.841334pt;}
.h64{height:36.262667pt;}
.h7f{height:36.266667pt;}
.h67{height:41.304384pt;}
.h10{height:43.296411pt;}
.hc{height:43.531080pt;}
.h4d{height:43.613333pt;}
.h5d{height:43.614667pt;}
.h55{height:43.893333pt;}
.h62{height:43.898667pt;}
.h52{height:43.906667pt;}
.h4b{height:44.600000pt;}
.hf{height:46.560000pt;}
.h49{height:47.232000pt;}
.h4c{height:47.232104pt;}
.h60{height:47.302667pt;}
.h56{height:47.306667pt;}
.h5c{height:47.552000pt;}
.h6f{height:47.560000pt;}
.h2e{height:49.120000pt;}
.h70{height:51.120000pt;}
.h57{height:51.546667pt;}
.h5e{height:51.548000pt;}
.h69{height:51.955200pt;}
.h6d{height:53.433955pt;}
.h71{height:53.680000pt;}
.h4f{height:53.693333pt;}
.h5f{height:53.910667pt;}
.h54{height:54.817459pt;}
.h5{height:55.104000pt;}
.h29{height:55.426667pt;}
.h61{height:56.433333pt;}
.h73{height:56.440000pt;}
.h1c{height:56.786667pt;}
.h40{height:57.626667pt;}
.h3e{height:58.080000pt;}
.h77{height:59.040000pt;}
.h3f{height:59.973333pt;}
.h3d{height:60.640000pt;}
.h24{height:61.306667pt;}
.h22{height:61.946667pt;}
.h1e{height:62.226667pt;}
.h18{height:62.933333pt;}
.h41{height:62.946667pt;}
.h31{height:63.266667pt;}
.h36{height:63.773333pt;}
.h32{height:64.053333pt;}
.h79{height:65.216495pt;}
.h25{height:66.426667pt;}
.h45{height:66.912000pt;}
.h1a{height:67.480000pt;}
.h26{height:67.546667pt;}
.h3a{height:68.173333pt;}
.h1b{height:68.346667pt;}
.h2d{height:68.960000pt;}
.h42{height:68.973333pt;}
.h21{height:69.186667pt;}
.h7c{height:69.600000pt;}
.h1f{height:70.106667pt;}
.h38{height:70.640000pt;}
.h6{height:70.848000pt;}
.h3c{height:70.973333pt;}
.h16{height:72.160000pt;}
.h3{height:72.297969pt;}
.h11{height:72.400000pt;}
.h66{height:73.273451pt;}
.h4{height:73.288320pt;}
.h14{height:73.866667pt;}
.h2b{height:75.253333pt;}
.hb{height:76.706667pt;}
.h28{height:77.306667pt;}
.h2{height:78.720000pt;}
.h35{height:78.986667pt;}
.h33{height:80.226667pt;}
.h23{height:80.626667pt;}
.h6e{height:81.320000pt;}
.h4e{height:81.333333pt;}
.h68{height:82.608768pt;}
.h72{height:83.106667pt;}
.h58{height:83.120000pt;}
.h20{height:83.133333pt;}
.h37{height:83.533333pt;}
.h86{height:83.644587pt;}
.h84{height:83.758080pt;}
.h7b{height:84.013440pt;}
.h34{height:84.146667pt;}
.h2c{height:85.240000pt;}
.h1{height:86.474667pt;}
.h50{height:87.986667pt;}
.he{height:89.120000pt;}
.h2a{height:89.333333pt;}
.h27{height:89.546667pt;}
.h2f{height:89.573333pt;}
.h17{height:90.760000pt;}
.h3b{height:91.040000pt;}
.h74{height:92.946667pt;}
.h30{height:93.106667pt;}
.h6a{height:94.464000pt;}
.hd{height:96.880000pt;}
.h15{height:100.200000pt;}
.h13{height:100.520000pt;}
.h1d{height:101.493333pt;}
.h7a{height:108.672000pt;}
.h19{height:108.986667pt;}
.h12{height:110.266667pt;}
.h39{height:117.880000pt;}
.ha{height:118.080000pt;}
.h43{height:126.266667pt;}
.h88{height:141.696000pt;}
.h65{height:145.030667pt;}
.h7d{height:152.259830pt;}
.h87{height:188.928000pt;}
.h5b{height:205.941333pt;}
.h7e{height:209.111467pt;}
.h85{height:209.395200pt;}
.h63{height:221.518667pt;}
.h80{height:247.173333pt;}
.h9{height:368.906667pt;}
.h75{height:388.913333pt;}
.h0{height:3456.000000pt;}
.w3d{width:10.333333pt;}
.w56{width:10.336000pt;}
.w1{width:15.504000pt;}
.w53{width:20.666667pt;}
.w55{width:20.672000pt;}
.w67{width:20.680000pt;}
.w5f{width:23.680000pt;}
.w45{width:23.960000pt;}
.w51{width:23.973333pt;}
.w66{width:26.145333pt;}
.w64{width:30.220000pt;}
.w3e{width:31.000000pt;}
.w61{width:31.008000pt;}
.w52{width:35.506667pt;}
.w4c{width:35.520000pt;}
.w6{width:36.162667pt;}
.w58{width:36.263733pt;}
.w63{width:36.265333pt;}
.w69{width:36.266667pt;}
.w24{width:37.636000pt;}
.w60{width:40.053333pt;}
.w1f{width:41.281333pt;}
.w62{width:41.342667pt;}
.w59{width:41.346667pt;}
.w12{width:42.066667pt;}
.w37{width:42.550667pt;}
.w34{width:42.808000pt;}
.w40{width:43.613333pt;}
.w46{width:43.893333pt;}
.w35{width:43.906667pt;}
.w33{width:44.288000pt;}
.w3f{width:44.600000pt;}
.w1a{width:44.677333pt;}
.w18{width:45.044000pt;}
.w14{width:45.205333pt;}
.we{width:45.616000pt;}
.w38{width:45.624000pt;}
.w27{width:45.806667pt;}
.w2c{width:46.100000pt;}
.w28{width:46.261333pt;}
.w49{width:47.293333pt;}
.w4f{width:47.306667pt;}
.w4d{width:47.546667pt;}
.w5d{width:47.560000pt;}
.w1b{width:47.633333pt;}
.w10{width:48.240000pt;}
.w1c{width:48.278667pt;}
.w30{width:48.637333pt;}
.w11{width:48.740000pt;}
.w23{width:49.093333pt;}
.w39{width:49.100000pt;}
.w17{width:49.224000pt;}
.w15{width:49.753333pt;}
.w2e{width:50.060000pt;}
.w32{width:50.258667pt;}
.wc{width:50.940000pt;}
.w7{width:51.078667pt;}
.w5e{width:51.120000pt;}
.w4a{width:51.546667pt;}
.w5a{width:51.680000pt;}
.wa{width:51.921333pt;}
.w21{width:52.729333pt;}
.w3{width:53.565333pt;}
.w42{width:53.680000pt;}
.w4e{width:53.906667pt;}
.w1e{width:53.910667pt;}
.w2b{width:54.878667pt;}
.w29{width:55.596000pt;}
.w19{width:55.832000pt;}
.w54{width:56.426667pt;}
.w50{width:56.440000pt;}
.w16{width:57.276000pt;}
.w2d{width:57.504000pt;}
.w2a{width:57.862667pt;}
.w22{width:58.493333pt;}
.w2{width:60.440000pt;}
.w5{width:60.730667pt;}
.w20{width:60.854667pt;}
.w1d{width:60.980000pt;}
.w25{width:60.993333pt;}
.wd{width:61.676000pt;}
.w31{width:61.837333pt;}
.w26{width:63.032000pt;}
.w4{width:65.210667pt;}
.wb{width:67.132000pt;}
.w9{width:67.314667pt;}
.w13{width:67.872000pt;}
.w36{width:67.880000pt;}
.wf{width:72.200000pt;}
.w8{width:72.940000pt;}
.w2f{width:77.340000pt;}
.w5c{width:81.320000pt;}
.w41{width:81.333333pt;}
.w3a{width:82.178667pt;}
.w4b{width:83.106667pt;}
.w43{width:87.986667pt;}
.w44{width:89.400000pt;}
.w48{width:89.413333pt;}
.w68{width:92.226667pt;}
.w65{width:117.358667pt;}
.w57{width:138.862667pt;}
.w3c{width:139.805333pt;}
.w3b{width:207.497333pt;}
.w47{width:259.186667pt;}
.w5b{width:298.133333pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.x50{left:9.758000pt;}
.x11{left:10.948800pt;}
.xac{left:13.797200pt;}
.x67{left:20.688000pt;}
.xf{left:34.479333pt;}
.xd5{left:103.329400pt;}
.x7{left:105.974533pt;}
.x9{left:107.486533pt;}
.xcb{left:121.875600pt;}
.x8{left:129.974533pt;}
.xa{left:131.486533pt;}
.x4b{left:134.281200pt;}
.x98{left:146.031200pt;}
.xca{left:150.361333pt;}
.x84{left:153.098667pt;}
.x85{left:162.246667pt;}
.xc3{left:169.362800pt;}
.xba{left:173.382133pt;}
.xcf{left:179.497280pt;}
.xe{left:189.549333pt;}
.xc2{left:221.634800pt;}
.x81{left:243.649333pt;}
.x10{left:244.824000pt;}
.xd{left:250.434667pt;}
.x12{left:253.542667pt;}
.x13{left:275.157333pt;}
.x4a{left:285.202667pt;}
.xbb{left:306.353760pt;}
.x86{left:311.624000pt;}
.x49{left:315.613333pt;}
.x14{left:317.158667pt;}
.xce{left:319.618987pt;}
.x15{left:321.405333pt;}
.x16{left:341.853333pt;}
.xf0{left:349.587733pt;}
.x82{left:365.170667pt;}
.x17{left:375.720000pt;}
.x18{left:377.673333pt;}
.xbe{left:406.972000pt;}
.x19{left:412.540000pt;}
.xbd{left:417.306667pt;}
.x1a{left:419.582667pt;}
.xbc{left:437.978667pt;}
.x1c{left:445.617333pt;}
.x1b{left:453.724000pt;}
.x83{left:482.117333pt;}
.x1d{left:487.382667pt;}
.x1e{left:505.376000pt;}
.xbf{left:514.521333pt;}
.x20{left:523.636000pt;}
.x1f{left:531.721333pt;}
.xeb{left:561.154933pt;}
.x21{left:563.656000pt;}
.x91{left:574.940933pt;}
.x22{left:576.108000pt;}
.x90{left:578.044933pt;}
.x23{left:586.862667pt;}
.xc1{left:594.386667pt;}
.x24{left:613.772000pt;}
.xf3{left:624.005200pt;}
.xc0{left:635.173333pt;}
.x25{left:639.893333pt;}
.x26{left:647.008000pt;}
.x27{left:675.422667pt;}
.x28{left:689.978667pt;}
.x29{left:707.564000pt;}
.x2a{left:714.322667pt;}
.x2b{left:739.432000pt;}
.x2d{left:767.556000pt;}
.x2c{left:771.468000pt;}
.x2e{left:794.446667pt;}
.x2f{left:806.809333pt;}
.xc7{left:823.410800pt;}
.x30{left:833.669333pt;}
.x88{left:834.883467pt;}
.x87{left:845.411467pt;}
.xc8{left:846.822347pt;}
.x32{left:857.702667pt;}
.x89{left:862.328667pt;}
.x31{left:863.508000pt;}
.x8b{left:871.719467pt;}
.x33{left:873.157333pt;}
.x8d{left:882.055467pt;}
.xc9{left:888.986933pt;}
.x8c{left:895.063467pt;}
.x34{left:910.104000pt;}
.xcd{left:915.310027pt;}
.xcc{left:916.402400pt;}
.x35{left:927.652000pt;}
.x36{left:936.490667pt;}
.x37{left:954.736000pt;}
.x8a{left:958.424533pt;}
.x38{left:976.805333pt;}
.x39{left:1001.398667pt;}
.x3a{left:1009.472000pt;}
.x3c{left:1026.361333pt;}
.x3b{left:1035.816000pt;}
.x3d{left:1072.110667pt;}
.x3e{left:1076.750667pt;}
.x8e{left:1090.623733pt;}
.x3f{left:1105.972000pt;}
.x40{left:1129.908000pt;}
.x41{left:1143.428000pt;}
.x42{left:1168.038667pt;}
.x43{left:1184.746667pt;}
.x44{left:1199.396000pt;}
.x45{left:1204.753333pt;}
.x46{left:1239.370667pt;}
.x48{left:1241.413333pt;}
.x47{left:1254.813333pt;}
.x8f{left:1311.714133pt;}
.xd6{left:1633.638667pt;}
.xb3{left:1640.348933pt;}
.x59{left:1642.969467pt;}
.xb{left:1646.342533pt;}
.x99{left:1649.127600pt;}
.xb1{left:1650.812533pt;}
.xb4{left:1652.407600pt;}
.xf2{left:1663.180400pt;}
.xc{left:1670.342533pt;}
.x5a{left:1671.769467pt;}
.x4c{left:1674.856133pt;}
.xd1{left:1676.321840pt;}
.x4e{left:1685.066667pt;}
.xd0{left:1703.929093pt;}
.x4d{left:1705.733333pt;}
.x58{left:1708.066667pt;}
.xe0{left:1709.854133pt;}
.xe1{left:1716.055345pt;}
.xe2{left:1717.624455pt;}
.x56{left:1735.626667pt;}
.x66{left:1736.560000pt;}
.x57{left:1751.920000pt;}
.x52{left:1754.760000pt;}
.x65{left:1775.280000pt;}
.x71{left:1795.106667pt;}
.x70{left:1804.666667pt;}
.x4f{left:1831.200000pt;}
.x72{left:1843.133333pt;}
.x55{left:1847.640000pt;}
.xb8{left:1857.610133pt;}
.xe8{left:1866.072164pt;}
.xe7{left:1870.500065pt;}
.x51{left:1871.613333pt;}
.xd4{left:1886.951280pt;}
.x5b{left:1888.906667pt;}
.xb7{left:1890.836800pt;}
.x68{left:1892.280000pt;}
.xb9{left:1895.018133pt;}
.x53{left:1902.226667pt;}
.x54{left:1906.266667pt;}
.x69{left:1946.960000pt;}
.x6a{left:1986.800000pt;}
.x6f{left:1993.773333pt;}
.xe3{left:2000.578800pt;}
.x5d{left:2009.933333pt;}
.x5c{left:2030.600000pt;}
.x61{left:2040.626667pt;}
.xe9{left:2043.984627pt;}
.x6b{left:2045.466667pt;}
.xd3{left:2060.216587pt;}
.x5f{left:2065.533333pt;}
.xb6{left:2079.444933pt;}
.x6c{left:2082.480000pt;}
.x60{left:2087.146667pt;}
.xb5{left:2103.562267pt;}
.x62{left:2132.000000pt;}
.x6d{left:2139.146667pt;}
.x5e{left:2152.426667pt;}
.x63{left:2176.973333pt;}
.x6e{left:2179.653333pt;}
.x64{left:2192.226667pt;}
.x97{left:2201.751317pt;}
.xe5{left:2214.941351pt;}
.xe4{left:2217.230533pt;}
.xe6{left:2237.446267pt;}
.xea{left:2284.542189pt;}
.xb2{left:2335.848267pt;}
.xb0{left:2344.950533pt;}
.x73{left:2349.173333pt;}
.xde{left:2357.000000pt;}
.x9c{left:2358.853333pt;}
.x9b{left:2369.186667pt;}
.xab{left:2374.933333pt;}
.xaf{left:2379.786667pt;}
.x75{left:2386.746667pt;}
.x92{left:2387.720000pt;}
.x95{left:2390.336000pt;}
.xdd{left:2391.973333pt;}
.xd2{left:2397.759947pt;}
.x74{left:2399.226667pt;}
.x9a{left:2400.200000pt;}
.x93{left:2406.055350pt;}
.xae{left:2408.920000pt;}
.x94{left:2411.810700pt;}
.x96{left:2413.808183pt;}
.x7f{left:2419.373333pt;}
.x7e{left:2424.933333pt;}
.xaa{left:2435.106667pt;}
.xad{left:2453.573333pt;}
.x80{left:2467.400000pt;}
.xd7{left:2469.053333pt;}
.x9e{left:2493.426667pt;}
.x76{left:2516.546667pt;}
.x9d{left:2533.040000pt;}
.x9f{left:2537.160000pt;}
.xc5{left:2539.814400pt;}
.xc4{left:2561.813867pt;}
.x77{left:2571.226667pt;}
.xd8{left:2572.840000pt;}
.xa0{left:2575.880000pt;}
.x78{left:2611.066667pt;}
.xa1{left:2614.866667pt;}
.xc6{left:2622.158400pt;}
.xa2{left:2625.453333pt;}
.x7d{left:2627.373333pt;}
.xdc{left:2655.666667pt;}
.x79{left:2669.733333pt;}
.xd9{left:2681.120000pt;}
.xa9{left:2692.746667pt;}
.xa3{left:2698.453333pt;}
.x7a{left:2706.746667pt;}
.xa4{left:2738.960000pt;}
.x7b{left:2763.413333pt;}
.xa5{left:2782.733333pt;}
.xda{left:2789.386667pt;}
.xa6{left:2790.733333pt;}
.x7c{left:2803.920000pt;}
.xa7{left:2836.680000pt;}
.xdf{left:2867.399333pt;}
.xdb{left:2897.666667pt;}
.xa8{left:2906.106667pt;}
.x1{left:3171.254533pt;}
.x6{left:3194.554133pt;}
.x4{left:3231.479867pt;}
.x3{left:3320.061413pt;}
.x2{left:3323.710933pt;}
.xee{left:3473.988267pt;}
.xef{left:3522.932267pt;}
.xed{left:3547.503867pt;}
.xec{left:3632.071733pt;}
.x5{left:3880.126187pt;}
.xf1{left:3897.143867pt;}
}




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