
    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_b5629d196dc00d261dedc750.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_584cc20ca07157ce30a07e40.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_536498129cf970b25ab6a5ac.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_42cd6789866212a2b1e94e82.woff')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_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_1155f12929f8b5a5d697f43c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_a115df3321b43de345819395.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5c01e63e284945c8910701e8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_12843571852f028005c19316.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;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_5ea1094a88384ed75f209c04.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_863fa374908edd152982e486.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_554f0d7cbb2042e59e6ff353.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9cfb3fe966c0c764f724c3c9.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1787fc42f642f4ceb4f55915.woff')format("woff");}.ff10{font-family:ff10;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;}
.m2{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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.810000px;}
.ls1b{letter-spacing:-0.666000px;}
.lsc{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.413400px;}
.lsd{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.349800px;}
.ls19{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.223800px;}
.ls17{letter-spacing:-0.181200px;}
.ls15{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.089400px;}
.ls11{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144720px;}
.ls16{letter-spacing:0.152640px;}
.lsa{letter-spacing:0.180000px;}
.lse{letter-spacing:0.181200px;}
.ls12{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.270720px;}
.ls7{letter-spacing:0.360000px;}
.ls14{letter-spacing:13.140000px;}
.ls4{letter-spacing:47.700000px;}
.ls2{letter-spacing:71.280000px;}
.ls0{letter-spacing:71.460000px;}
.ls3{letter-spacing:72.000000px;}
.ls1{letter-spacing:72.840000px;}
.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;}
}
.wsf{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.580000px;}
.ws18{word-spacing:-14.274000px;}
.ws16{word-spacing:-14.220000px;}
.wse{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.ws12{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.241200px;}
.ws11{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.878800px;}
.ws8{word-spacing:-11.700000px;}
.ws6{word-spacing:-11.340000px;}
.ws4{word-spacing:-10.990200px;}
.ws5{word-spacing:-10.980000px;}
.ws14{word-spacing:-10.529400px;}
.ws0{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.000000px;}
.ws3{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
.ws2{word-spacing:65.160000px;}
._6{margin-left:-59.580000px;}
._d{margin-left:-4.104000px;}
._3{margin-left:-2.130000px;}
._2{margin-left:-1.059840px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._b{width:3.856320px;}
._9{width:5.019840px;}
._a{width:6.422160px;}
._13{width:8.354160px;}
._12{width:9.499680px;}
._c{width:11.502000px;}
._20{width:12.669120px;}
._8{width:13.924080px;}
._21{width:16.940880px;}
._10{width:18.702000px;}
._11{width:19.710000px;}
._14{width:20.826000px;}
._25{width:21.947760px;}
._f{width:22.974000px;}
._e{width:24.192000px;}
._15{width:25.704000px;}
._16{width:26.808000px;}
._29{width:27.940800px;}
._1a{width:29.691360px;}
._19{width:30.985920px;}
._1d{width:32.465520px;}
._18{width:33.909120px;}
._30{width:35.120160px;}
._1e{width:36.154800px;}
._1f{width:37.293840px;}
._27{width:39.322080px;}
._28{width:40.480560px;}
._2a{width:41.624640px;}
._24{width:42.788160px;}
._35{width:44.112240px;}
._2c{width:45.118800px;}
._37{width:46.553040px;}
._2f{width:47.603040px;}
._2e{width:48.644640px;}
._39{width:49.752000px;}
._31{width:50.915520px;}
._1b{width:52.158240px;}
._22{width:53.365680px;}
._2b{width:55.098720px;}
._23{width:56.772000px;}
._34{width:59.281920px;}
._32{width:60.666960px;}
._2d{width:62.210160px;}
._3b{width:64.086480px;}
._4{width:65.496000px;}
._26{width:76.415280px;}
._17{width:80.137440px;}
._3a{width:89.802480px;}
._3d{width:94.839120px;}
._3c{width:106.929360px;}
._38{width:128.065680px;}
._33{width:187.750080px;}
._5{width:199.620000px;}
._36{width:217.108080px;}
._1c{width:285.870000px;}
._7{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc5{color:rgb(46,116,181);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fsf{font-size:50.848916px;}
.fsa{font-size:54.000000px;}
.fs10{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y42{bottom:-247.710000px;}
.y41{bottom:-214.005000px;}
.y40{bottom:-180.345000px;}
.y3f{bottom:-146.505000px;}
.y7b{bottom:-143.295000px;}
.y3e{bottom:-112.845000px;}
.y7a{bottom:-109.635000px;}
.y3d{bottom:-79.005000px;}
.y79{bottom:-75.795000px;}
.y3c{bottom:-45.345000px;}
.y78{bottom:-42.135000px;}
.y45{bottom:-27.180000px;}
.y7d{bottom:-17.922750px;}
.y6b{bottom:-15.825000px;}
.y3b{bottom:-11.505000px;}
.y77{bottom:-8.295000px;}
.y0{bottom:0.000000px;}
.y268{bottom:1.837500px;}
.y2{bottom:3.960000px;}
.y109{bottom:4.665000px;}
.yf9{bottom:4.680000px;}
.y162{bottom:4.695000px;}
.y149{bottom:4.710000px;}
.y107{bottom:4.845000px;}
.yfb{bottom:4.860000px;}
.y101{bottom:4.875000px;}
.y114{bottom:4.890000px;}
.y44{bottom:5.040000px;}
.y6a{bottom:5.235000px;}
.y6d{bottom:5.580000px;}
.y141{bottom:5.760000px;}
.y137{bottom:6.120000px;}
.y143{bottom:6.480000px;}
.y14c{bottom:6.645000px;}
.y139{bottom:6.660000px;}
.y3a{bottom:6.675000px;}
.y14a{bottom:6.690000px;}
.y19e{bottom:6.825000px;}
.y13b{bottom:6.840000px;}
.y145{bottom:7.020000px;}
.y1a7{bottom:7.365000px;}
.y194{bottom:7.545000px;}
.y1a4{bottom:7.725000px;}
.y18e{bottom:7.920000px;}
.y13e{bottom:8.100000px;}
.y18b{bottom:8.460000px;}
.y1a9{bottom:8.490000px;}
.y188{bottom:9.180000px;}
.y183{bottom:9.720000px;}
.y1a6{bottom:9.885000px;}
.y1a3{bottom:10.605000px;}
.y1b3{bottom:10.800000px;}
.y1b4{bottom:10.980000px;}
.y1bb{bottom:11.520000px;}
.y1b1{bottom:11.700000px;}
.y160{bottom:11.715000px;}
.y18a{bottom:11.880000px;}
.y1a8{bottom:11.910000px;}
.y5{bottom:12.600000px;}
.y17a{bottom:12.765000px;}
.y124{bottom:12.780000px;}
.y1be{bottom:12.825000px;}
.y1b9{bottom:12.960000px;}
.y135{bottom:14.580000px;}
.y69{bottom:18.195000px;}
.y131{bottom:18.540000px;}
.y15e{bottom:18.555000px;}
.y106{bottom:18.705000px;}
.y161{bottom:18.720000px;}
.y121{bottom:18.735000px;}
.y10f{bottom:18.885000px;}
.y128{bottom:18.900000px;}
.y100{bottom:18.915000px;}
.y113{bottom:18.930000px;}
.y123{bottom:20.520000px;}
.y1bd{bottom:20.565000px;}
.y179{bottom:20.685000px;}
.y17c{bottom:20.700000px;}
.y39{bottom:20.745000px;}
.y1b8{bottom:20.880000px;}
.y1af{bottom:21.600000px;}
.y6{bottom:21.960000px;}
.y62{bottom:22.845000px;}
.y3{bottom:23.220000px;}
.y4{bottom:24.660000px;}
.y76{bottom:25.365000px;}
.y15f{bottom:25.560000px;}
.y134{bottom:28.620000px;}
.y68{bottom:31.335000px;}
.y105{bottom:32.565000px;}
.y15c{bottom:32.580000px;}
.y120{bottom:32.595000px;}
.y127{bottom:32.760000px;}
.yff{bottom:32.775000px;}
.y112{bottom:32.790000px;}
.y130{bottom:34.380000px;}
.y38{bottom:34.785000px;}
.y61{bottom:38.685000px;}
.y190{bottom:41.220000px;}
.y133{bottom:42.480000px;}
.y67{bottom:44.295000px;}
.y186{bottom:45.720000px;}
.y11e{bottom:46.260000px;}
.y10e{bottom:46.425000px;}
.yfd{bottom:46.440000px;}
.y104{bottom:46.470000px;}
.y129{bottom:46.620000px;}
.y7f{bottom:46.980000px;}
.y37{bottom:47.385000px;}
.y1a0{bottom:49.170000px;}
.y12f{bottom:50.220000px;}
.y60{bottom:51.105000px;}
.y132{bottom:56.160000px;}
.y75{bottom:56.370000px;}
.y66{bottom:57.255000px;}
.y1{bottom:57.420000px;}
.y10d{bottom:60.285000px;}
.y7c{bottom:63.780000px;}
.y196{bottom:65.865000px;}
.y12e{bottom:66.060000px;}
.y5f{bottom:68.925000px;}
.y74{bottom:69.510000px;}
.y177{bottom:70.380000px;}
.y65{bottom:70.395000px;}
.y165{bottom:72.000000px;}
.y16d{bottom:72.045000px;}
.y10c{bottom:73.965000px;}
.y73{bottom:82.470000px;}
.y176{bottom:86.400000px;}
.y5e{bottom:86.745000px;}
.y64{bottom:87.315000px;}
.y10b{bottom:87.825000px;}
.y164{bottom:87.840000px;}
.y16c{bottom:87.885000px;}
.y72{bottom:95.430000px;}
.y22d{bottom:98.820000px;}
.yb0{bottom:100.620000px;}
.y1ad{bottom:100.800000px;}
.y175{bottom:102.240000px;}
.y5d{bottom:104.745000px;}
.y159{bottom:105.660000px;}
.y1e2{bottom:106.560000px;}
.y71{bottom:108.570000px;}
.y1fb{bottom:108.900000px;}
.y118{bottom:110.520000px;}
.yf5{bottom:113.400000px;}
.y1ac{bottom:114.660000px;}
.yde{bottom:115.560000px;}
.y22c{bottom:116.100000px;}
.y35{bottom:117.000000px;}
.y174{bottom:118.080000px;}
.y260{bottom:118.980000px;}
.y5c{bottom:120.045000px;}
.yaf{bottom:120.420000px;}
.y209{bottom:121.320000px;}
.y70{bottom:121.530000px;}
.y117{bottom:122.580000px;}
.y158{bottom:125.460000px;}
.y1e1{bottom:126.360000px;}
.y1ab{bottom:128.520000px;}
.y1fa{bottom:128.880000px;}
.y5b{bottom:132.465000px;}
.yf4{bottom:133.200000px;}
.y22b{bottom:133.380000px;}
.y6f{bottom:133.950000px;}
.y116{bottom:134.640000px;}
.ydd{bottom:135.360000px;}
.y25f{bottom:136.080000px;}
.y34{bottom:136.800000px;}
.yae{bottom:140.400000px;}
.y208{bottom:141.120000px;}
.y1aa{bottom:142.560000px;}
.y157{bottom:145.260000px;}
.y1e0{bottom:146.160000px;}
.y115{bottom:146.700000px;}
.y1f9{bottom:148.680000px;}
.y5a{bottom:150.285000px;}
.y22a{bottom:150.660000px;}
.yf3{bottom:153.000000px;}
.y25e{bottom:153.360000px;}
.y19f{bottom:154.260000px;}
.ydc{bottom:155.160000px;}
.y33{bottom:156.600000px;}
.y111{bottom:158.400000px;}
.yad{bottom:160.200000px;}
.y207{bottom:161.100000px;}
.y156{bottom:165.090000px;}
.y1df{bottom:165.990000px;}
.y59{bottom:168.105000px;}
.y229{bottom:168.330000px;}
.y1f8{bottom:168.510000px;}
.y25d{bottom:170.670000px;}
.yf2{bottom:173.010000px;}
.ydb{bottom:174.990000px;}
.y32{bottom:176.430000px;}
.y1a5{bottom:177.885000px;}
.yac{bottom:180.030000px;}
.y206{bottom:180.930000px;}
.y155{bottom:184.890000px;}
.y1de{bottom:185.790000px;}
.y58{bottom:185.970000px;}
.y25c{bottom:187.950000px;}
.y1f7{bottom:188.310000px;}
.yf1{bottom:192.810000px;}
.yda{bottom:194.970000px;}
.y31{bottom:197.310000px;}
.y1a2{bottom:199.485000px;}
.yab{bottom:199.830000px;}
.y205{bottom:200.730000px;}
.y57{bottom:201.450000px;}
.y154{bottom:204.870000px;}
.y25b{bottom:205.230000px;}
.y1dd{bottom:205.770000px;}
.y228{bottom:206.490000px;}
.y1f6{bottom:208.110000px;}
.yf0{bottom:212.610000px;}
.y56{bottom:213.870000px;}
.y30{bottom:214.590000px;}
.yd9{bottom:214.770000px;}
.y110{bottom:216.585000px;}
.yaa{bottom:220.530000px;}
.y46{bottom:221.445000px;}
.y1a1{bottom:221.805000px;}
.y25a{bottom:222.510000px;}
.y2f{bottom:223.050000px;}
.y227{bottom:223.770000px;}
.y153{bottom:224.670000px;}
.y1dc{bottom:225.570000px;}
.y1f5{bottom:228.090000px;}
.y55{bottom:231.690000px;}
.yef{bottom:232.410000px;}
.y10a{bottom:233.145000px;}
.yd8{bottom:234.570000px;}
.y19d{bottom:238.365000px;}
.y259{bottom:239.610000px;}
.y204{bottom:240.330000px;}
.ya9{bottom:241.410000px;}
.y226{bottom:244.290000px;}
.y152{bottom:244.470000px;}
.y1db{bottom:245.370000px;}
.y2e{bottom:246.810000px;}
.y1f4{bottom:247.890000px;}
.y54{bottom:249.510000px;}
.yee{bottom:252.210000px;}
.yd7{bottom:254.370000px;}
.y258{bottom:256.890000px;}
.y195{bottom:259.425000px;}
.y203{bottom:260.310000px;}
.y151{bottom:264.270000px;}
.y1da{bottom:265.170000px;}
.y53{bottom:267.330000px;}
.y1f3{bottom:267.690000px;}
.y2d{bottom:270.570000px;}
.yed{bottom:272.190000px;}
.yd6{bottom:274.170000px;}
.y19c{bottom:275.985000px;}
.y202{bottom:280.110000px;}
.ya8{bottom:282.270000px;}
.y150{bottom:284.070000px;}
.y1d9{bottom:284.970000px;}
.y52{bottom:285.150000px;}
.y225{bottom:285.330000px;}
.y1f2{bottom:287.490000px;}
.y257{bottom:291.450000px;}
.yec{bottom:291.990000px;}
.y19b{bottom:292.545000px;}
.yd5{bottom:294.150000px;}
.y2c{bottom:294.510000px;}
.y201{bottom:299.910000px;}
.ya7{bottom:302.070000px;}
.y51{bottom:303.150000px;}
.y14f{bottom:304.050000px;}
.y1d8{bottom:304.950000px;}
.y224{bottom:305.130000px;}
.y1f1{bottom:307.290000px;}
.y256{bottom:308.730000px;}
.y19a{bottom:309.285000px;}
.yeb{bottom:311.790000px;}
.yd4{bottom:313.950000px;}
.y267{bottom:316.830000px;}
.y2b{bottom:318.270000px;}
.y200{bottom:319.710000px;}
.y50{bottom:320.970000px;}
.ya6{bottom:321.870000px;}
.y14e{bottom:323.850000px;}
.y1d7{bottom:324.750000px;}
.y223{bottom:325.830000px;}
.y199{bottom:325.845000px;}
.y1f0{bottom:327.270000px;}
.yea{bottom:331.590000px;}
.y108{bottom:332.505000px;}
.yd3{bottom:333.750000px;}
.y266{bottom:334.110000px;}
.y4f{bottom:338.790000px;}
.y1ff{bottom:339.510000px;}
.ya5{bottom:341.670000px;}
.y2a{bottom:342.030000px;}
.y198{bottom:342.405000px;}
.y255{bottom:343.110000px;}
.y1d6{bottom:344.550000px;}
.y1ef{bottom:347.070000px;}
.y103{bottom:349.245000px;}
.y6e{bottom:350.145000px;}
.ye9{bottom:351.390000px;}
.yd2{bottom:353.550000px;}
.y14d{bottom:355.710000px;}
.y4e{bottom:356.610000px;}
.y197{bottom:359.145000px;}
.y1fe{bottom:359.310000px;}
.ya4{bottom:361.470000px;}
.y254{bottom:361.830000px;}
.y29{bottom:362.910000px;}
.y1d5{bottom:364.350000px;}
.y222{bottom:366.690000px;}
.y1ee{bottom:366.870000px;}
.y14b{bottom:367.605000px;}
.y265{bottom:368.670000px;}
.y4d{bottom:369.930000px;}
.ye8{bottom:371.370000px;}
.yd1{bottom:373.350000px;}
.y193{bottom:375.705000px;}
.y4c{bottom:378.750000px;}
.y1fd{bottom:379.290000px;}
.y253{bottom:380.370000px;}
.ya3{bottom:381.450000px;}
.y28{bottom:382.710000px;}
.y1d4{bottom:384.150000px;}
.y264{bottom:385.770000px;}
.y221{bottom:386.490000px;}
.y1ed{bottom:386.670000px;}
.y148{bottom:387.765000px;}
.ye7{bottom:391.170000px;}
.yd0{bottom:393.375000px;}
.y4b{bottom:396.570000px;}
.y27{bottom:396.615000px;}
.y18f{bottom:398.055000px;}
.y252{bottom:399.135000px;}
.y1fc{bottom:400.035000px;}
.ya2{bottom:401.295000px;}
.y263{bottom:403.095000px;}
.y1d3{bottom:404.175000px;}
.y26{bottom:405.255000px;}
.y1ec{bottom:406.515000px;}
.y102{bottom:407.235000px;}
.y147{bottom:408.135000px;}
.ye6{bottom:411.015000px;}
.ycf{bottom:413.175000px;}
.y4a{bottom:414.600000px;}
.y192{bottom:414.615000px;}
.y251{bottom:417.675000px;}
.y262{bottom:420.375000px;}
.ya1{bottom:421.095000px;}
.yfe{bottom:423.780000px;}
.yfc{bottom:423.795000px;}
.y1d2{bottom:423.975000px;}
.y220{bottom:426.315000px;}
.y1eb{bottom:426.495000px;}
.y146{bottom:428.295000px;}
.y25{bottom:428.475000px;}
.ye5{bottom:430.815000px;}
.y191{bottom:431.175000px;}
.y49{bottom:432.420000px;}
.yce{bottom:432.975000px;}
.y250{bottom:436.215000px;}
.y261{bottom:437.655000px;}
.ya0{bottom:440.895000px;}
.y1d1{bottom:443.775000px;}
.y21f{bottom:446.115000px;}
.y1ea{bottom:446.295000px;}
.y144{bottom:447.915000px;}
.y48{bottom:450.240000px;}
.ye4{bottom:450.615000px;}
.y24{bottom:451.875000px;}
.ycd{bottom:452.775000px;}
.y24f{bottom:454.935000px;}
.y9f{bottom:460.695000px;}
.y1d0{bottom:463.575000px;}
.y18d{bottom:464.475000px;}
.y21e{bottom:465.915000px;}
.y1e9{bottom:466.095000px;}
.y47{bottom:468.060000px;}
.y142{bottom:468.795000px;}
.ye3{bottom:470.595000px;}
.y24e{bottom:472.215000px;}
.ycc{bottom:472.575000px;}
.y23{bottom:475.095000px;}
.y9e{bottom:480.675000px;}
.yfa{bottom:481.755000px;}
.y1cf{bottom:483.375000px;}
.y21d{bottom:485.715000px;}
.y1e8{bottom:485.895000px;}
.y185{bottom:487.335000px;}
.y140{bottom:488.415000px;}
.y24d{bottom:489.315000px;}
.ye2{bottom:490.395000px;}
.ycb{bottom:492.555000px;}
.yf8{bottom:499.935000px;}
.y9d{bottom:500.475000px;}
.y1ce{bottom:503.355000px;}
.y18c{bottom:504.075000px;}
.y63{bottom:504.420000px;}
.y1e7{bottom:505.695000px;}
.y13f{bottom:506.595000px;}
.ye1{bottom:510.195000px;}
.yca{bottom:512.355000px;}
.y9c{bottom:520.275000px;}
.y13d{bottom:523.155000px;}
.yf7{bottom:523.695000px;}
.y24c{bottom:523.875000px;}
.y189{bottom:524.235000px;}
.y21c{bottom:525.495000px;}
.y1e6{bottom:525.675000px;}
.y22{bottom:529.995000px;}
.yc9{bottom:532.155000px;}
.y9b{bottom:540.075000px;}
.yf6{bottom:541.155000px;}
.y1cd{bottom:542.955000px;}
.y21{bottom:545.475000px;}
.y13c{bottom:546.195000px;}
.y187{bottom:547.995000px;}
.ye0{bottom:550.695000px;}
.yc8{bottom:551.955000px;}
.y24b{bottom:558.435000px;}
.y9a{bottom:559.875000px;}
.y20{bottom:560.955000px;}
.y13a{bottom:562.755000px;}
.y1e5{bottom:565.275000px;}
.y184{bottom:568.875000px;}
.yc7{bottom:571.755000px;}
.y24a{bottom:575.715000px;}
.y1f{bottom:576.435000px;}
.y99{bottom:579.855000px;}
.y1cc{bottom:582.555000px;}
.y138{bottom:583.095000px;}
.y1e4{bottom:585.075000px;}
.y182{bottom:586.875000px;}
.y21b{bottom:587.055000px;}
.yc6{bottom:591.735000px;}
.y1e{bottom:592.095000px;}
.y249{bottom:592.815000px;}
.y98{bottom:599.655000px;}
.y1cb{bottom:600.375000px;}
.y1d{bottom:603.075000px;}
.y136{bottom:603.255000px;}
.y21a{bottom:607.935000px;}
.y248{bottom:610.095000px;}
.yc5{bottom:611.535000px;}
.y36{bottom:611.880000px;}
.y1c{bottom:616.755000px;}
.y1e3{bottom:618.915000px;}
.y97{bottom:619.455000px;}
.y1ca{bottom:619.995000px;}
.y181{bottom:620.355000px;}
.y12d{bottom:623.805000px;}
.y247{bottom:627.405000px;}
.y1b{bottom:629.745000px;}
.yc4{bottom:631.365000px;}
.y1c9{bottom:636.945000px;}
.y96{bottom:639.285000px;}
.y180{bottom:640.005000px;}
.y1a{bottom:642.705000px;}
.y246{bottom:644.685000px;}
.y1c8{bottom:648.645000px;}
.y219{bottom:648.825000px;}
.yc3{bottom:651.165000px;}
.y19{bottom:655.665000px;}
.y95{bottom:659.085000px;}
.y245{bottom:661.965000px;}
.y218{bottom:668.625000px;}
.y18{bottom:669.345000px;}
.yc2{bottom:670.965000px;}
.y17f{bottom:671.145000px;}
.y94{bottom:679.065000px;}
.y244{bottom:679.245000px;}
.y1c7{bottom:681.225000px;}
.y17{bottom:682.305000px;}
.y17e{bottom:683.205000px;}
.y217{bottom:688.425000px;}
.yc1{bottom:690.945000px;}
.y173{bottom:694.905000px;}
.y243{bottom:696.345000px;}
.y93{bottom:698.865000px;}
.y216{bottom:708.225000px;}
.y12c{bottom:708.945000px;}
.y16{bottom:709.125000px;}
.yc0{bottom:710.745000px;}
.y1c6{bottom:713.625000px;}
.y92{bottom:718.665000px;}
.y15{bottom:720.285000px;}
.y12b{bottom:726.945000px;}
.y17d{bottom:727.485000px;}
.y215{bottom:728.205000px;}
.y1c5{bottom:730.365000px;}
.ybf{bottom:730.545000px;}
.y242{bottom:730.905000px;}
.y91{bottom:738.465000px;}
.y14{bottom:744.405000px;}
.y12a{bottom:745.305000px;}
.y1c4{bottom:746.925000px;}
.y214{bottom:748.005000px;}
.y241{bottom:748.185000px;}
.ybe{bottom:750.345000px;}
.y126{bottom:757.005000px;}
.y90{bottom:758.265000px;}
.y17b{bottom:759.885000px;}
.y1c3{bottom:763.485000px;}
.y13{bottom:764.745000px;}
.y240{bottom:765.465000px;}
.y213{bottom:767.805000px;}
.ybd{bottom:771.045000px;}
.y8f{bottom:778.245000px;}
.y1c2{bottom:780.225000px;}
.y23f{bottom:782.565000px;}
.y12{bottom:785.265000px;}
.y212{bottom:788.505000px;}
.ydf{bottom:790.845000px;}
.ybc{bottom:791.025000px;}
.y178{bottom:792.480000px;}
.y11{bottom:796.605000px;}
.y1c1{bottom:796.800000px;}
.y8e{bottom:798.045000px;}
.y23e{bottom:799.845000px;}
.ybb{bottom:803.985000px;}
.y1c0{bottom:813.345000px;}
.y125{bottom:815.160000px;}
.y10{bottom:816.945000px;}
.y23d{bottom:817.125000px;}
.y8d{bottom:817.845000px;}
.yba{bottom:823.785000px;}
.y16b{bottom:824.865000px;}
.y211{bottom:829.365000px;}
.y1bf{bottom:829.905000px;}
.y122{bottom:831.705000px;}
.yf{bottom:832.785000px;}
.y23c{bottom:834.405000px;}
.y8c{bottom:837.645000px;}
.y172{bottom:841.425000px;}
.yb9{bottom:843.585000px;}
.y1bc{bottom:846.645000px;}
.ye{bottom:847.905000px;}
.y210{bottom:849.345000px;}
.y23b{bottom:851.685000px;}
.y8b{bottom:857.490000px;}
.y171{bottom:858.210000px;}
.yd{bottom:862.890000px;}
.yb8{bottom:863.430000px;}
.y11f{bottom:864.315000px;}
.y11d{bottom:864.330000px;}
.y23a{bottom:869.010000px;}
.y20f{bottom:870.090000px;}
.yc{bottom:874.230000px;}
.y170{bottom:874.770000px;}
.y8a{bottom:877.470000px;}
.y1ba{bottom:879.090000px;}
.yb7{bottom:883.410000px;}
.y239{bottom:886.110000px;}
.y16f{bottom:891.330000px;}
.yb{bottom:891.870000px;}
.y20e{bottom:893.850000px;}
.y89{bottom:897.270000px;}
.yb6{bottom:903.210000px;}
.y238{bottom:903.390000px;}
.y16e{bottom:908.070000px;}
.y1b7{bottom:908.790000px;}
.ya{bottom:916.350000px;}
.y88{bottom:917.070000px;}
.y237{bottom:920.670000px;}
.y11c{bottom:922.290000px;}
.yb5{bottom:923.010000px;}
.y163{bottom:924.630000px;}
.y20d{bottom:934.710000px;}
.y87{bottom:936.870000px;}
.y236{bottom:937.950000px;}
.y11b{bottom:940.470000px;}
.y16a{bottom:941.190000px;}
.y1b6{bottom:941.370000px;}
.yb4{bottom:942.810000px;}
.y20c{bottom:954.510000px;}
.y235{bottom:955.230000px;}
.y86{bottom:956.670000px;}
.y169{bottom:957.930000px;}
.yb3{bottom:962.610000px;}
.y11a{bottom:964.050000px;}
.y234{bottom:972.510000px;}
.y1b5{bottom:973.770000px;}
.y9{bottom:973.950000px;}
.y168{bottom:974.490000px;}
.y85{bottom:976.650000px;}
.y119{bottom:980.790000px;}
.yb2{bottom:983.490000px;}
.y233{bottom:989.610000px;}
.y1b2{bottom:990.510000px;}
.y167{bottom:991.050000px;}
.y20b{bottom:994.290000px;}
.y84{bottom:996.450000px;}
.yb1{bottom:1003.290000px;}
.y232{bottom:1006.890000px;}
.y166{bottom:1007.790000px;}
.y20a{bottom:1014.990000px;}
.y8{bottom:1015.350000px;}
.y83{bottom:1016.250000px;}
.y1ae{bottom:1019.490000px;}
.y231{bottom:1024.170000px;}
.y15d{bottom:1025.775000px;}
.y15b{bottom:1025.790000px;}
.y82{bottom:1036.050000px;}
.y230{bottom:1041.450000px;}
.y1b0{bottom:1053.510000px;}
.y81{bottom:1055.850000px;}
.y22f{bottom:1058.730000px;}
.y7{bottom:1063.230000px;}
.y80{bottom:1075.650000px;}
.y22e{bottom:1075.830000px;}
.y15a{bottom:1077.090000px;}
.y6c{bottom:1096.200000px;}
.y7e{bottom:1123.200000px;}
.y43{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h16{height:5.805000px;}
.h68{height:6.257812px;}
.h2{height:13.500000px;}
.h2e{height:15.825000px;}
.h4f{height:15.840000px;}
.h2f{height:16.005000px;}
.h64{height:16.020000px;}
.h4e{height:16.042500px;}
.h1a{height:16.920000px;}
.h45{height:17.445000px;}
.h41{height:18.165000px;}
.h46{height:18.885000px;}
.h42{height:19.425000px;}
.h48{height:19.461000px;}
.h43{height:19.605000px;}
.h47{height:20.145000px;}
.h5d{height:20.865000px;}
.h59{height:21.441000px;}
.h5c{height:21.585000px;}
.h57{height:22.125000px;}
.h23{height:22.140000px;}
.h44{height:22.305000px;}
.h56{height:22.845000px;}
.h5e{height:22.896000px;}
.h15{height:23.319141px;}
.h22{height:23.632383px;}
.h54{height:25.725000px;}
.h61{height:28.245000px;}
.h63{height:28.965000px;}
.h2c{height:29.664141px;}
.hb{height:29.678906px;}
.hf{height:30.963516px;}
.h2b{height:31.081955px;}
.h51{height:31.665000px;}
.h52{height:31.680000px;}
.h3a{height:31.702500px;}
.h62{height:31.845000px;}
.h65{height:31.860000px;}
.h4{height:34.200000px;}
.h32{height:34.437230px;}
.h40{height:35.306230px;}
.h20{height:36.281250px;}
.h13{height:39.503370px;}
.h5{height:40.985156px;}
.h21{height:42.086250px;}
.h5f{height:42.922699px;}
.h66{height:43.215117px;}
.h4b{height:43.545000px;}
.h49{height:43.551000px;}
.h4a{height:43.560000px;}
.h28{height:43.737568px;}
.h11{height:44.518359px;}
.ha{height:45.116367px;}
.h18{height:45.714375px;}
.h12{height:46.622932px;}
.hc{height:47.344922px;}
.h1b{height:48.616875px;}
.h36{height:49.583118px;}
.h60{height:49.845000px;}
.h3f{height:50.218594px;}
.h14{height:52.998047px;}
.h1c{height:54.421875px;}
.h10{height:55.291992px;}
.h1e{height:55.503491px;}
.h39{height:57.231000px;}
.h30{height:57.235500px;}
.h31{height:57.240000px;}
.h33{height:57.262500px;}
.h37{height:57.276000px;}
.h38{height:57.285000px;}
.h3b{height:57.415500px;}
.h3c{height:57.420000px;}
.h17{height:57.645000px;}
.h27{height:58.621992px;}
.h3{height:58.651172px;}
.h2d{height:60.226875px;}
.h2a{height:61.423863px;}
.h67{height:62.211094px;}
.h9{height:65.010937px;}
.h19{height:65.884219px;}
.hd{height:67.824844px;}
.h29{height:70.628906px;}
.h53{height:70.664062px;}
.he{height:72.562500px;}
.h24{height:74.953125px;}
.h26{height:75.093750px;}
.h3d{height:77.215500px;}
.h3e{height:77.220000px;}
.h7{height:87.695156px;}
.h58{height:88.545000px;}
.h1f{height:95.400000px;}
.h8{height:96.508125px;}
.h55{height:97.365000px;}
.h34{height:98.631000px;}
.h35{height:98.640000px;}
.h4c{height:98.985000px;}
.h4d{height:99.022500px;}
.h5b{height:104.256000px;}
.h50{height:129.240000px;}
.h5a{height:137.721000px;}
.h25{height:144.922500px;}
.h1d{height:480.315000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w34{width:47.376000px;}
.w37{width:54.561000px;}
.w35{width:60.645000px;}
.w3a{width:67.500000px;}
.w32{width:67.521000px;}
.w38{width:72.705000px;}
.w27{width:74.145000px;}
.w21{width:74.155500px;}
.w22{width:74.160000px;}
.w26{width:75.960000px;}
.w36{width:77.565000px;}
.w3{width:82.071000px;}
.w39{width:85.530000px;}
.w33{width:87.660000px;}
.w29{width:87.690000px;}
.w24{width:87.696000px;}
.w25{width:87.705000px;}
.w28{width:101.361000px;}
.w23{width:101.362500px;}
.w1f{width:101.376000px;}
.w20{width:101.385000px;}
.w1c{width:102.951000px;}
.w1d{width:102.960000px;}
.w2e{width:128.331000px;}
.wc{width:132.870000px;}
.we{width:132.876000px;}
.wf{width:132.885000px;}
.w5{width:154.470000px;}
.w16{width:172.455000px;}
.w15{width:172.470000px;}
.w1b{width:175.515000px;}
.w17{width:175.530000px;}
.w18{width:175.545000px;}
.w1e{width:177.135000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w30{width:192.795000px;}
.w19{width:197.130000px;}
.w1a{width:197.145000px;}
.w2f{width:202.560000px;}
.wb{width:205.755000px;}
.wd{width:205.770000px;}
.w2a{width:215.655000px;}
.w31{width:225.750000px;}
.w2b{width:229.530000px;}
.w2c{width:276.720000px;}
.w11{width:358.800000px;}
.w14{width:358.815000px;}
.w12{width:360.240000px;}
.w10{width:360.246000px;}
.w13{width:360.255000px;}
.w2d{width:445.206000px;}
.w7{width:532.740000px;}
.w3b{width:621.135000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x63{left:4.252500px;}
.x2{left:8.091000px;}
.x36{left:9.525000px;}
.x15{left:10.791000px;}
.x43{left:12.960000px;}
.x37{left:14.205000px;}
.x46{left:15.690000px;}
.x52{left:16.725000px;}
.x32{left:17.820000px;}
.x33{left:19.620000px;}
.x1b{left:21.255000px;}
.x49{left:23.040000px;}
.x3c{left:24.480000px;}
.x4a{left:25.590000px;}
.x51{left:27.525000px;}
.x3a{left:28.785000px;}
.x4e{left:31.530000px;}
.x4b{left:33.510000px;}
.x44{left:35.670000px;}
.x3d{left:39.600000px;}
.x26{left:41.415000px;}
.x5b{left:42.645000px;}
.x25{left:44.460000px;}
.x28{left:47.385000px;}
.x59{left:48.630000px;}
.x23{left:51.510000px;}
.x38{left:54.885000px;}
.x50{left:56.190000px;}
.x39{left:57.945000px;}
.x4f{left:61.050000px;}
.x3f{left:62.640000px;}
.x24{left:66.450000px;}
.x4c{left:67.710000px;}
.x40{left:68.745000px;}
.x4d{left:70.230000px;}
.x34{left:72.900000px;}
.x3{left:73.965000px;}
.x41{left:76.500000px;}
.x18{left:80.505000px;}
.x16{left:81.765000px;}
.x3e{left:83.715000px;}
.x30{left:87.465000px;}
.x56{left:89.670000px;}
.x14{left:93.105000px;}
.x1a{left:94.905000px;}
.x57{left:98.670000px;}
.x54{left:99.930000px;}
.x62{left:101.196000px;}
.xd{left:104.436000px;}
.x1{left:108.045000px;}
.x8{left:112.536000px;}
.x27{left:116.130000px;}
.xe{left:120.096000px;}
.x20{left:121.356000px;}
.x1f{left:124.416000px;}
.x21{left:128.376000px;}
.x11{left:132.696000px;}
.x6{left:134.496000px;}
.x2b{left:151.410000px;}
.x2d{left:154.290000px;}
.x2f{left:157.350000px;}
.x2e{left:160.410000px;}
.x2a{left:164.550000px;}
.x2c{left:179.310000px;}
.x4{left:190.125000px;}
.xb{left:191.730000px;}
.x1d{left:206.850000px;}
.x1e{left:210.630000px;}
.x58{left:222.885000px;}
.xc{left:250.635000px;}
.x7{left:255.135000px;}
.x31{left:280.515000px;}
.x5d{left:290.415000px;}
.x17{left:303.195000px;}
.x19{left:310.350000px;}
.x53{left:323.715000px;}
.xf{left:373.395000px;}
.x5e{left:378.075000px;}
.x42{left:388.155000px;}
.x9{left:421.125000px;}
.x5a{left:425.460000px;}
.x10{left:444.525000px;}
.x5{left:446.505000px;}
.x35{left:456.060000px;}
.xa{left:459.105000px;}
.x29{left:468.300000px;}
.x5f{left:486.120000px;}
.x12{left:489.165000px;}
.x13{left:490.785000px;}
.x55{left:553.260000px;}
.x45{left:563.700000px;}
.x5c{left:618.270000px;}
.x1c{left:620.253000px;}
.x3b{left:631.590000px;}
.x47{left:665.070000px;}
.x60{left:690.990000px;}
.x22{left:696.570000px;}
.x48{left:752.760000px;}
.x61{left:776.520000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.720000pt;}
.ls1b{letter-spacing:-0.592000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.367467pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.310933pt;}
.ls19{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.198933pt;}
.ls17{letter-spacing:-0.161067pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.079467pt;}
.ls11{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128640pt;}
.ls16{letter-spacing:0.135680pt;}
.lsa{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.161067pt;}
.ls12{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.240640pt;}
.ls7{letter-spacing:0.320000pt;}
.ls14{letter-spacing:11.680000pt;}
.ls4{letter-spacing:42.400000pt;}
.ls2{letter-spacing:63.360000pt;}
.ls0{letter-spacing:63.520000pt;}
.ls3{letter-spacing:64.000000pt;}
.ls1{letter-spacing:64.746667pt;}
.wsf{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws17{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.688000pt;}
.ws16{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.881067pt;}
.ws11{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.558933pt;}
.ws8{word-spacing:-10.400000pt;}
.ws6{word-spacing:-10.080000pt;}
.ws4{word-spacing:-9.769067pt;}
.ws5{word-spacing:-9.760000pt;}
.ws14{word-spacing:-9.359467pt;}
.ws0{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws3{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
.ws2{word-spacing:57.920000pt;}
._6{margin-left:-52.960000pt;}
._d{margin-left:-3.648000pt;}
._3{margin-left:-1.893333pt;}
._2{margin-left:-0.942080pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._b{width:3.427840pt;}
._9{width:4.462080pt;}
._a{width:5.708587pt;}
._13{width:7.425920pt;}
._12{width:8.444160pt;}
._c{width:10.224000pt;}
._20{width:11.261440pt;}
._8{width:12.376960pt;}
._21{width:15.058560pt;}
._10{width:16.624000pt;}
._11{width:17.520000pt;}
._14{width:18.512000pt;}
._25{width:19.509120pt;}
._f{width:20.421333pt;}
._e{width:21.504000pt;}
._15{width:22.848000pt;}
._16{width:23.829333pt;}
._29{width:24.836267pt;}
._1a{width:26.392320pt;}
._19{width:27.543040pt;}
._1d{width:28.858240pt;}
._18{width:30.141440pt;}
._30{width:31.217920pt;}
._1e{width:32.137600pt;}
._1f{width:33.150080pt;}
._27{width:34.952960pt;}
._28{width:35.982720pt;}
._2a{width:36.999680pt;}
._24{width:38.033920pt;}
._35{width:39.210880pt;}
._2c{width:40.105600pt;}
._37{width:41.380480pt;}
._2f{width:42.313813pt;}
._2e{width:43.239680pt;}
._39{width:44.224000pt;}
._31{width:45.258240pt;}
._1b{width:46.362880pt;}
._22{width:47.436160pt;}
._2b{width:48.976640pt;}
._23{width:50.464000pt;}
._34{width:52.695040pt;}
._32{width:53.926187pt;}
._2d{width:55.297920pt;}
._3b{width:56.965760pt;}
._4{width:58.218667pt;}
._26{width:67.924693pt;}
._17{width:71.233280pt;}
._3a{width:79.824427pt;}
._3d{width:84.301440pt;}
._3c{width:95.048320pt;}
._38{width:113.836160pt;}
._33{width:166.888960pt;}
._5{width:177.440000pt;}
._36{width:192.984960pt;}
._1c{width:254.106667pt;}
._7{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fsf{font-size:45.199037pt;}
.fsa{font-size:48.000000pt;}
.fs10{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y42{bottom:-220.186667pt;}
.y41{bottom:-190.226667pt;}
.y40{bottom:-160.306667pt;}
.y3f{bottom:-130.226667pt;}
.y7b{bottom:-127.373333pt;}
.y3e{bottom:-100.306667pt;}
.y7a{bottom:-97.453333pt;}
.y3d{bottom:-70.226667pt;}
.y79{bottom:-67.373333pt;}
.y3c{bottom:-40.306667pt;}
.y78{bottom:-37.453333pt;}
.y45{bottom:-24.160000pt;}
.y7d{bottom:-15.931333pt;}
.y6b{bottom:-14.066667pt;}
.y3b{bottom:-10.226667pt;}
.y77{bottom:-7.373333pt;}
.y0{bottom:0.000000pt;}
.y268{bottom:1.633333pt;}
.y2{bottom:3.520000pt;}
.y109{bottom:4.146667pt;}
.yf9{bottom:4.160000pt;}
.y162{bottom:4.173333pt;}
.y149{bottom:4.186667pt;}
.y107{bottom:4.306667pt;}
.yfb{bottom:4.320000pt;}
.y101{bottom:4.333333pt;}
.y114{bottom:4.346667pt;}
.y44{bottom:4.480000pt;}
.y6a{bottom:4.653333pt;}
.y6d{bottom:4.960000pt;}
.y141{bottom:5.120000pt;}
.y137{bottom:5.440000pt;}
.y143{bottom:5.760000pt;}
.y14c{bottom:5.906667pt;}
.y139{bottom:5.920000pt;}
.y3a{bottom:5.933333pt;}
.y14a{bottom:5.946667pt;}
.y19e{bottom:6.066667pt;}
.y13b{bottom:6.080000pt;}
.y145{bottom:6.240000pt;}
.y1a7{bottom:6.546667pt;}
.y194{bottom:6.706667pt;}
.y1a4{bottom:6.866667pt;}
.y18e{bottom:7.040000pt;}
.y13e{bottom:7.200000pt;}
.y18b{bottom:7.520000pt;}
.y1a9{bottom:7.546667pt;}
.y188{bottom:8.160000pt;}
.y183{bottom:8.640000pt;}
.y1a6{bottom:8.786667pt;}
.y1a3{bottom:9.426667pt;}
.y1b3{bottom:9.600000pt;}
.y1b4{bottom:9.760000pt;}
.y1bb{bottom:10.240000pt;}
.y1b1{bottom:10.400000pt;}
.y160{bottom:10.413333pt;}
.y18a{bottom:10.560000pt;}
.y1a8{bottom:10.586667pt;}
.y5{bottom:11.200000pt;}
.y17a{bottom:11.346667pt;}
.y124{bottom:11.360000pt;}
.y1be{bottom:11.400000pt;}
.y1b9{bottom:11.520000pt;}
.y135{bottom:12.960000pt;}
.y69{bottom:16.173333pt;}
.y131{bottom:16.480000pt;}
.y15e{bottom:16.493333pt;}
.y106{bottom:16.626667pt;}
.y161{bottom:16.640000pt;}
.y121{bottom:16.653333pt;}
.y10f{bottom:16.786667pt;}
.y128{bottom:16.800000pt;}
.y100{bottom:16.813333pt;}
.y113{bottom:16.826667pt;}
.y123{bottom:18.240000pt;}
.y1bd{bottom:18.280000pt;}
.y179{bottom:18.386667pt;}
.y17c{bottom:18.400000pt;}
.y39{bottom:18.440000pt;}
.y1b8{bottom:18.560000pt;}
.y1af{bottom:19.200000pt;}
.y6{bottom:19.520000pt;}
.y62{bottom:20.306667pt;}
.y3{bottom:20.640000pt;}
.y4{bottom:21.920000pt;}
.y76{bottom:22.546667pt;}
.y15f{bottom:22.720000pt;}
.y134{bottom:25.440000pt;}
.y68{bottom:27.853333pt;}
.y105{bottom:28.946667pt;}
.y15c{bottom:28.960000pt;}
.y120{bottom:28.973333pt;}
.y127{bottom:29.120000pt;}
.yff{bottom:29.133333pt;}
.y112{bottom:29.146667pt;}
.y130{bottom:30.560000pt;}
.y38{bottom:30.920000pt;}
.y61{bottom:34.386667pt;}
.y190{bottom:36.640000pt;}
.y133{bottom:37.760000pt;}
.y67{bottom:39.373333pt;}
.y186{bottom:40.640000pt;}
.y11e{bottom:41.120000pt;}
.y10e{bottom:41.266667pt;}
.yfd{bottom:41.280000pt;}
.y104{bottom:41.306667pt;}
.y129{bottom:41.440000pt;}
.y7f{bottom:41.760000pt;}
.y37{bottom:42.120000pt;}
.y1a0{bottom:43.706667pt;}
.y12f{bottom:44.640000pt;}
.y60{bottom:45.426667pt;}
.y132{bottom:49.920000pt;}
.y75{bottom:50.106667pt;}
.y66{bottom:50.893333pt;}
.y1{bottom:51.040000pt;}
.y10d{bottom:53.586667pt;}
.y7c{bottom:56.693333pt;}
.y196{bottom:58.546667pt;}
.y12e{bottom:58.720000pt;}
.y5f{bottom:61.266667pt;}
.y74{bottom:61.786667pt;}
.y177{bottom:62.560000pt;}
.y65{bottom:62.573333pt;}
.y165{bottom:64.000000pt;}
.y16d{bottom:64.040000pt;}
.y10c{bottom:65.746667pt;}
.y73{bottom:73.306667pt;}
.y176{bottom:76.800000pt;}
.y5e{bottom:77.106667pt;}
.y64{bottom:77.613333pt;}
.y10b{bottom:78.066667pt;}
.y164{bottom:78.080000pt;}
.y16c{bottom:78.120000pt;}
.y72{bottom:84.826667pt;}
.y22d{bottom:87.840000pt;}
.yb0{bottom:89.440000pt;}
.y1ad{bottom:89.600000pt;}
.y175{bottom:90.880000pt;}
.y5d{bottom:93.106667pt;}
.y159{bottom:93.920000pt;}
.y1e2{bottom:94.720000pt;}
.y71{bottom:96.506667pt;}
.y1fb{bottom:96.800000pt;}
.y118{bottom:98.240000pt;}
.yf5{bottom:100.800000pt;}
.y1ac{bottom:101.920000pt;}
.yde{bottom:102.720000pt;}
.y22c{bottom:103.200000pt;}
.y35{bottom:104.000000pt;}
.y174{bottom:104.960000pt;}
.y260{bottom:105.760000pt;}
.y5c{bottom:106.706667pt;}
.yaf{bottom:107.040000pt;}
.y209{bottom:107.840000pt;}
.y70{bottom:108.026667pt;}
.y117{bottom:108.960000pt;}
.y158{bottom:111.520000pt;}
.y1e1{bottom:112.320000pt;}
.y1ab{bottom:114.240000pt;}
.y1fa{bottom:114.560000pt;}
.y5b{bottom:117.746667pt;}
.yf4{bottom:118.400000pt;}
.y22b{bottom:118.560000pt;}
.y6f{bottom:119.066667pt;}
.y116{bottom:119.680000pt;}
.ydd{bottom:120.320000pt;}
.y25f{bottom:120.960000pt;}
.y34{bottom:121.600000pt;}
.yae{bottom:124.800000pt;}
.y208{bottom:125.440000pt;}
.y1aa{bottom:126.720000pt;}
.y157{bottom:129.120000pt;}
.y1e0{bottom:129.920000pt;}
.y115{bottom:130.400000pt;}
.y1f9{bottom:132.160000pt;}
.y5a{bottom:133.586667pt;}
.y22a{bottom:133.920000pt;}
.yf3{bottom:136.000000pt;}
.y25e{bottom:136.320000pt;}
.y19f{bottom:137.120000pt;}
.ydc{bottom:137.920000pt;}
.y33{bottom:139.200000pt;}
.y111{bottom:140.800000pt;}
.yad{bottom:142.400000pt;}
.y207{bottom:143.200000pt;}
.y156{bottom:146.746667pt;}
.y1df{bottom:147.546667pt;}
.y59{bottom:149.426667pt;}
.y229{bottom:149.626667pt;}
.y1f8{bottom:149.786667pt;}
.y25d{bottom:151.706667pt;}
.yf2{bottom:153.786667pt;}
.ydb{bottom:155.546667pt;}
.y32{bottom:156.826667pt;}
.y1a5{bottom:158.120000pt;}
.yac{bottom:160.026667pt;}
.y206{bottom:160.826667pt;}
.y155{bottom:164.346667pt;}
.y1de{bottom:165.146667pt;}
.y58{bottom:165.306667pt;}
.y25c{bottom:167.066667pt;}
.y1f7{bottom:167.386667pt;}
.yf1{bottom:171.386667pt;}
.yda{bottom:173.306667pt;}
.y31{bottom:175.386667pt;}
.y1a2{bottom:177.320000pt;}
.yab{bottom:177.626667pt;}
.y205{bottom:178.426667pt;}
.y57{bottom:179.066667pt;}
.y154{bottom:182.106667pt;}
.y25b{bottom:182.426667pt;}
.y1dd{bottom:182.906667pt;}
.y228{bottom:183.546667pt;}
.y1f6{bottom:184.986667pt;}
.yf0{bottom:188.986667pt;}
.y56{bottom:190.106667pt;}
.y30{bottom:190.746667pt;}
.yd9{bottom:190.906667pt;}
.y110{bottom:192.520000pt;}
.yaa{bottom:196.026667pt;}
.y46{bottom:196.840000pt;}
.y1a1{bottom:197.160000pt;}
.y25a{bottom:197.786667pt;}
.y2f{bottom:198.266667pt;}
.y227{bottom:198.906667pt;}
.y153{bottom:199.706667pt;}
.y1dc{bottom:200.506667pt;}
.y1f5{bottom:202.746667pt;}
.y55{bottom:205.946667pt;}
.yef{bottom:206.586667pt;}
.y10a{bottom:207.240000pt;}
.yd8{bottom:208.506667pt;}
.y19d{bottom:211.880000pt;}
.y259{bottom:212.986667pt;}
.y204{bottom:213.626667pt;}
.ya9{bottom:214.586667pt;}
.y226{bottom:217.146667pt;}
.y152{bottom:217.306667pt;}
.y1db{bottom:218.106667pt;}
.y2e{bottom:219.386667pt;}
.y1f4{bottom:220.346667pt;}
.y54{bottom:221.786667pt;}
.yee{bottom:224.186667pt;}
.yd7{bottom:226.106667pt;}
.y258{bottom:228.346667pt;}
.y195{bottom:230.600000pt;}
.y203{bottom:231.386667pt;}
.y151{bottom:234.906667pt;}
.y1da{bottom:235.706667pt;}
.y53{bottom:237.626667pt;}
.y1f3{bottom:237.946667pt;}
.y2d{bottom:240.506667pt;}
.yed{bottom:241.946667pt;}
.yd6{bottom:243.706667pt;}
.y19c{bottom:245.320000pt;}
.y202{bottom:248.986667pt;}
.ya8{bottom:250.906667pt;}
.y150{bottom:252.506667pt;}
.y1d9{bottom:253.306667pt;}
.y52{bottom:253.466667pt;}
.y225{bottom:253.626667pt;}
.y1f2{bottom:255.546667pt;}
.y257{bottom:259.066667pt;}
.yec{bottom:259.546667pt;}
.y19b{bottom:260.040000pt;}
.yd5{bottom:261.466667pt;}
.y2c{bottom:261.786667pt;}
.y201{bottom:266.586667pt;}
.ya7{bottom:268.506667pt;}
.y51{bottom:269.466667pt;}
.y14f{bottom:270.266667pt;}
.y1d8{bottom:271.066667pt;}
.y224{bottom:271.226667pt;}
.y1f1{bottom:273.146667pt;}
.y256{bottom:274.426667pt;}
.y19a{bottom:274.920000pt;}
.yeb{bottom:277.146667pt;}
.yd4{bottom:279.066667pt;}
.y267{bottom:281.626667pt;}
.y2b{bottom:282.906667pt;}
.y200{bottom:284.186667pt;}
.y50{bottom:285.306667pt;}
.ya6{bottom:286.106667pt;}
.y14e{bottom:287.866667pt;}
.y1d7{bottom:288.666667pt;}
.y223{bottom:289.626667pt;}
.y199{bottom:289.640000pt;}
.y1f0{bottom:290.906667pt;}
.yea{bottom:294.746667pt;}
.y108{bottom:295.560000pt;}
.yd3{bottom:296.666667pt;}
.y266{bottom:296.986667pt;}
.y4f{bottom:301.146667pt;}
.y1ff{bottom:301.786667pt;}
.ya5{bottom:303.706667pt;}
.y2a{bottom:304.026667pt;}
.y198{bottom:304.360000pt;}
.y255{bottom:304.986667pt;}
.y1d6{bottom:306.266667pt;}
.y1ef{bottom:308.506667pt;}
.y103{bottom:310.440000pt;}
.y6e{bottom:311.240000pt;}
.ye9{bottom:312.346667pt;}
.yd2{bottom:314.266667pt;}
.y14d{bottom:316.186667pt;}
.y4e{bottom:316.986667pt;}
.y197{bottom:319.240000pt;}
.y1fe{bottom:319.386667pt;}
.ya4{bottom:321.306667pt;}
.y254{bottom:321.626667pt;}
.y29{bottom:322.586667pt;}
.y1d5{bottom:323.866667pt;}
.y222{bottom:325.946667pt;}
.y1ee{bottom:326.106667pt;}
.y14b{bottom:326.760000pt;}
.y265{bottom:327.706667pt;}
.y4d{bottom:328.826667pt;}
.ye8{bottom:330.106667pt;}
.yd1{bottom:331.866667pt;}
.y193{bottom:333.960000pt;}
.y4c{bottom:336.666667pt;}
.y1fd{bottom:337.146667pt;}
.y253{bottom:338.106667pt;}
.ya3{bottom:339.066667pt;}
.y28{bottom:340.186667pt;}
.y1d4{bottom:341.466667pt;}
.y264{bottom:342.906667pt;}
.y221{bottom:343.546667pt;}
.y1ed{bottom:343.706667pt;}
.y148{bottom:344.680000pt;}
.ye7{bottom:347.706667pt;}
.yd0{bottom:349.666667pt;}
.y4b{bottom:352.506667pt;}
.y27{bottom:352.546667pt;}
.y18f{bottom:353.826667pt;}
.y252{bottom:354.786667pt;}
.y1fc{bottom:355.586667pt;}
.ya2{bottom:356.706667pt;}
.y263{bottom:358.306667pt;}
.y1d3{bottom:359.266667pt;}
.y26{bottom:360.226667pt;}
.y1ec{bottom:361.346667pt;}
.y102{bottom:361.986667pt;}
.y147{bottom:362.786667pt;}
.ye6{bottom:365.346667pt;}
.ycf{bottom:367.266667pt;}
.y4a{bottom:368.533333pt;}
.y192{bottom:368.546667pt;}
.y251{bottom:371.266667pt;}
.y262{bottom:373.666667pt;}
.ya1{bottom:374.306667pt;}
.yfe{bottom:376.693333pt;}
.yfc{bottom:376.706667pt;}
.y1d2{bottom:376.866667pt;}
.y220{bottom:378.946667pt;}
.y1eb{bottom:379.106667pt;}
.y146{bottom:380.706667pt;}
.y25{bottom:380.866667pt;}
.ye5{bottom:382.946667pt;}
.y191{bottom:383.266667pt;}
.y49{bottom:384.373333pt;}
.yce{bottom:384.866667pt;}
.y250{bottom:387.746667pt;}
.y261{bottom:389.026667pt;}
.ya0{bottom:391.906667pt;}
.y1d1{bottom:394.466667pt;}
.y21f{bottom:396.546667pt;}
.y1ea{bottom:396.706667pt;}
.y144{bottom:398.146667pt;}
.y48{bottom:400.213333pt;}
.ye4{bottom:400.546667pt;}
.y24{bottom:401.666667pt;}
.ycd{bottom:402.466667pt;}
.y24f{bottom:404.386667pt;}
.y9f{bottom:409.506667pt;}
.y1d0{bottom:412.066667pt;}
.y18d{bottom:412.866667pt;}
.y21e{bottom:414.146667pt;}
.y1e9{bottom:414.306667pt;}
.y47{bottom:416.053333pt;}
.y142{bottom:416.706667pt;}
.ye3{bottom:418.306667pt;}
.y24e{bottom:419.746667pt;}
.ycc{bottom:420.066667pt;}
.y23{bottom:422.306667pt;}
.y9e{bottom:427.266667pt;}
.yfa{bottom:428.226667pt;}
.y1cf{bottom:429.666667pt;}
.y21d{bottom:431.746667pt;}
.y1e8{bottom:431.906667pt;}
.y185{bottom:433.186667pt;}
.y140{bottom:434.146667pt;}
.y24d{bottom:434.946667pt;}
.ye2{bottom:435.906667pt;}
.ycb{bottom:437.826667pt;}
.yf8{bottom:444.386667pt;}
.y9d{bottom:444.866667pt;}
.y1ce{bottom:447.426667pt;}
.y18c{bottom:448.066667pt;}
.y63{bottom:448.373333pt;}
.y1e7{bottom:449.506667pt;}
.y13f{bottom:450.306667pt;}
.ye1{bottom:453.506667pt;}
.yca{bottom:455.426667pt;}
.y9c{bottom:462.466667pt;}
.y13d{bottom:465.026667pt;}
.yf7{bottom:465.506667pt;}
.y24c{bottom:465.666667pt;}
.y189{bottom:465.986667pt;}
.y21c{bottom:467.106667pt;}
.y1e6{bottom:467.266667pt;}
.y22{bottom:471.106667pt;}
.yc9{bottom:473.026667pt;}
.y9b{bottom:480.066667pt;}
.yf6{bottom:481.026667pt;}
.y1cd{bottom:482.626667pt;}
.y21{bottom:484.866667pt;}
.y13c{bottom:485.506667pt;}
.y187{bottom:487.106667pt;}
.ye0{bottom:489.506667pt;}
.yc8{bottom:490.626667pt;}
.y24b{bottom:496.386667pt;}
.y9a{bottom:497.666667pt;}
.y20{bottom:498.626667pt;}
.y13a{bottom:500.226667pt;}
.y1e5{bottom:502.466667pt;}
.y184{bottom:505.666667pt;}
.yc7{bottom:508.226667pt;}
.y24a{bottom:511.746667pt;}
.y1f{bottom:512.386667pt;}
.y99{bottom:515.426667pt;}
.y1cc{bottom:517.826667pt;}
.y138{bottom:518.306667pt;}
.y1e4{bottom:520.066667pt;}
.y182{bottom:521.666667pt;}
.y21b{bottom:521.826667pt;}
.yc6{bottom:525.986667pt;}
.y1e{bottom:526.306667pt;}
.y249{bottom:526.946667pt;}
.y98{bottom:533.026667pt;}
.y1cb{bottom:533.666667pt;}
.y1d{bottom:536.066667pt;}
.y136{bottom:536.226667pt;}
.y21a{bottom:540.386667pt;}
.y248{bottom:542.306667pt;}
.yc5{bottom:543.586667pt;}
.y36{bottom:543.893333pt;}
.y1c{bottom:548.226667pt;}
.y1e3{bottom:550.146667pt;}
.y97{bottom:550.626667pt;}
.y1ca{bottom:551.106667pt;}
.y181{bottom:551.426667pt;}
.y12d{bottom:554.493333pt;}
.y247{bottom:557.693333pt;}
.y1b{bottom:559.773333pt;}
.yc4{bottom:561.213333pt;}
.y1c9{bottom:566.173333pt;}
.y96{bottom:568.253333pt;}
.y180{bottom:568.893333pt;}
.y1a{bottom:571.293333pt;}
.y246{bottom:573.053333pt;}
.y1c8{bottom:576.573333pt;}
.y219{bottom:576.733333pt;}
.yc3{bottom:578.813333pt;}
.y19{bottom:582.813333pt;}
.y95{bottom:585.853333pt;}
.y245{bottom:588.413333pt;}
.y218{bottom:594.333333pt;}
.y18{bottom:594.973333pt;}
.yc2{bottom:596.413333pt;}
.y17f{bottom:596.573333pt;}
.y94{bottom:603.613333pt;}
.y244{bottom:603.773333pt;}
.y1c7{bottom:605.533333pt;}
.y17{bottom:606.493333pt;}
.y17e{bottom:607.293333pt;}
.y217{bottom:611.933333pt;}
.yc1{bottom:614.173333pt;}
.y173{bottom:617.693333pt;}
.y243{bottom:618.973333pt;}
.y93{bottom:621.213333pt;}
.y216{bottom:629.533333pt;}
.y12c{bottom:630.173333pt;}
.y16{bottom:630.333333pt;}
.yc0{bottom:631.773333pt;}
.y1c6{bottom:634.333333pt;}
.y92{bottom:638.813333pt;}
.y15{bottom:640.253333pt;}
.y12b{bottom:646.173333pt;}
.y17d{bottom:646.653333pt;}
.y215{bottom:647.293333pt;}
.y1c5{bottom:649.213333pt;}
.ybf{bottom:649.373333pt;}
.y242{bottom:649.693333pt;}
.y91{bottom:656.413333pt;}
.y14{bottom:661.693333pt;}
.y12a{bottom:662.493333pt;}
.y1c4{bottom:663.933333pt;}
.y214{bottom:664.893333pt;}
.y241{bottom:665.053333pt;}
.ybe{bottom:666.973333pt;}
.y126{bottom:672.893333pt;}
.y90{bottom:674.013333pt;}
.y17b{bottom:675.453333pt;}
.y1c3{bottom:678.653333pt;}
.y13{bottom:679.773333pt;}
.y240{bottom:680.413333pt;}
.y213{bottom:682.493333pt;}
.ybd{bottom:685.373333pt;}
.y8f{bottom:691.773333pt;}
.y1c2{bottom:693.533333pt;}
.y23f{bottom:695.613333pt;}
.y12{bottom:698.013333pt;}
.y212{bottom:700.893333pt;}
.ydf{bottom:702.973333pt;}
.ybc{bottom:703.133333pt;}
.y178{bottom:704.426667pt;}
.y11{bottom:708.093333pt;}
.y1c1{bottom:708.266667pt;}
.y8e{bottom:709.373333pt;}
.y23e{bottom:710.973333pt;}
.ybb{bottom:714.653333pt;}
.y1c0{bottom:722.973333pt;}
.y125{bottom:724.586667pt;}
.y10{bottom:726.173333pt;}
.y23d{bottom:726.333333pt;}
.y8d{bottom:726.973333pt;}
.yba{bottom:732.253333pt;}
.y16b{bottom:733.213333pt;}
.y211{bottom:737.213333pt;}
.y1bf{bottom:737.693333pt;}
.y122{bottom:739.293333pt;}
.yf{bottom:740.253333pt;}
.y23c{bottom:741.693333pt;}
.y8c{bottom:744.573333pt;}
.y172{bottom:747.933333pt;}
.yb9{bottom:749.853333pt;}
.y1bc{bottom:752.573333pt;}
.ye{bottom:753.693333pt;}
.y210{bottom:754.973333pt;}
.y23b{bottom:757.053333pt;}
.y8b{bottom:762.213333pt;}
.y171{bottom:762.853333pt;}
.yd{bottom:767.013333pt;}
.yb8{bottom:767.493333pt;}
.y11f{bottom:768.280000pt;}
.y11d{bottom:768.293333pt;}
.y23a{bottom:772.453333pt;}
.y20f{bottom:773.413333pt;}
.yc{bottom:777.093333pt;}
.y170{bottom:777.573333pt;}
.y8a{bottom:779.973333pt;}
.y1ba{bottom:781.413333pt;}
.yb7{bottom:785.253333pt;}
.y239{bottom:787.653333pt;}
.y16f{bottom:792.293333pt;}
.yb{bottom:792.773333pt;}
.y20e{bottom:794.533333pt;}
.y89{bottom:797.573333pt;}
.yb6{bottom:802.853333pt;}
.y238{bottom:803.013333pt;}
.y16e{bottom:807.173333pt;}
.y1b7{bottom:807.813333pt;}
.ya{bottom:814.533333pt;}
.y88{bottom:815.173333pt;}
.y237{bottom:818.373333pt;}
.y11c{bottom:819.813333pt;}
.yb5{bottom:820.453333pt;}
.y163{bottom:821.893333pt;}
.y20d{bottom:830.853333pt;}
.y87{bottom:832.773333pt;}
.y236{bottom:833.733333pt;}
.y11b{bottom:835.973333pt;}
.y16a{bottom:836.613333pt;}
.y1b6{bottom:836.773333pt;}
.yb4{bottom:838.053333pt;}
.y20c{bottom:848.453333pt;}
.y235{bottom:849.093333pt;}
.y86{bottom:850.373333pt;}
.y169{bottom:851.493333pt;}
.yb3{bottom:855.653333pt;}
.y11a{bottom:856.933333pt;}
.y234{bottom:864.453333pt;}
.y1b5{bottom:865.573333pt;}
.y9{bottom:865.733333pt;}
.y168{bottom:866.213333pt;}
.y85{bottom:868.133333pt;}
.y119{bottom:871.813333pt;}
.yb2{bottom:874.213333pt;}
.y233{bottom:879.653333pt;}
.y1b2{bottom:880.453333pt;}
.y167{bottom:880.933333pt;}
.y20b{bottom:883.813333pt;}
.y84{bottom:885.733333pt;}
.yb1{bottom:891.813333pt;}
.y232{bottom:895.013333pt;}
.y166{bottom:895.813333pt;}
.y20a{bottom:902.213333pt;}
.y8{bottom:902.533333pt;}
.y83{bottom:903.333333pt;}
.y1ae{bottom:906.213333pt;}
.y231{bottom:910.373333pt;}
.y15d{bottom:911.800000pt;}
.y15b{bottom:911.813333pt;}
.y82{bottom:920.933333pt;}
.y230{bottom:925.733333pt;}
.y1b0{bottom:936.453333pt;}
.y81{bottom:938.533333pt;}
.y22f{bottom:941.093333pt;}
.y7{bottom:945.093333pt;}
.y80{bottom:956.133333pt;}
.y22e{bottom:956.293333pt;}
.y15a{bottom:957.413333pt;}
.y6c{bottom:974.400000pt;}
.y7e{bottom:998.400000pt;}
.y43{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h16{height:5.160000pt;}
.h68{height:5.562500pt;}
.h2{height:12.000000pt;}
.h2e{height:14.066667pt;}
.h4f{height:14.080000pt;}
.h2f{height:14.226667pt;}
.h64{height:14.240000pt;}
.h4e{height:14.260000pt;}
.h1a{height:15.040000pt;}
.h45{height:15.506667pt;}
.h41{height:16.146667pt;}
.h46{height:16.786667pt;}
.h42{height:17.266667pt;}
.h48{height:17.298667pt;}
.h43{height:17.426667pt;}
.h47{height:17.906667pt;}
.h5d{height:18.546667pt;}
.h59{height:19.058667pt;}
.h5c{height:19.186667pt;}
.h57{height:19.666667pt;}
.h23{height:19.680000pt;}
.h44{height:19.826667pt;}
.h56{height:20.306667pt;}
.h5e{height:20.352000pt;}
.h15{height:20.728125pt;}
.h22{height:21.006562pt;}
.h54{height:22.866667pt;}
.h61{height:25.106667pt;}
.h63{height:25.746667pt;}
.h2c{height:26.368125pt;}
.hb{height:26.381250pt;}
.hf{height:27.523125pt;}
.h2b{height:27.628404pt;}
.h51{height:28.146667pt;}
.h52{height:28.160000pt;}
.h3a{height:28.180000pt;}
.h62{height:28.306667pt;}
.h65{height:28.320000pt;}
.h4{height:30.400000pt;}
.h32{height:30.610871pt;}
.h40{height:31.383316pt;}
.h20{height:32.250000pt;}
.h13{height:35.114107pt;}
.h5{height:36.431250pt;}
.h21{height:37.410000pt;}
.h5f{height:38.153511pt;}
.h66{height:38.413438pt;}
.h4b{height:38.706667pt;}
.h49{height:38.712000pt;}
.h4a{height:38.720000pt;}
.h28{height:38.877839pt;}
.h11{height:39.571875pt;}
.ha{height:40.103437pt;}
.h18{height:40.635000pt;}
.h12{height:41.442606pt;}
.hc{height:42.084375pt;}
.h1b{height:43.215000pt;}
.h36{height:44.073883pt;}
.h60{height:44.306667pt;}
.h3f{height:44.638750pt;}
.h14{height:47.109375pt;}
.h1c{height:48.375000pt;}
.h10{height:49.148438pt;}
.h1e{height:49.336436pt;}
.h39{height:50.872000pt;}
.h30{height:50.876000pt;}
.h31{height:50.880000pt;}
.h33{height:50.900000pt;}
.h37{height:50.912000pt;}
.h38{height:50.920000pt;}
.h3b{height:51.036000pt;}
.h3c{height:51.040000pt;}
.h17{height:51.240000pt;}
.h27{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2d{height:53.535000pt;}
.h2a{height:54.598989pt;}
.h67{height:55.298750pt;}
.h9{height:57.787500pt;}
.h19{height:58.563750pt;}
.hd{height:60.288750pt;}
.h29{height:62.781250pt;}
.h53{height:62.812500pt;}
.he{height:64.500000pt;}
.h24{height:66.625000pt;}
.h26{height:66.750000pt;}
.h3d{height:68.636000pt;}
.h3e{height:68.640000pt;}
.h7{height:77.951250pt;}
.h58{height:78.706667pt;}
.h1f{height:84.800000pt;}
.h8{height:85.785000pt;}
.h55{height:86.546667pt;}
.h34{height:87.672000pt;}
.h35{height:87.680000pt;}
.h4c{height:87.986667pt;}
.h4d{height:88.020000pt;}
.h5b{height:92.672000pt;}
.h50{height:114.880000pt;}
.h5a{height:122.418667pt;}
.h25{height:128.820000pt;}
.h1d{height:426.946667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w34{width:42.112000pt;}
.w37{width:48.498667pt;}
.w35{width:53.906667pt;}
.w3a{width:60.000000pt;}
.w32{width:60.018667pt;}
.w38{width:64.626667pt;}
.w27{width:65.906667pt;}
.w21{width:65.916000pt;}
.w22{width:65.920000pt;}
.w26{width:67.520000pt;}
.w36{width:68.946667pt;}
.w3{width:72.952000pt;}
.w39{width:76.026667pt;}
.w33{width:77.920000pt;}
.w29{width:77.946667pt;}
.w24{width:77.952000pt;}
.w25{width:77.960000pt;}
.w28{width:90.098667pt;}
.w23{width:90.100000pt;}
.w1f{width:90.112000pt;}
.w20{width:90.120000pt;}
.w1c{width:91.512000pt;}
.w1d{width:91.520000pt;}
.w2e{width:114.072000pt;}
.wc{width:118.106667pt;}
.we{width:118.112000pt;}
.wf{width:118.120000pt;}
.w5{width:137.306667pt;}
.w16{width:153.293333pt;}
.w15{width:153.306667pt;}
.w1b{width:156.013333pt;}
.w17{width:156.026667pt;}
.w18{width:156.040000pt;}
.w1e{width:157.453333pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w30{width:171.373333pt;}
.w19{width:175.226667pt;}
.w1a{width:175.240000pt;}
.w2f{width:180.053333pt;}
.wb{width:182.893333pt;}
.wd{width:182.906667pt;}
.w2a{width:191.693333pt;}
.w31{width:200.666667pt;}
.w2b{width:204.026667pt;}
.w2c{width:245.973333pt;}
.w11{width:318.933333pt;}
.w14{width:318.946667pt;}
.w12{width:320.213333pt;}
.w10{width:320.218667pt;}
.w13{width:320.226667pt;}
.w2d{width:395.738667pt;}
.w7{width:473.546667pt;}
.w3b{width:552.120000pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x63{left:3.780000pt;}
.x2{left:7.192000pt;}
.x36{left:8.466667pt;}
.x15{left:9.592000pt;}
.x43{left:11.520000pt;}
.x37{left:12.626667pt;}
.x46{left:13.946667pt;}
.x52{left:14.866667pt;}
.x32{left:15.840000pt;}
.x33{left:17.440000pt;}
.x1b{left:18.893333pt;}
.x49{left:20.480000pt;}
.x3c{left:21.760000pt;}
.x4a{left:22.746667pt;}
.x51{left:24.466667pt;}
.x3a{left:25.586667pt;}
.x4e{left:28.026667pt;}
.x4b{left:29.786667pt;}
.x44{left:31.706667pt;}
.x3d{left:35.200000pt;}
.x26{left:36.813333pt;}
.x5b{left:37.906667pt;}
.x25{left:39.520000pt;}
.x28{left:42.120000pt;}
.x59{left:43.226667pt;}
.x23{left:45.786667pt;}
.x38{left:48.786667pt;}
.x50{left:49.946667pt;}
.x39{left:51.506667pt;}
.x4f{left:54.266667pt;}
.x3f{left:55.680000pt;}
.x24{left:59.066667pt;}
.x4c{left:60.186667pt;}
.x40{left:61.106667pt;}
.x4d{left:62.426667pt;}
.x34{left:64.800000pt;}
.x3{left:65.746667pt;}
.x41{left:68.000000pt;}
.x18{left:71.560000pt;}
.x16{left:72.680000pt;}
.x3e{left:74.413333pt;}
.x30{left:77.746667pt;}
.x56{left:79.706667pt;}
.x14{left:82.760000pt;}
.x1a{left:84.360000pt;}
.x57{left:87.706667pt;}
.x54{left:88.826667pt;}
.x62{left:89.952000pt;}
.xd{left:92.832000pt;}
.x1{left:96.040000pt;}
.x8{left:100.032000pt;}
.x27{left:103.226667pt;}
.xe{left:106.752000pt;}
.x20{left:107.872000pt;}
.x1f{left:110.592000pt;}
.x21{left:114.112000pt;}
.x11{left:117.952000pt;}
.x6{left:119.552000pt;}
.x2b{left:134.586667pt;}
.x2d{left:137.146667pt;}
.x2f{left:139.866667pt;}
.x2e{left:142.586667pt;}
.x2a{left:146.266667pt;}
.x2c{left:159.386667pt;}
.x4{left:169.000000pt;}
.xb{left:170.426667pt;}
.x1d{left:183.866667pt;}
.x1e{left:187.226667pt;}
.x58{left:198.120000pt;}
.xc{left:222.786667pt;}
.x7{left:226.786667pt;}
.x31{left:249.346667pt;}
.x5d{left:258.146667pt;}
.x17{left:269.506667pt;}
.x19{left:275.866667pt;}
.x53{left:287.746667pt;}
.xf{left:331.906667pt;}
.x5e{left:336.066667pt;}
.x42{left:345.026667pt;}
.x9{left:374.333333pt;}
.x5a{left:378.186667pt;}
.x10{left:395.133333pt;}
.x5{left:396.893333pt;}
.x35{left:405.386667pt;}
.xa{left:408.093333pt;}
.x29{left:416.266667pt;}
.x5f{left:432.106667pt;}
.x12{left:434.813333pt;}
.x13{left:436.253333pt;}
.x55{left:491.786667pt;}
.x45{left:501.066667pt;}
.x5c{left:549.573333pt;}
.x1c{left:551.336000pt;}
.x3b{left:561.413333pt;}
.x47{left:591.173333pt;}
.x60{left:614.213333pt;}
.x22{left:619.173333pt;}
.x48{left:669.120000pt;}
.x61{left:690.240000pt;}
}




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