
    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_6eba4ac88e19d3703e5bff9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_ae69adcb6ae482ab2dcb6fbd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_1384fbabe7159c990fdbe481.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_a5c3d199a3b7dc72fe54e733.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_6fbd1d08371174dd7667876e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_d89b8d73dfcd6b5ea61f5ac9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_1384fbabe7159c990fdbe481.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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_feac15c70c8e3ff9d2e861bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.707031;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_59447e8106190dc8b2cea1fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984863;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_c6bf82aee58111140cbe6f4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.994141;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_b041403220faac4b46c18df8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ae69adcb6ae482ab2dcb6fbd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.984000;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_1384fbabe7159c990fdbe481.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_a5c3d199a3b7dc72fe54e733.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_a3b8e1ddadd20b0c2850cb36.woff2')format("woff");}.fff{font-family:fff;line-height:0.882324;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_ae69adcb6ae482ab2dcb6fbd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;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_1384fbabe7159c990fdbe481.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;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_a5c3d199a3b7dc72fe54e733.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.984000;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:ff13;src:url('chunks/assets/font_a060ac2954cd76152c715c59.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.984863;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:ff14;src:url('chunks/assets/font_16af2e3d67361f6d9202184c.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_09bd1be183c303378107f9e3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_634015f12f7181fb5920563f.woff2')format("woff");}.ff16{font-family:ff16;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;}
.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);}
.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);}
.m1{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);}
.v7{vertical-align:-48.000180px;}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.976000px;}
.v8{vertical-align:12.000180px;}
.v2{vertical-align:24.276000px;}
.v1{vertical-align:35.100000px;}
.v6{vertical-align:60.000000px;}
.v5{vertical-align:90.000000px;}
.lsb{letter-spacing:-3.644550px;}
.ls7{letter-spacing:-1.776000px;}
.lsa{letter-spacing:-0.972540px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.005088px;}
.ls3{letter-spacing:0.005688px;}
.lse{letter-spacing:0.225000px;}
.lsd{letter-spacing:0.357662px;}
.lsc{letter-spacing:0.539460px;}
.ls9{letter-spacing:1.424430px;}
.ls2{letter-spacing:1.425000px;}
.ls0{letter-spacing:3.696000px;}
.ls1{letter-spacing:17.200200px;}
.ls5{letter-spacing:24.492000px;}
.ls8{letter-spacing:1423.579200px;}
.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;}
}
.ws91{word-spacing:-44.982000px;}
.ws124{word-spacing:-22.500000px;}
.ws1{word-spacing:-20.856000px;}
.ws127{word-spacing:-16.680000px;}
.ws3{word-spacing:-16.245000px;}
.ws92{word-spacing:-16.244430px;}
.wsd1{word-spacing:-15.551460px;}
.ws5{word-spacing:-15.012000px;}
.ws4{word-spacing:-14.820000px;}
.ws7{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.344000px;}
.ws0{word-spacing:-12.411360px;}
.wsad{word-spacing:-11.700000px;}
.ws11d{word-spacing:-11.520480px;}
.ws2{word-spacing:-11.520000px;}
.wsca{word-spacing:-10.800450px;}
.wsd0{word-spacing:-10.310618px;}
.ws6{word-spacing:-9.952956px;}
.wsf8{word-spacing:-7.637760px;}
.wscc{word-spacing:-7.155000px;}
.wsc9{word-spacing:-6.074550px;}
.ws13{word-spacing:-5.238000px;}
.wscb{word-spacing:-5.175450px;}
.wsc8{word-spacing:-4.914000px;}
.ws110{word-spacing:-4.806000px;}
.ws72{word-spacing:-4.644000px;}
.wsc{word-spacing:-4.290000px;}
.ws83{word-spacing:-4.265460px;}
.wsb{word-spacing:-3.960000px;}
.ws12{word-spacing:-3.942000px;}
.ws25{word-spacing:-3.780000px;}
.wsde{word-spacing:-3.618000px;}
.ws106{word-spacing:-3.563460px;}
.ws3b{word-spacing:-3.456000px;}
.ws113{word-spacing:-3.402000px;}
.ws50{word-spacing:-3.348000px;}
.ws90{word-spacing:-3.240000px;}
.ws3a{word-spacing:-3.134430px;}
.ws2e{word-spacing:-3.132000px;}
.ws86{word-spacing:-3.078540px;}
.ws89{word-spacing:-3.024000px;}
.ws112{word-spacing:-2.916000px;}
.ws4c{word-spacing:-2.861460px;}
.wsdb{word-spacing:-2.808000px;}
.ws79{word-spacing:-2.753460px;}
.ws11c{word-spacing:-2.639520px;}
.ws74{word-spacing:-2.538000px;}
.ws4f{word-spacing:-2.484540px;}
.ws11f{word-spacing:-2.474550px;}
.ws47{word-spacing:-2.430000px;}
.wsef{word-spacing:-2.268540px;}
.ws116{word-spacing:-2.106000px;}
.ws38{word-spacing:-2.051460px;}
.ws123{word-spacing:-2.025000px;}
.wsd5{word-spacing:-1.998000px;}
.wsa3{word-spacing:-1.944000px;}
.ws104{word-spacing:-1.836000px;}
.wsd9{word-spacing:-1.782000px;}
.ws76{word-spacing:-1.728000px;}
.ws71{word-spacing:-1.674540px;}
.ws107{word-spacing:-1.512000px;}
.wsfa{word-spacing:-1.457460px;}
.wse5{word-spacing:-1.404000px;}
.ws59{word-spacing:-1.296000px;}
.wsec{word-spacing:-1.241460px;}
.ws4e{word-spacing:-1.188000px;}
.ws41{word-spacing:-1.026000px;}
.ws67{word-spacing:-0.918000px;}
.ws11e{word-spacing:-0.810450px;}
.ws9d{word-spacing:-0.810000px;}
.ws11b{word-spacing:-0.647460px;}
.ws6d{word-spacing:-0.594000px;}
.ws2c{word-spacing:-0.540000px;}
.wsa4{word-spacing:-0.539460px;}
.ws37{word-spacing:-0.486000px;}
.wsaa{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.378000px;}
.ws120{word-spacing:-0.225000px;}
.ws5a{word-spacing:-0.216000px;}
.ws98{word-spacing:-0.162540px;}
.ws43{word-spacing:-0.108000px;}
.ws121{word-spacing:-0.090000px;}
.ws35{word-spacing:-0.054000px;}
.ws122{word-spacing:-0.045450px;}
.ws9{word-spacing:0.000000px;}
.ws10a{word-spacing:0.108000px;}
.ws105{word-spacing:0.216000px;}
.ws78{word-spacing:0.270000px;}
.ws80{word-spacing:0.378000px;}
.ws40{word-spacing:0.432000px;}
.ws18{word-spacing:0.486000px;}
.ws103{word-spacing:0.539460px;}
.ws26{word-spacing:0.594000px;}
.ws2b{word-spacing:0.644436px;}
.wsc3{word-spacing:0.647460px;}
.ws5d{word-spacing:0.756540px;}
.wsa5{word-spacing:0.810000px;}
.wsa0{word-spacing:0.864540px;}
.ws52{word-spacing:0.918000px;}
.ws2a{word-spacing:0.972000px;}
.ws84{word-spacing:0.972540px;}
.wsf5{word-spacing:1.026000px;}
.ws7a{word-spacing:1.080000px;}
.ws7b{word-spacing:1.134000px;}
.ws10e{word-spacing:1.188000px;}
.ws7c{word-spacing:1.241460px;}
.wsd4{word-spacing:1.296000px;}
.wsc4{word-spacing:1.349460px;}
.ws56{word-spacing:1.396278px;}
.ws73{word-spacing:1.404000px;}
.wsdc{word-spacing:1.457460px;}
.ws8a{word-spacing:1.512000px;}
.wsa2{word-spacing:1.566540px;}
.ws62{word-spacing:1.620000px;}
.wsab{word-spacing:1.674540px;}
.ws77{word-spacing:1.728000px;}
.wsa{word-spacing:1.776000px;}
.ws4d{word-spacing:1.782000px;}
.wsc7{word-spacing:1.890000px;}
.ws61{word-spacing:1.998000px;}
.ws57{word-spacing:2.106000px;}
.ws3c{word-spacing:2.159460px;}
.ws44{word-spacing:2.214000px;}
.ws117{word-spacing:2.268540px;}
.ws65{word-spacing:2.322000px;}
.ws8f{word-spacing:2.376540px;}
.ws46{word-spacing:2.592000px;}
.ws34{word-spacing:2.646000px;}
.wse6{word-spacing:2.700000px;}
.wsfd{word-spacing:2.753460px;}
.ws63{word-spacing:2.808000px;}
.ws5f{word-spacing:2.861460px;}
.ws51{word-spacing:2.916000px;}
.ws28{word-spacing:3.024000px;}
.ws68{word-spacing:3.078540px;}
.ws48{word-spacing:3.186540px;}
.wsc2{word-spacing:3.240000px;}
.ws87{word-spacing:3.348000px;}
.ws9e{word-spacing:3.402000px;}
.wsd7{word-spacing:3.510000px;}
.ws115{word-spacing:3.563460px;}
.ws20{word-spacing:3.564000px;}
.ws10c{word-spacing:3.618000px;}
.ws4b{word-spacing:3.671460px;}
.wsc6{word-spacing:3.726000px;}
.ws54{word-spacing:3.780540px;}
.wsa9{word-spacing:3.834000px;}
.wsdf{word-spacing:3.888540px;}
.ws6f{word-spacing:3.942000px;}
.ws8c{word-spacing:3.996540px;}
.ws7f{word-spacing:4.050000px;}
.ws66{word-spacing:4.212000px;}
.ws69{word-spacing:4.320000px;}
.ws36{word-spacing:4.481460px;}
.ws6e{word-spacing:4.536000px;}
.wsf7{word-spacing:4.590540px;}
.wsd3{word-spacing:4.698540px;}
.ws45{word-spacing:4.752000px;}
.ws4a{word-spacing:4.806000px;}
.ws9c{word-spacing:4.860000px;}
.ws19{word-spacing:4.914000px;}
.wsb6{word-spacing:4.968000px;}
.ws81{word-spacing:5.022000px;}
.wsf3{word-spacing:5.075460px;}
.ws8b{word-spacing:5.183460px;}
.ws30{word-spacing:5.184000px;}
.ws8e{word-spacing:5.238000px;}
.wsf1{word-spacing:5.292540px;}
.ws64{word-spacing:5.346000px;}
.ws96{word-spacing:5.400540px;}
.wsf9{word-spacing:5.454000px;}
.wsd8{word-spacing:5.562000px;}
.wse8{word-spacing:5.616000px;}
.ws1a{word-spacing:5.670000px;}
.wsa7{word-spacing:5.724000px;}
.ws109{word-spacing:5.777460px;}
.ws7e{word-spacing:5.832000px;}
.wsf2{word-spacing:5.885460px;}
.ws55{word-spacing:5.940000px;}
.wsc5{word-spacing:5.993460px;}
.wsee{word-spacing:6.014736px;}
.ws60{word-spacing:6.048000px;}
.wsb9{word-spacing:6.102540px;}
.ws6a{word-spacing:6.210540px;}
.ws1b{word-spacing:6.264000px;}
.wsd{word-spacing:6.318000px;}
.ws2d{word-spacing:6.372000px;}
.wsda{word-spacing:6.426000px;}
.wse0{word-spacing:6.480000px;}
.ws7d{word-spacing:6.534000px;}
.ws14{word-spacing:6.588000px;}
.ws11a{word-spacing:6.642000px;}
.wse1{word-spacing:6.695460px;}
.wsdd{word-spacing:6.804540px;}
.wsb7{word-spacing:6.912540px;}
.ws11{word-spacing:7.020000px;}
.ws93{word-spacing:7.074000px;}
.ws5e{word-spacing:7.128000px;}
.wsbf{word-spacing:7.236000px;}
.ws10f{word-spacing:7.344000px;}
.wsf0{word-spacing:7.397460px;}
.ws2f{word-spacing:7.398000px;}
.ws32{word-spacing:7.452000px;}
.ws8d{word-spacing:7.506540px;}
.ws49{word-spacing:7.560000px;}
.ws53{word-spacing:7.668000px;}
.wsfc{word-spacing:7.776000px;}
.ws9b{word-spacing:7.830000px;}
.ws3f{word-spacing:7.938000px;}
.wsbe{word-spacing:7.991460px;}
.ws88{word-spacing:8.316540px;}
.wsac{word-spacing:8.424540px;}
.ws95{word-spacing:8.478000px;}
.ws10d{word-spacing:8.532000px;}
.ws6b{word-spacing:8.586000px;}
.ws82{word-spacing:8.640000px;}
.ws114{word-spacing:8.748000px;}
.wsb8{word-spacing:8.801460px;}
.ws58{word-spacing:8.964000px;}
.wsed{word-spacing:9.072000px;}
.ws10b{word-spacing:9.288000px;}
.wse7{word-spacing:9.503460px;}
.wsfe{word-spacing:9.666000px;}
.wsbc{word-spacing:9.719460px;}
.ws16{word-spacing:9.828000px;}
.ws111{word-spacing:9.882000px;}
.ws9a{word-spacing:9.936540px;}
.wse4{word-spacing:9.990000px;}
.ws85{word-spacing:10.044000px;}
.ws70{word-spacing:10.098000px;}
.ws27{word-spacing:10.206000px;}
.wse3{word-spacing:10.313460px;}
.ws75{word-spacing:10.476000px;}
.wsf6{word-spacing:10.530540px;}
.ws39{word-spacing:10.638540px;}
.wsfb{word-spacing:10.692000px;}
.ws33{word-spacing:10.800000px;}
.ws119{word-spacing:10.854000px;}
.wsff{word-spacing:11.015460px;}
.ws42{word-spacing:11.070000px;}
.ws9f{word-spacing:11.340540px;}
.wse{word-spacing:11.394000px;}
.ws102{word-spacing:11.556000px;}
.ws97{word-spacing:11.664000px;}
.wsbb{word-spacing:11.718000px;}
.ws100{word-spacing:11.772000px;}
.wsd6{word-spacing:11.825460px;}
.wse9{word-spacing:11.880000px;}
.ws118{word-spacing:11.988000px;}
.wsbd{word-spacing:12.096000px;}
.ws108{word-spacing:12.150540px;}
.ws29{word-spacing:12.258000px;}
.ws17{word-spacing:12.474000px;}
.ws99{word-spacing:12.635460px;}
.ws22{word-spacing:12.636000px;}
.wsc0{word-spacing:12.690000px;}
.ws3d{word-spacing:12.743460px;}
.ws5c{word-spacing:12.906000px;}
.wseb{word-spacing:13.068000px;}
.wsa1{word-spacing:13.230000px;}
.wsf{word-spacing:13.284000px;}
.ws1c{word-spacing:13.554000px;}
.wsa6{word-spacing:13.716000px;}
.wsc1{word-spacing:13.878000px;}
.ws1f{word-spacing:13.932000px;}
.wsf4{word-spacing:13.986000px;}
.wsa8{word-spacing:14.039460px;}
.ws3e{word-spacing:14.094000px;}
.wsea{word-spacing:15.012000px;}
.wsb5{word-spacing:15.228000px;}
.ws31{word-spacing:15.822000px;}
.ws15{word-spacing:15.876000px;}
.ws94{word-spacing:15.876540px;}
.ws5b{word-spacing:15.930000px;}
.wsba{word-spacing:16.632000px;}
.ws10{word-spacing:17.388000px;}
.ws23{word-spacing:19.494000px;}
.ws21{word-spacing:21.762000px;}
.wse2{word-spacing:23.058000px;}
.ws1e{word-spacing:23.706000px;}
.ws101{word-spacing:25.433460px;}
.ws1d{word-spacing:27.648000px;}
.ws6c{word-spacing:38.231460px;}
.wscd{word-spacing:93.690000px;}
.ws128{word-spacing:99.982080px;}
.wscf{word-spacing:171.585000px;}
.wsce{word-spacing:175.590000px;}
.wsb1{word-spacing:220.365000px;}
.wsb0{word-spacing:228.780000px;}
.wsaf{word-spacing:230.895000px;}
.wsb2{word-spacing:271.980000px;}
.wsd2{word-spacing:273.690000px;}
.wsb3{word-spacing:285.165000px;}
.wsb4{word-spacing:293.580000px;}
.wsae{word-spacing:326.520000px;}
.ws126{word-spacing:1406.957040px;}
.ws125{word-spacing:1640.147400px;}
._67{margin-left:-1915.380000px;}
._66{margin-left:-1890.347400px;}
._6c{margin-left:-1853.998800px;}
._68{margin-left:-1700.880000px;}
._64{margin-left:-1664.640000px;}
._6a{margin-left:-1323.654000px;}
._6b{margin-left:-1253.817600px;}
._c{margin-left:-1224.576000px;}
._b{margin-left:-1120.512000px;}
._69{margin-left:-1053.595200px;}
._d{margin-left:-810.960000px;}
._6e{margin-left:-506.880000px;}
._65{margin-left:-249.569100px;}
._a{margin-left:-59.040000px;}
._5{margin-left:-47.970000px;}
._e{margin-left:-21.005460px;}
._11{margin-left:-19.872000px;}
._10{margin-left:-10.935000px;}
._f{margin-left:-9.882000px;}
._12{margin-left:-8.262000px;}
._9{margin-left:-7.171200px;}
._3{margin-left:-5.958720px;}
._2{margin-left:-4.452000px;}
._1{margin-left:-3.239400px;}
._0{margin-left:-1.776000px;}
._8{width:1.026000px;}
._5f{width:2.106000px;}
._15{width:3.132000px;}
._4{width:4.150560px;}
._13{width:5.306880px;}
._60{width:10.560000px;}
._6{width:11.685000px;}
._62{width:13.274550px;}
._7{width:14.820000px;}
._61{width:21.600000px;}
._63{width:24.075000px;}
._50{width:34.200000px;}
._14{width:39.420000px;}
._30{width:42.525000px;}
._18{width:45.000000px;}
._35{width:100.395000px;}
._6d{width:119.999340px;}
._46{width:141.884550px;}
._56{width:147.888720px;}
._48{width:151.164660px;}
._4a{width:153.950640px;}
._39{width:170.415450px;}
._36{width:176.039100px;}
._40{width:182.385000px;}
._49{width:185.985000px;}
._37{width:188.054550px;}
._3b{width:189.585000px;}
._52{width:191.088720px;}
._47{width:193.185000px;}
._4f{width:207.270000px;}
._54{width:208.564890px;}
._2a{width:209.565450px;}
._42{width:211.175340px;}
._3e{width:213.615000px;}
._1e{width:224.325900px;}
._53{width:230.103720px;}
._1a{width:231.165450px;}
._17{width:232.740000px;}
._4e{width:235.530000px;}
._41{width:237.224250px;}
._1f{width:238.950000px;}
._32{width:240.538950px;}
._1d{width:242.325000px;}
._45{width:258.833910px;}
._20{width:261.180000px;}
._21{width:267.525900px;}
._1b{width:269.550000px;}
._23{width:274.365000px;}
._51{width:278.388720px;}
._2e{width:285.525900px;}
._2d{width:287.100900px;}
._27{width:289.125900px;}
._22{width:290.520000px;}
._2b{width:296.391900px;}
._19{width:298.956900px;}
._29{width:304.380000px;}
._26{width:310.725900px;}
._24{width:312.750000px;}
._58{width:318.420000px;}
._28{width:325.889100px;}
._5b{width:327.600000px;}
._1c{width:333.810900px;}
._4d{width:335.931240px;}
._25{width:349.740900px;}
._2c{width:361.890900px;}
._43{width:366.889470px;}
._57{width:368.054550px;}
._2f{width:370.395900px;}
._5c{width:371.673720px;}
._4c{width:385.159470px;}
._5e{width:393.273720px;}
._5a{width:398.358720px;}
._4b{width:401.631240px;}
._3f{width:410.354550px;}
._16{width:412.965000px;}
._38{width:416.491350px;}
._44{width:431.689890px;}
._31{width:434.760750px;}
._3d{width:443.176350px;}
._55{width:455.944320px;}
._3a{width:497.520000px;}
._3c{width:521.550000px;}
._34{width:593.325000px;}
._33{width:762.210000px;}
._5d{width:1951.695000px;}
._59{width:2031.435000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.824000px;}
.fs9{font-size:35.802000px;}
.fs6{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:51.714000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fsd{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fsc{font-size:90.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:41.145600px;}
.y2{bottom:43.519200px;}
.y1{bottom:43.533750px;}
.y158{bottom:68.656350px;}
.y12a{bottom:68.806200px;}
.y1b8{bottom:68.812350px;}
.y1d0{bottom:68.821350px;}
.y4f{bottom:68.827200px;}
.ybb{bottom:68.836650px;}
.y6b{bottom:68.849400px;}
.y142{bottom:68.878350px;}
.y225{bottom:69.481350px;}
.yf9{bottom:69.529500px;}
.ye{bottom:74.016750px;}
.y17e{bottom:74.806200px;}
.y17f{bottom:74.918700px;}
.y187{bottom:74.929950px;}
.y188{bottom:74.941200px;}
.y189{bottom:74.952450px;}
.y18a{bottom:74.963700px;}
.y18b{bottom:74.974950px;}
.y18c{bottom:74.986200px;}
.y18d{bottom:74.997450px;}
.y18e{bottom:75.008700px;}
.y18f{bottom:75.019950px;}
.y190{bottom:75.031200px;}
.y191{bottom:75.042450px;}
.y192{bottom:75.053700px;}
.y193{bottom:75.064950px;}
.y194{bottom:75.076200px;}
.y265{bottom:75.079350px;}
.y195{bottom:75.087450px;}
.y1cf{bottom:85.318350px;}
.y4e{bottom:85.324200px;}
.y1b7{bottom:85.327350px;}
.yba{bottom:85.333650px;}
.y157{bottom:85.342350px;}
.y6a{bottom:85.346400px;}
.y141{bottom:85.375350px;}
.y224{bottom:86.032350px;}
.yf8{bottom:86.080500px;}
.yd{bottom:87.516750px;}
.y264{bottom:88.669350px;}
.y263{bottom:96.853350px;}
.yc{bottom:101.016750px;}
.y1ce{bottom:101.815350px;}
.y1b6{bottom:101.824350px;}
.y4d{bottom:101.830200px;}
.yb9{bottom:101.830650px;}
.y69{bottom:101.843400px;}
.y140{bottom:101.872350px;}
.y156{bottom:102.028350px;}
.y223{bottom:102.583350px;}
.yf7{bottom:102.631500px;}
.y2f4{bottom:113.999955px;}
.yb{bottom:114.516750px;}
.y262{bottom:115.849350px;}
.y1cd{bottom:118.312350px;}
.y1b5{bottom:118.321350px;}
.y4c{bottom:118.327200px;}
.yb8{bottom:118.327650px;}
.y68{bottom:118.340400px;}
.y13f{bottom:118.369350px;}
.y155{bottom:118.714350px;}
.y222{bottom:119.134350px;}
.yf6{bottom:119.182500px;}
.y2f5{bottom:128.999955px;}
.y261{bottom:129.439350px;}
.y1cc{bottom:134.815350px;}
.y1b4{bottom:134.818350px;}
.y4b{bottom:134.824200px;}
.yb7{bottom:134.827650px;}
.y67{bottom:134.837400px;}
.y13e{bottom:134.866350px;}
.y154{bottom:135.394350px;}
.y221{bottom:135.685350px;}
.yf5{bottom:135.733500px;}
.y260{bottom:143.029350px;}
.y25f{bottom:151.213350px;}
.y1cb{bottom:151.312350px;}
.y1b3{bottom:151.315350px;}
.y4a{bottom:151.330200px;}
.yb6{bottom:151.330650px;}
.y66{bottom:151.346400px;}
.y13d{bottom:151.363350px;}
.y220{bottom:152.236350px;}
.yf4{bottom:152.284500px;}
.y2f2{bottom:164.999955px;}
.y1b2{bottom:167.812350px;}
.y1ca{bottom:167.821350px;}
.y49{bottom:167.827200px;}
.yb5{bottom:167.827650px;}
.y65{bottom:167.843400px;}
.y13c{bottom:167.860350px;}
.y21f{bottom:168.787350px;}
.yf3{bottom:168.811650px;}
.y25e{bottom:170.209350px;}
.y25d{bottom:178.393350px;}
.y2f3{bottom:179.999955px;}
.y153{bottom:181.400850px;}
.y1c9{bottom:184.318350px;}
.y48{bottom:184.324200px;}
.y1b1{bottom:184.324350px;}
.yb4{bottom:184.324650px;}
.y64{bottom:184.340400px;}
.y13b{bottom:184.357350px;}
.y21e{bottom:185.338350px;}
.yf2{bottom:185.362650px;}
.y25c{bottom:197.389350px;}
.y152{bottom:198.086850px;}
.y1c8{bottom:200.815350px;}
.y1b0{bottom:200.821350px;}
.yb3{bottom:200.824650px;}
.y47{bottom:200.827200px;}
.y63{bottom:200.837400px;}
.y13a{bottom:200.854350px;}
.y21d{bottom:201.889350px;}
.yf1{bottom:201.913650px;}
.y25b{bottom:205.573350px;}
.y151{bottom:214.772850px;}
.y180{bottom:215.183700px;}
.y181{bottom:215.802450px;}
.y2f0{bottom:215.999955px;}
.y1c7{bottom:217.312350px;}
.y1af{bottom:217.318350px;}
.y46{bottom:217.324200px;}
.y139{bottom:217.351350px;}
.y62{bottom:217.355400px;}
.y21c{bottom:218.440350px;}
.yf0{bottom:218.464650px;}
.y25a{bottom:224.569350px;}
.y2f1{bottom:230.999955px;}
.y150{bottom:231.458850px;}
.y259{bottom:232.753350px;}
.y1ae{bottom:233.815350px;}
.y1c6{bottom:233.821350px;}
.y45{bottom:233.827200px;}
.y138{bottom:233.848350px;}
.y61{bottom:233.852400px;}
.y21b{bottom:234.991350px;}
.yef{bottom:235.009500px;}
.yb2{bottom:241.702650px;}
.y14f{bottom:248.144850px;}
.y1ad{bottom:250.312350px;}
.y1c5{bottom:250.318350px;}
.y44{bottom:250.324200px;}
.y137{bottom:250.345350px;}
.y60{bottom:250.349400px;}
.y21a{bottom:251.542350px;}
.y258{bottom:251.749350px;}
.yb1{bottom:258.199650px;}
.y14e{bottom:264.830850px;}
.y257{bottom:265.339350px;}
.y1c4{bottom:266.815350px;}
.y43{bottom:266.821200px;}
.y136{bottom:266.842350px;}
.y5f{bottom:266.846400px;}
.y1ac{bottom:266.854350px;}
.y219{bottom:268.093350px;}
.y256{bottom:273.523350px;}
.yb0{bottom:274.696650px;}
.yee{bottom:281.002500px;}
.y14d{bottom:281.516850px;}
.y182{bottom:281.806200px;}
.y42{bottom:283.275450px;}
.y1c3{bottom:283.312350px;}
.y135{bottom:283.339350px;}
.y5e{bottom:283.343400px;}
.y1ab{bottom:283.351350px;}
.y218{bottom:284.626350px;}
.yaf{bottom:291.193650px;}
.y255{bottom:292.519350px;}
.yed{bottom:297.553500px;}
.y14c{bottom:298.202850px;}
.y1c2{bottom:299.812350px;}
.y134{bottom:299.836350px;}
.y5d{bottom:299.840400px;}
.y1aa{bottom:299.848350px;}
.y254{bottom:300.709350px;}
.y217{bottom:301.177350px;}
.yae{bottom:307.690650px;}
.yec{bottom:314.104500px;}
.y14b{bottom:314.888850px;}
.y1c1{bottom:316.309350px;}
.y133{bottom:316.333350px;}
.y5c{bottom:316.337400px;}
.y1a9{bottom:316.345350px;}
.y29b{bottom:316.801200px;}
.y2d5{bottom:316.891200px;}
.y216{bottom:317.728350px;}
.yad{bottom:324.187650px;}
.y29a{bottom:330.301200px;}
.yeb{bottom:330.655500px;}
.y2d4{bottom:330.807450px;}
.y14a{bottom:331.574850px;}
.y253{bottom:332.290350px;}
.y132{bottom:332.830350px;}
.y1a8{bottom:332.842350px;}
.y5b{bottom:332.867400px;}
.y215{bottom:334.267350px;}
.y41{bottom:337.753200px;}
.yac{bottom:340.705650px;}
.y299{bottom:343.801200px;}
.y2d3{bottom:344.723700px;}
.yea{bottom:347.206500px;}
.y149{bottom:348.260850px;}
.y252{bottom:348.881850px;}
.y131{bottom:349.327350px;}
.y1a7{bottom:349.339350px;}
.y5a{bottom:349.364400px;}
.y214{bottom:350.818350px;}
.y40{bottom:354.254700px;}
.yab{bottom:357.202650px;}
.y298{bottom:357.301200px;}
.y2d2{bottom:358.639950px;}
.ye9{bottom:363.757500px;}
.y148{bottom:364.946850px;}
.y251{bottom:365.473350px;}
.y130{bottom:365.824350px;}
.y1a6{bottom:365.836350px;}
.y59{bottom:365.861400px;}
.y213{bottom:367.291350px;}
.y3f{bottom:370.756200px;}
.y297{bottom:370.801200px;}
.y2d1{bottom:372.556200px;}
.yaa{bottom:373.699650px;}
.ye8{bottom:380.308500px;}
.y147{bottom:381.632850px;}
.y250{bottom:382.064850px;}
.y12f{bottom:382.321350px;}
.y1a5{bottom:382.333350px;}
.y58{bottom:382.358400px;}
.y212{bottom:383.842350px;}
.y296{bottom:384.301200px;}
.y2d0{bottom:386.472450px;}
.y3e{bottom:387.257700px;}
.ya9{bottom:390.196650px;}
.ye7{bottom:396.685650px;}
.y295{bottom:397.801200px;}
.y146{bottom:398.318850px;}
.y24f{bottom:398.656350px;}
.y12e{bottom:398.818350px;}
.y1a4{bottom:398.830350px;}
.y57{bottom:398.855400px;}
.y2cf{bottom:400.388700px;}
.y211{bottom:400.393350px;}
.y3d{bottom:403.759200px;}
.ya8{bottom:406.693650px;}
.y294{bottom:411.301200px;}
.ye6{bottom:413.236650px;}
.y2ce{bottom:414.304950px;}
.y145{bottom:415.004850px;}
.y24e{bottom:415.247850px;}
.y12d{bottom:415.315350px;}
.y1a3{bottom:415.327350px;}
.y56{bottom:415.352400px;}
.y210{bottom:416.944350px;}
.y3c{bottom:420.260700px;}
.ya7{bottom:423.190650px;}
.y293{bottom:424.801200px;}
.y2cd{bottom:428.221200px;}
.ye5{bottom:429.787650px;}
.y144{bottom:431.690850px;}
.y12c{bottom:431.812350px;}
.y1a2{bottom:431.824350px;}
.y24d{bottom:431.839350px;}
.y55{bottom:431.849400px;}
.y20f{bottom:433.495350px;}
.y3b{bottom:436.762200px;}
.y292{bottom:438.301200px;}
.ya6{bottom:439.687650px;}
.y2cc{bottom:442.137450px;}
.ye4{bottom:446.338650px;}
.y12b{bottom:448.309350px;}
.y1a1{bottom:448.321350px;}
.y54{bottom:448.346400px;}
.y143{bottom:448.376850px;}
.y24c{bottom:448.429350px;}
.y2ef{bottom:448.500000px;}
.y20e{bottom:450.046350px;}
.y291{bottom:451.801200px;}
.y3a{bottom:453.263700px;}
.y2cb{bottom:456.053700px;}
.ya5{bottom:456.184650px;}
.ye3{bottom:462.889650px;}
.y1a0{bottom:464.818350px;}
.y53{bottom:464.843400px;}
.y290{bottom:465.301200px;}
.y20d{bottom:466.597350px;}
.y39{bottom:469.765200px;}
.y2ca{bottom:469.969950px;}
.y17d{bottom:472.039950px;}
.ya4{bottom:472.741650px;}
.y28f{bottom:478.801200px;}
.ye2{bottom:479.440650px;}
.y19f{bottom:481.315350px;}
.y52{bottom:481.340400px;}
.y20c{bottom:483.148350px;}
.y2c9{bottom:483.886200px;}
.y38{bottom:486.266700px;}
.y17c{bottom:486.293700px;}
.ya3{bottom:489.238650px;}
.y28e{bottom:492.301200px;}
.y24b{bottom:494.447850px;}
.ye1{bottom:495.991650px;}
.y2c8{bottom:497.802450px;}
.y19e{bottom:497.812350px;}
.y51{bottom:497.837400px;}
.y20b{bottom:499.699350px;}
.y17b{bottom:500.547450px;}
.y2ee{bottom:501.000000px;}
.y37{bottom:502.768200px;}
.ya2{bottom:505.735650px;}
.y28d{bottom:505.801200px;}
.y2ec{bottom:508.499955px;}
.y24a{bottom:511.039350px;}
.y2c7{bottom:511.718700px;}
.ye0{bottom:512.542650px;}
.y1c0{bottom:514.324350px;}
.y19d{bottom:514.330350px;}
.y50{bottom:514.340700px;}
.y17a{bottom:514.801200px;}
.y183{bottom:515.806200px;}
.y20a{bottom:516.250350px;}
.y36{bottom:519.269700px;}
.y28c{bottom:519.301200px;}
.ya1{bottom:522.232650px;}
.y2c6{bottom:525.634950px;}
.y2ed{bottom:526.499955px;}
.y249{bottom:527.630850px;}
.ydf{bottom:529.093650px;}
.y1bf{bottom:530.821350px;}
.y19c{bottom:530.827350px;}
.y179{bottom:532.223700px;}
.y28b{bottom:532.801200px;}
.y209{bottom:532.801350px;}
.y35{bottom:535.771200px;}
.ya0{bottom:538.729650px;}
.y2c5{bottom:539.551200px;}
.y248{bottom:544.222350px;}
.yde{bottom:545.644650px;}
.y28a{bottom:546.301200px;}
.y1be{bottom:547.318350px;}
.y19b{bottom:547.324350px;}
.y208{bottom:549.352350px;}
.y178{bottom:549.661200px;}
.y34{bottom:552.272700px;}
.y2c4{bottom:553.467450px;}
.y9f{bottom:555.226650px;}
.y289{bottom:559.801200px;}
.y247{bottom:560.813850px;}
.ydd{bottom:562.195650px;}
.y1bd{bottom:563.815350px;}
.y19a{bottom:563.821350px;}
.y207{bottom:565.903350px;}
.y177{bottom:567.098700px;}
.y2c3{bottom:567.383700px;}
.y33{bottom:568.774200px;}
.y9e{bottom:571.723650px;}
.y288{bottom:573.301200px;}
.y7c{bottom:576.515250px;}
.y246{bottom:577.405350px;}
.ydc{bottom:578.746650px;}
.y1bc{bottom:580.312350px;}
.y199{bottom:580.318350px;}
.y2c2{bottom:581.299950px;}
.y206{bottom:582.406350px;}
.y176{bottom:584.536200px;}
.y184{bottom:584.802450px;}
.y32{bottom:585.275700px;}
.y287{bottom:586.801200px;}
.y9d{bottom:588.220650px;}
.y20{bottom:592.988700px;}
.y7b{bottom:593.016750px;}
.y245{bottom:593.996850px;}
.y2c1{bottom:595.216200px;}
.ydb{bottom:595.297650px;}
.y198{bottom:596.815350px;}
.y1bb{bottom:596.824350px;}
.y205{bottom:598.957350px;}
.y2e9{bottom:599.999955px;}
.y286{bottom:600.301200px;}
.y31{bottom:601.777200px;}
.y175{bottom:601.973700px;}
.y9c{bottom:604.717650px;}
.y1f{bottom:606.488700px;}
.y2c0{bottom:609.132450px;}
.y7a{bottom:609.518250px;}
.y244{bottom:610.588350px;}
.yda{bottom:611.848650px;}
.y197{bottom:613.312350px;}
.y1ba{bottom:613.321350px;}
.y285{bottom:613.801200px;}
.y204{bottom:615.508350px;}
.y2ea{bottom:617.999955px;}
.y30{bottom:618.278700px;}
.y174{bottom:619.411200px;}
.y1e{bottom:619.988700px;}
.y2eb{bottom:620.999955px;}
.y9b{bottom:621.214650px;}
.y2bf{bottom:623.048700px;}
.y79{bottom:626.019750px;}
.y243{bottom:627.179850px;}
.y284{bottom:627.301200px;}
.yd9{bottom:628.399650px;}
.y196{bottom:629.809350px;}
.y1b9{bottom:629.818350px;}
.y203{bottom:632.059350px;}
.y1d{bottom:633.488700px;}
.y2f{bottom:634.780200px;}
.y173{bottom:636.848700px;}
.y2be{bottom:636.964950px;}
.y9a{bottom:637.711650px;}
.y283{bottom:640.801200px;}
.y78{bottom:642.521250px;}
.y242{bottom:643.771350px;}
.yd8{bottom:644.950650px;}
.y1c{bottom:646.988700px;}
.y2e3{bottom:647.999775px;}
.y202{bottom:648.610350px;}
.y2bd{bottom:650.881200px;}
.y2e{bottom:651.281700px;}
.y99{bottom:654.208650px;}
.y172{bottom:654.286200px;}
.y282{bottom:654.301200px;}
.y77{bottom:659.012250px;}
.y241{bottom:660.362850px;}
.yd7{bottom:661.501650px;}
.y2e4{bottom:662.999775px;}
.y2bc{bottom:664.797450px;}
.y201{bottom:665.161350px;}
.y2d{bottom:667.783200px;}
.y281{bottom:667.801200px;}
.y98{bottom:670.705650px;}
.y171{bottom:671.723700px;}
.y1b{bottom:673.988700px;}
.y76{bottom:675.513750px;}
.y240{bottom:676.949850px;}
.y2e5{bottom:677.999925px;}
.yd6{bottom:678.052650px;}
.y2bb{bottom:678.713700px;}
.y1e8{bottom:680.922450px;}
.y280{bottom:681.301200px;}
.y200{bottom:681.712350px;}
.y2c{bottom:684.284700px;}
.y97{bottom:687.202650px;}
.y1a{bottom:687.488700px;}
.y170{bottom:689.161200px;}
.y75{bottom:692.015250px;}
.y2ba{bottom:692.629950px;}
.y2e6{bottom:692.999925px;}
.y23f{bottom:693.541350px;}
.yd5{bottom:694.603650px;}
.y1e7{bottom:695.176200px;}
.y1ff{bottom:698.263350px;}
.y2b{bottom:700.786200px;}
.y19{bottom:700.988700px;}
.y96{bottom:703.699650px;}
.y2b9{bottom:706.546200px;}
.y16f{bottom:706.598700px;}
.y2e7{bottom:707.999925px;}
.y74{bottom:708.516750px;}
.y23e{bottom:710.132850px;}
.yd4{bottom:711.154650px;}
.y112{bottom:712.309350px;}
.y1e6{bottom:712.609950px;}
.y129{bottom:712.681350px;}
.y18{bottom:714.488700px;}
.y1fe{bottom:714.784350px;}
.y27f{bottom:716.551200px;}
.y2a{bottom:717.287700px;}
.y2e2{bottom:720.000000px;}
.y95{bottom:720.196650px;}
.y2b8{bottom:720.462450px;}
.y2e8{bottom:723.000075px;}
.y16e{bottom:724.036200px;}
.y73{bottom:725.018250px;}
.y23d{bottom:726.715350px;}
.yd3{bottom:727.705650px;}
.y17{bottom:727.988700px;}
.y111{bottom:728.806350px;}
.y128{bottom:729.326850px;}
.y1e5{bottom:730.047450px;}
.y27e{bottom:730.051200px;}
.y1fd{bottom:731.335350px;}
.y29{bottom:733.789200px;}
.y2b7{bottom:734.378700px;}
.y94{bottom:736.693650px;}
.y16d{bottom:741.473700px;}
.y16{bottom:741.488700px;}
.y72{bottom:741.519750px;}
.y23c{bottom:743.306850px;}
.y27d{bottom:743.551200px;}
.yd2{bottom:744.256650px;}
.y110{bottom:745.303350px;}
.y127{bottom:745.972350px;}
.y1e4{bottom:747.484950px;}
.y1fc{bottom:747.886350px;}
.y2b6{bottom:748.294950px;}
.y28{bottom:750.290700px;}
.y93{bottom:753.190650px;}
.y71{bottom:758.021250px;}
.y16c{bottom:758.911200px;}
.y23b{bottom:759.898350px;}
.yd1{bottom:760.807650px;}
.y10f{bottom:761.800350px;}
.y2e0{bottom:762.000000px;}
.y2b5{bottom:762.211200px;}
.y126{bottom:762.617850px;}
.y27c{bottom:763.051200px;}
.y1fb{bottom:764.437350px;}
.y1e3{bottom:764.922450px;}
.y2e1{bottom:764.999955px;}
.y27{bottom:766.792200px;}
.y92{bottom:769.687650px;}
.y15{bottom:772.988700px;}
.y70{bottom:774.516750px;}
.y2b4{bottom:776.127450px;}
.y16b{bottom:776.348700px;}
.y23a{bottom:776.489850px;}
.y27b{bottom:776.551200px;}
.yd0{bottom:777.358650px;}
.y10e{bottom:778.297350px;}
.y125{bottom:779.263350px;}
.y1fa{bottom:780.988350px;}
.y1e2{bottom:782.359950px;}
.y26{bottom:783.293700px;}
.y91{bottom:786.211650px;}
.y14{bottom:786.488700px;}
.y2b3{bottom:790.043700px;}
.y27a{bottom:790.051200px;}
.y6f{bottom:791.018250px;}
.y2df{bottom:792.000000px;}
.y239{bottom:793.081350px;}
.y16a{bottom:793.786200px;}
.ycf{bottom:793.909650px;}
.y10d{bottom:794.851350px;}
.y124{bottom:795.908850px;}
.y1f9{bottom:797.509350px;}
.y25{bottom:799.795200px;}
.y1e1{bottom:799.797450px;}
.y90{bottom:802.708650px;}
.y279{bottom:803.551200px;}
.y2b2{bottom:803.959950px;}
.y6e{bottom:807.519750px;}
.y238{bottom:809.672850px;}
.yce{bottom:810.460650px;}
.y169{bottom:811.223700px;}
.y10c{bottom:811.348350px;}
.y123{bottom:812.554350px;}
.y13{bottom:813.488700px;}
.y1f8{bottom:814.060350px;}
.y24{bottom:816.296700px;}
.y278{bottom:817.051200px;}
.y1e0{bottom:817.234950px;}
.y2b1{bottom:817.876200px;}
.y185{bottom:818.802450px;}
.y8f{bottom:819.205650px;}
.y6d{bottom:824.021250px;}
.y237{bottom:826.256850px;}
.y12{bottom:826.988700px;}
.ycd{bottom:827.011650px;}
.y10b{bottom:827.845350px;}
.y168{bottom:828.661200px;}
.y122{bottom:829.199850px;}
.y277{bottom:830.551200px;}
.y1f7{bottom:830.611350px;}
.y2b0{bottom:831.792450px;}
.y23{bottom:832.798200px;}
.y1df{bottom:834.672450px;}
.y8e{bottom:835.702650px;}
.y11{bottom:840.488700px;}
.y236{bottom:842.848350px;}
.ycc{bottom:843.562650px;}
.y10a{bottom:844.342350px;}
.y2af{bottom:845.708700px;}
.y121{bottom:845.845350px;}
.y167{bottom:846.098700px;}
.y1f6{bottom:847.162350px;}
.y22{bottom:849.299700px;}
.y276{bottom:850.051200px;}
.y1de{bottom:852.109950px;}
.y8d{bottom:852.199650px;}
.y10{bottom:853.988700px;}
.y2dd{bottom:854.999955px;}
.y6c{bottom:856.801200px;}
.y235{bottom:859.439850px;}
.y2ae{bottom:859.624950px;}
.ycb{bottom:860.113650px;}
.y109{bottom:860.839350px;}
.y120{bottom:862.490850px;}
.y166{bottom:863.536200px;}
.y1f5{bottom:863.713350px;}
.y21{bottom:865.801200px;}
.yf{bottom:867.488700px;}
.y8c{bottom:868.696650px;}
.y1dd{bottom:869.547450px;}
.y275{bottom:869.551200px;}
.y2de{bottom:869.999955px;}
.y2ad{bottom:873.541200px;}
.y234{bottom:876.031350px;}
.yca{bottom:876.628650px;}
.y108{bottom:877.336350px;}
.y11f{bottom:879.136350px;}
.y1f4{bottom:880.264350px;}
.y165{bottom:880.973700px;}
.y274{bottom:883.051200px;}
.y8b{bottom:885.193650px;}
.y1dc{bottom:886.984950px;}
.y2ac{bottom:887.457450px;}
.y186{bottom:890.802450px;}
.y233{bottom:892.622850px;}
.yc9{bottom:893.179650px;}
.y107{bottom:893.833350px;}
.y11e{bottom:895.781850px;}
.y1f3{bottom:896.761350px;}
.y164{bottom:898.411200px;}
.y2ab{bottom:901.373700px;}
.y8a{bottom:901.690650px;}
.y273{bottom:902.551200px;}
.y1db{bottom:904.422450px;}
.y9{bottom:907.048200px;}
.y232{bottom:909.212850px;}
.yc8{bottom:909.730650px;}
.y106{bottom:910.330350px;}
.y11d{bottom:912.427350px;}
.y1f2{bottom:913.312350px;}
.y2aa{bottom:915.289950px;}
.y163{bottom:915.848700px;}
.y89{bottom:918.187650px;}
.y1da{bottom:921.859950px;}
.y272{bottom:922.051200px;}
.y231{bottom:925.705350px;}
.yc7{bottom:926.281650px;}
.y105{bottom:926.827350px;}
.y2db{bottom:926.999910px;}
.y11c{bottom:929.072850px;}
.y2a9{bottom:929.206200px;}
.y8{bottom:929.548200px;}
.y1f1{bottom:929.863350px;}
.y162{bottom:933.286200px;}
.y88{bottom:934.687650px;}
.y271{bottom:935.551200px;}
.y1d9{bottom:939.297450px;}
.y230{bottom:942.296850px;}
.yc6{bottom:942.832650px;}
.y2a8{bottom:943.122450px;}
.y104{bottom:943.324350px;}
.y2dc{bottom:944.999955px;}
.y11b{bottom:945.718350px;}
.y1f0{bottom:946.414350px;}
.y270{bottom:949.051200px;}
.y161{bottom:950.723700px;}
.y87{bottom:951.184650px;}
.y7{bottom:952.051200px;}
.y1d8{bottom:956.734950px;}
.y2a7{bottom:957.038700px;}
.y22f{bottom:958.888350px;}
.yc5{bottom:959.383650px;}
.y103{bottom:959.821350px;}
.y11a{bottom:962.363850px;}
.y26f{bottom:962.551200px;}
.y1ef{bottom:962.965350px;}
.y86{bottom:967.677900px;}
.y160{bottom:968.161200px;}
.y2a6{bottom:970.954950px;}
.y1d7{bottom:974.172450px;}
.y22e{bottom:975.479850px;}
.yc4{bottom:975.934650px;}
.y102{bottom:976.318350px;}
.y119{bottom:979.009350px;}
.y1ee{bottom:979.516350px;}
.y26e{bottom:983.551200px;}
.y2a5{bottom:984.871200px;}
.y85{bottom:984.934650px;}
.y15f{bottom:985.598700px;}
.y6{bottom:991.051200px;}
.y1d6{bottom:991.609950px;}
.y22d{bottom:992.071350px;}
.yc3{bottom:992.452650px;}
.y101{bottom:992.815350px;}
.y118{bottom:995.659350px;}
.y2d7{bottom:995.999865px;}
.y1ed{bottom:996.067350px;}
.y26d{bottom:997.051200px;}
.y2a4{bottom:998.787450px;}
.y15e{bottom:1003.036200px;}
.y22c{bottom:1008.662850px;}
.yc2{bottom:1009.003650px;}
.y1d5{bottom:1009.047450px;}
.y100{bottom:1009.312350px;}
.y26c{bottom:1010.551200px;}
.y2d8{bottom:1010.999865px;}
.y1ec{bottom:1012.618350px;}
.y2a3{bottom:1012.703700px;}
.y15d{bottom:1023.477450px;}
.y26b{bottom:1024.051200px;}
.y22b{bottom:1025.254350px;}
.yc1{bottom:1025.554650px;}
.y84{bottom:1025.806650px;}
.yff{bottom:1025.809350px;}
.y2d9{bottom:1026.000015px;}
.y1d4{bottom:1026.484950px;}
.y2a2{bottom:1026.619950px;}
.y5{bottom:1027.051200px;}
.y1eb{bottom:1029.169350px;}
.y26a{bottom:1037.551200px;}
.y2a1{bottom:1040.536200px;}
.y2da{bottom:1041.000015px;}
.y117{bottom:1041.712350px;}
.y22a{bottom:1041.845850px;}
.yc0{bottom:1042.105650px;}
.y83{bottom:1042.303650px;}
.yfe{bottom:1042.306350px;}
.y15c{bottom:1043.918700px;}
.y1d3{bottom:1043.922450px;}
.y1ea{bottom:1045.714350px;}
.y269{bottom:1051.051200px;}
.y2a0{bottom:1054.452450px;}
.y15b{bottom:1058.172450px;}
.y116{bottom:1058.357850px;}
.y229{bottom:1058.437350px;}
.ybf{bottom:1058.656650px;}
.y82{bottom:1058.800650px;}
.yfd{bottom:1058.803350px;}
.y2d6{bottom:1061.999910px;}
.y4{bottom:1063.051200px;}
.y1d1{bottom:1064.363700px;}
.y268{bottom:1064.551200px;}
.y29f{bottom:1068.368700px;}
.y115{bottom:1075.003350px;}
.y228{bottom:1075.028850px;}
.ybe{bottom:1075.207650px;}
.y81{bottom:1075.297650px;}
.yfc{bottom:1075.300350px;}
.y15a{bottom:1078.613700px;}
.y1d2{bottom:1078.617450px;}
.y29e{bottom:1082.284950px;}
.y227{bottom:1091.620350px;}
.y114{bottom:1091.648850px;}
.y1e9{bottom:1091.743350px;}
.ybd{bottom:1091.758650px;}
.yfb{bottom:1091.797350px;}
.y80{bottom:1091.797650px;}
.y267{bottom:1096.051200px;}
.y29d{bottom:1096.201200px;}
.y159{bottom:1099.426200px;}
.y3{bottom:1105.051200px;}
.y226{bottom:1108.211850px;}
.yfa{bottom:1108.294350px;}
.y7f{bottom:1108.294650px;}
.y113{bottom:1108.304850px;}
.ybc{bottom:1108.309650px;}
.y29c{bottom:1110.117450px;}
.y266{bottom:1114.951200px;}
.ya{bottom:1140.782100px;}
.y7d{bottom:1170.000000px;}
.h2f{height:24.249888px;}
.h1e{height:34.290000px;}
.h2{height:36.576000px;}
.h9{height:40.869141px;}
.h1d{height:41.148000px;}
.hd{height:41.422852px;}
.h8{height:43.434000px;}
.h12{height:46.070400px;}
.h11{height:50.062500px;}
.h7{height:50.292000px;}
.h15{height:51.168240px;}
.h1f{height:51.216240px;}
.h22{height:51.264240px;}
.he{height:51.264840px;}
.h14{height:51.288240px;}
.h16{height:51.312240px;}
.hf{height:51.312840px;}
.h21{height:51.324240px;}
.h20{height:51.336240px;}
.h23{height:51.348240px;}
.h10{height:51.348840px;}
.h1c{height:51.354240px;}
.hb{height:51.360240px;}
.hc{height:51.371040px;}
.ha{height:51.372240px;}
.h13{height:51.384240px;}
.h2b{height:51.402240px;}
.h2e{height:51.414240px;}
.h24{height:51.420240px;}
.h2c{height:51.426240px;}
.h2d{height:51.432240px;}
.h28{height:51.444240px;}
.h1b{height:51.467640px;}
.h29{height:51.468240px;}
.h17{height:51.504240px;}
.h26{height:51.516240px;}
.h18{height:51.540240px;}
.h1a{height:51.564240px;}
.h25{height:51.588240px;}
.h27{height:51.708240px;}
.h2a{height:51.792240px;}
.h19{height:52.091640px;}
.h3{height:54.864000px;}
.h32{height:62.578125px;}
.h5{height:74.506068px;}
.h6{height:74.518068px;}
.h33{height:75.093750px;}
.h4{height:91.440000px;}
.h34{height:122.578125px;}
.h31{height:273.867188px;}
.h30{height:1189.500000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:892.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:62.994000px;}
.x5{left:68.250000px;}
.x6{left:72.649950px;}
.xd{left:76.502100px;}
.x34{left:81.900000px;}
.x40{left:126.000000px;}
.x3c{left:127.956165px;}
.x3a{left:131.952390px;}
.x3d{left:143.976660px;}
.x39{left:148.962255px;}
.x10{left:179.380500px;}
.x16{left:187.410000px;}
.x3e{left:197.994480px;}
.x19{left:208.230000px;}
.x3{left:218.508750px;}
.x17{left:228.660000px;}
.x32{left:239.999250px;}
.x18{left:242.913750px;}
.x2{left:249.695700px;}
.x1a{left:263.366250px;}
.x37{left:276.000000px;}
.x1b{left:280.803750px;}
.x11{left:289.191750px;}
.x1c{left:298.241250px;}
.x1d{left:315.678750px;}
.x1e{left:333.116250px;}
.x36{left:338.392320px;}
.x33{left:343.499250px;}
.x1f{left:350.553750px;}
.x20{left:367.991250px;}
.x3f{left:378.540030px;}
.x21{left:385.428750px;}
.x12{left:398.541750px;}
.x22{left:402.866250px;}
.x23{left:420.303750px;}
.x24{left:437.741250px;}
.x25{left:455.178750px;}
.xe{left:460.034700px;}
.xf{left:473.532300px;}
.x35{left:478.946250px;}
.x26{left:490.053750px;}
.x13{left:507.891750px;}
.x27{left:524.928750px;}
.x8{left:533.587500px;}
.x38{left:535.228860px;}
.x9{left:542.586000px;}
.xa{left:554.463000px;}
.xb{left:560.586000px;}
.x28{left:577.241250px;}
.x29{left:594.678750px;}
.xc{left:608.327700px;}
.x2a{left:612.116250px;}
.x14{left:617.241750px;}
.x2b{left:629.553750px;}
.x2c{left:646.991250px;}
.x2d{left:664.428750px;}
.x2e{left:681.847500px;}
.x2f{left:696.101250px;}
.x30{left:710.355000px;}
.x31{left:724.608750px;}
.x15{left:726.591750px;}
.x3b{left:739.499040px;}
.x4{left:744.208350px;}
.x1{left:812.633550px;}
@media print{
.v7{vertical-align:-42.666827pt;}
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.978667pt;}
.v8{vertical-align:10.666827pt;}
.v2{vertical-align:21.578667pt;}
.v1{vertical-align:31.200000pt;}
.v6{vertical-align:53.333333pt;}
.v5{vertical-align:80.000000pt;}
.lsb{letter-spacing:-3.239600pt;}
.ls7{letter-spacing:-1.578667pt;}
.lsa{letter-spacing:-0.864480pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004523pt;}
.ls3{letter-spacing:0.005056pt;}
.lse{letter-spacing:0.200000pt;}
.lsd{letter-spacing:0.317922pt;}
.lsc{letter-spacing:0.479520pt;}
.ls9{letter-spacing:1.266160pt;}
.ls2{letter-spacing:1.266667pt;}
.ls0{letter-spacing:3.285333pt;}
.ls1{letter-spacing:15.289067pt;}
.ls5{letter-spacing:21.770667pt;}
.ls8{letter-spacing:1265.403733pt;}
.ws91{word-spacing:-39.984000pt;}
.ws124{word-spacing:-20.000000pt;}
.ws1{word-spacing:-18.538667pt;}
.ws127{word-spacing:-14.826667pt;}
.ws3{word-spacing:-14.440000pt;}
.ws92{word-spacing:-14.439493pt;}
.wsd1{word-spacing:-13.823520pt;}
.ws5{word-spacing:-13.344000pt;}
.ws4{word-spacing:-13.173333pt;}
.ws7{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.861333pt;}
.ws0{word-spacing:-11.032320pt;}
.wsad{word-spacing:-10.400000pt;}
.ws11d{word-spacing:-10.240427pt;}
.ws2{word-spacing:-10.240000pt;}
.wsca{word-spacing:-9.600400pt;}
.wsd0{word-spacing:-9.164994pt;}
.ws6{word-spacing:-8.847072pt;}
.wsf8{word-spacing:-6.789120pt;}
.wscc{word-spacing:-6.360000pt;}
.wsc9{word-spacing:-5.399600pt;}
.ws13{word-spacing:-4.656000pt;}
.wscb{word-spacing:-4.600400pt;}
.wsc8{word-spacing:-4.368000pt;}
.ws110{word-spacing:-4.272000pt;}
.ws72{word-spacing:-4.128000pt;}
.wsc{word-spacing:-3.813333pt;}
.ws83{word-spacing:-3.791520pt;}
.wsb{word-spacing:-3.520000pt;}
.ws12{word-spacing:-3.504000pt;}
.ws25{word-spacing:-3.360000pt;}
.wsde{word-spacing:-3.216000pt;}
.ws106{word-spacing:-3.167520pt;}
.ws3b{word-spacing:-3.072000pt;}
.ws113{word-spacing:-3.024000pt;}
.ws50{word-spacing:-2.976000pt;}
.ws90{word-spacing:-2.880000pt;}
.ws3a{word-spacing:-2.786160pt;}
.ws2e{word-spacing:-2.784000pt;}
.ws86{word-spacing:-2.736480pt;}
.ws89{word-spacing:-2.688000pt;}
.ws112{word-spacing:-2.592000pt;}
.ws4c{word-spacing:-2.543520pt;}
.wsdb{word-spacing:-2.496000pt;}
.ws79{word-spacing:-2.447520pt;}
.ws11c{word-spacing:-2.346240pt;}
.ws74{word-spacing:-2.256000pt;}
.ws4f{word-spacing:-2.208480pt;}
.ws11f{word-spacing:-2.199600pt;}
.ws47{word-spacing:-2.160000pt;}
.wsef{word-spacing:-2.016480pt;}
.ws116{word-spacing:-1.872000pt;}
.ws38{word-spacing:-1.823520pt;}
.ws123{word-spacing:-1.800000pt;}
.wsd5{word-spacing:-1.776000pt;}
.wsa3{word-spacing:-1.728000pt;}
.ws104{word-spacing:-1.632000pt;}
.wsd9{word-spacing:-1.584000pt;}
.ws76{word-spacing:-1.536000pt;}
.ws71{word-spacing:-1.488480pt;}
.ws107{word-spacing:-1.344000pt;}
.wsfa{word-spacing:-1.295520pt;}
.wse5{word-spacing:-1.248000pt;}
.ws59{word-spacing:-1.152000pt;}
.wsec{word-spacing:-1.103520pt;}
.ws4e{word-spacing:-1.056000pt;}
.ws41{word-spacing:-0.912000pt;}
.ws67{word-spacing:-0.816000pt;}
.ws11e{word-spacing:-0.720400pt;}
.ws9d{word-spacing:-0.720000pt;}
.ws11b{word-spacing:-0.575520pt;}
.ws6d{word-spacing:-0.528000pt;}
.ws2c{word-spacing:-0.480000pt;}
.wsa4{word-spacing:-0.479520pt;}
.ws37{word-spacing:-0.432000pt;}
.wsaa{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.336000pt;}
.ws120{word-spacing:-0.200000pt;}
.ws5a{word-spacing:-0.192000pt;}
.ws98{word-spacing:-0.144480pt;}
.ws43{word-spacing:-0.096000pt;}
.ws121{word-spacing:-0.080000pt;}
.ws35{word-spacing:-0.048000pt;}
.ws122{word-spacing:-0.040400pt;}
.ws9{word-spacing:0.000000pt;}
.ws10a{word-spacing:0.096000pt;}
.ws105{word-spacing:0.192000pt;}
.ws78{word-spacing:0.240000pt;}
.ws80{word-spacing:0.336000pt;}
.ws40{word-spacing:0.384000pt;}
.ws18{word-spacing:0.432000pt;}
.ws103{word-spacing:0.479520pt;}
.ws26{word-spacing:0.528000pt;}
.ws2b{word-spacing:0.572832pt;}
.wsc3{word-spacing:0.575520pt;}
.ws5d{word-spacing:0.672480pt;}
.wsa5{word-spacing:0.720000pt;}
.wsa0{word-spacing:0.768480pt;}
.ws52{word-spacing:0.816000pt;}
.ws2a{word-spacing:0.864000pt;}
.ws84{word-spacing:0.864480pt;}
.wsf5{word-spacing:0.912000pt;}
.ws7a{word-spacing:0.960000pt;}
.ws7b{word-spacing:1.008000pt;}
.ws10e{word-spacing:1.056000pt;}
.ws7c{word-spacing:1.103520pt;}
.wsd4{word-spacing:1.152000pt;}
.wsc4{word-spacing:1.199520pt;}
.ws56{word-spacing:1.241136pt;}
.ws73{word-spacing:1.248000pt;}
.wsdc{word-spacing:1.295520pt;}
.ws8a{word-spacing:1.344000pt;}
.wsa2{word-spacing:1.392480pt;}
.ws62{word-spacing:1.440000pt;}
.wsab{word-spacing:1.488480pt;}
.ws77{word-spacing:1.536000pt;}
.wsa{word-spacing:1.578667pt;}
.ws4d{word-spacing:1.584000pt;}
.wsc7{word-spacing:1.680000pt;}
.ws61{word-spacing:1.776000pt;}
.ws57{word-spacing:1.872000pt;}
.ws3c{word-spacing:1.919520pt;}
.ws44{word-spacing:1.968000pt;}
.ws117{word-spacing:2.016480pt;}
.ws65{word-spacing:2.064000pt;}
.ws8f{word-spacing:2.112480pt;}
.ws46{word-spacing:2.304000pt;}
.ws34{word-spacing:2.352000pt;}
.wse6{word-spacing:2.400000pt;}
.wsfd{word-spacing:2.447520pt;}
.ws63{word-spacing:2.496000pt;}
.ws5f{word-spacing:2.543520pt;}
.ws51{word-spacing:2.592000pt;}
.ws28{word-spacing:2.688000pt;}
.ws68{word-spacing:2.736480pt;}
.ws48{word-spacing:2.832480pt;}
.wsc2{word-spacing:2.880000pt;}
.ws87{word-spacing:2.976000pt;}
.ws9e{word-spacing:3.024000pt;}
.wsd7{word-spacing:3.120000pt;}
.ws115{word-spacing:3.167520pt;}
.ws20{word-spacing:3.168000pt;}
.ws10c{word-spacing:3.216000pt;}
.ws4b{word-spacing:3.263520pt;}
.wsc6{word-spacing:3.312000pt;}
.ws54{word-spacing:3.360480pt;}
.wsa9{word-spacing:3.408000pt;}
.wsdf{word-spacing:3.456480pt;}
.ws6f{word-spacing:3.504000pt;}
.ws8c{word-spacing:3.552480pt;}
.ws7f{word-spacing:3.600000pt;}
.ws66{word-spacing:3.744000pt;}
.ws69{word-spacing:3.840000pt;}
.ws36{word-spacing:3.983520pt;}
.ws6e{word-spacing:4.032000pt;}
.wsf7{word-spacing:4.080480pt;}
.wsd3{word-spacing:4.176480pt;}
.ws45{word-spacing:4.224000pt;}
.ws4a{word-spacing:4.272000pt;}
.ws9c{word-spacing:4.320000pt;}
.ws19{word-spacing:4.368000pt;}
.wsb6{word-spacing:4.416000pt;}
.ws81{word-spacing:4.464000pt;}
.wsf3{word-spacing:4.511520pt;}
.ws8b{word-spacing:4.607520pt;}
.ws30{word-spacing:4.608000pt;}
.ws8e{word-spacing:4.656000pt;}
.wsf1{word-spacing:4.704480pt;}
.ws64{word-spacing:4.752000pt;}
.ws96{word-spacing:4.800480pt;}
.wsf9{word-spacing:4.848000pt;}
.wsd8{word-spacing:4.944000pt;}
.wse8{word-spacing:4.992000pt;}
.ws1a{word-spacing:5.040000pt;}
.wsa7{word-spacing:5.088000pt;}
.ws109{word-spacing:5.135520pt;}
.ws7e{word-spacing:5.184000pt;}
.wsf2{word-spacing:5.231520pt;}
.ws55{word-spacing:5.280000pt;}
.wsc5{word-spacing:5.327520pt;}
.wsee{word-spacing:5.346432pt;}
.ws60{word-spacing:5.376000pt;}
.wsb9{word-spacing:5.424480pt;}
.ws6a{word-spacing:5.520480pt;}
.ws1b{word-spacing:5.568000pt;}
.wsd{word-spacing:5.616000pt;}
.ws2d{word-spacing:5.664000pt;}
.wsda{word-spacing:5.712000pt;}
.wse0{word-spacing:5.760000pt;}
.ws7d{word-spacing:5.808000pt;}
.ws14{word-spacing:5.856000pt;}
.ws11a{word-spacing:5.904000pt;}
.wse1{word-spacing:5.951520pt;}
.wsdd{word-spacing:6.048480pt;}
.wsb7{word-spacing:6.144480pt;}
.ws11{word-spacing:6.240000pt;}
.ws93{word-spacing:6.288000pt;}
.ws5e{word-spacing:6.336000pt;}
.wsbf{word-spacing:6.432000pt;}
.ws10f{word-spacing:6.528000pt;}
.wsf0{word-spacing:6.575520pt;}
.ws2f{word-spacing:6.576000pt;}
.ws32{word-spacing:6.624000pt;}
.ws8d{word-spacing:6.672480pt;}
.ws49{word-spacing:6.720000pt;}
.ws53{word-spacing:6.816000pt;}
.wsfc{word-spacing:6.912000pt;}
.ws9b{word-spacing:6.960000pt;}
.ws3f{word-spacing:7.056000pt;}
.wsbe{word-spacing:7.103520pt;}
.ws88{word-spacing:7.392480pt;}
.wsac{word-spacing:7.488480pt;}
.ws95{word-spacing:7.536000pt;}
.ws10d{word-spacing:7.584000pt;}
.ws6b{word-spacing:7.632000pt;}
.ws82{word-spacing:7.680000pt;}
.ws114{word-spacing:7.776000pt;}
.wsb8{word-spacing:7.823520pt;}
.ws58{word-spacing:7.968000pt;}
.wsed{word-spacing:8.064000pt;}
.ws10b{word-spacing:8.256000pt;}
.wse7{word-spacing:8.447520pt;}
.wsfe{word-spacing:8.592000pt;}
.wsbc{word-spacing:8.639520pt;}
.ws16{word-spacing:8.736000pt;}
.ws111{word-spacing:8.784000pt;}
.ws9a{word-spacing:8.832480pt;}
.wse4{word-spacing:8.880000pt;}
.ws85{word-spacing:8.928000pt;}
.ws70{word-spacing:8.976000pt;}
.ws27{word-spacing:9.072000pt;}
.wse3{word-spacing:9.167520pt;}
.ws75{word-spacing:9.312000pt;}
.wsf6{word-spacing:9.360480pt;}
.ws39{word-spacing:9.456480pt;}
.wsfb{word-spacing:9.504000pt;}
.ws33{word-spacing:9.600000pt;}
.ws119{word-spacing:9.648000pt;}
.wsff{word-spacing:9.791520pt;}
.ws42{word-spacing:9.840000pt;}
.ws9f{word-spacing:10.080480pt;}
.wse{word-spacing:10.128000pt;}
.ws102{word-spacing:10.272000pt;}
.ws97{word-spacing:10.368000pt;}
.wsbb{word-spacing:10.416000pt;}
.ws100{word-spacing:10.464000pt;}
.wsd6{word-spacing:10.511520pt;}
.wse9{word-spacing:10.560000pt;}
.ws118{word-spacing:10.656000pt;}
.wsbd{word-spacing:10.752000pt;}
.ws108{word-spacing:10.800480pt;}
.ws29{word-spacing:10.896000pt;}
.ws17{word-spacing:11.088000pt;}
.ws99{word-spacing:11.231520pt;}
.ws22{word-spacing:11.232000pt;}
.wsc0{word-spacing:11.280000pt;}
.ws3d{word-spacing:11.327520pt;}
.ws5c{word-spacing:11.472000pt;}
.wseb{word-spacing:11.616000pt;}
.wsa1{word-spacing:11.760000pt;}
.wsf{word-spacing:11.808000pt;}
.ws1c{word-spacing:12.048000pt;}
.wsa6{word-spacing:12.192000pt;}
.wsc1{word-spacing:12.336000pt;}
.ws1f{word-spacing:12.384000pt;}
.wsf4{word-spacing:12.432000pt;}
.wsa8{word-spacing:12.479520pt;}
.ws3e{word-spacing:12.528000pt;}
.wsea{word-spacing:13.344000pt;}
.wsb5{word-spacing:13.536000pt;}
.ws31{word-spacing:14.064000pt;}
.ws15{word-spacing:14.112000pt;}
.ws94{word-spacing:14.112480pt;}
.ws5b{word-spacing:14.160000pt;}
.wsba{word-spacing:14.784000pt;}
.ws10{word-spacing:15.456000pt;}
.ws23{word-spacing:17.328000pt;}
.ws21{word-spacing:19.344000pt;}
.wse2{word-spacing:20.496000pt;}
.ws1e{word-spacing:21.072000pt;}
.ws101{word-spacing:22.607520pt;}
.ws1d{word-spacing:24.576000pt;}
.ws6c{word-spacing:33.983520pt;}
.wscd{word-spacing:83.280000pt;}
.ws128{word-spacing:88.872960pt;}
.wscf{word-spacing:152.520000pt;}
.wsce{word-spacing:156.080000pt;}
.wsb1{word-spacing:195.880000pt;}
.wsb0{word-spacing:203.360000pt;}
.wsaf{word-spacing:205.240000pt;}
.wsb2{word-spacing:241.760000pt;}
.wsd2{word-spacing:243.280000pt;}
.wsb3{word-spacing:253.480000pt;}
.wsb4{word-spacing:260.960000pt;}
.wsae{word-spacing:290.240000pt;}
.ws126{word-spacing:1250.628480pt;}
.ws125{word-spacing:1457.908800pt;}
._67{margin-left:-1702.560000pt;}
._66{margin-left:-1680.308800pt;}
._6c{margin-left:-1647.998933pt;}
._68{margin-left:-1511.893333pt;}
._64{margin-left:-1479.680000pt;}
._6a{margin-left:-1176.581333pt;}
._6b{margin-left:-1114.504533pt;}
._c{margin-left:-1088.512000pt;}
._b{margin-left:-996.010667pt;}
._69{margin-left:-936.529067pt;}
._d{margin-left:-720.853333pt;}
._6e{margin-left:-450.560000pt;}
._65{margin-left:-221.839200pt;}
._a{margin-left:-52.480000pt;}
._5{margin-left:-42.640000pt;}
._e{margin-left:-18.671520pt;}
._11{margin-left:-17.664000pt;}
._10{margin-left:-9.720000pt;}
._f{margin-left:-8.784000pt;}
._12{margin-left:-7.344000pt;}
._9{margin-left:-6.374400pt;}
._3{margin-left:-5.296640pt;}
._2{margin-left:-3.957333pt;}
._1{margin-left:-2.879467pt;}
._0{margin-left:-1.578667pt;}
._8{width:0.912000pt;}
._5f{width:1.872000pt;}
._15{width:2.784000pt;}
._4{width:3.689387pt;}
._13{width:4.717227pt;}
._60{width:9.386667pt;}
._6{width:10.386667pt;}
._62{width:11.799600pt;}
._7{width:13.173333pt;}
._61{width:19.200000pt;}
._63{width:21.400000pt;}
._50{width:30.400000pt;}
._14{width:35.040000pt;}
._30{width:37.800000pt;}
._18{width:40.000000pt;}
._35{width:89.240000pt;}
._6d{width:106.666080pt;}
._46{width:126.119600pt;}
._56{width:131.456640pt;}
._48{width:134.368587pt;}
._4a{width:136.845013pt;}
._39{width:151.480400pt;}
._36{width:156.479200pt;}
._40{width:162.120000pt;}
._49{width:165.320000pt;}
._37{width:167.159600pt;}
._3b{width:168.520000pt;}
._52{width:169.856640pt;}
._47{width:171.720000pt;}
._4f{width:184.240000pt;}
._54{width:185.391013pt;}
._2a{width:186.280400pt;}
._42{width:187.711413pt;}
._3e{width:189.880000pt;}
._1e{width:199.400800pt;}
._53{width:204.536640pt;}
._1a{width:205.480400pt;}
._17{width:206.880000pt;}
._4e{width:209.360000pt;}
._41{width:210.866000pt;}
._1f{width:212.400000pt;}
._32{width:213.812400pt;}
._1d{width:215.400000pt;}
._45{width:230.074587pt;}
._20{width:232.160000pt;}
._21{width:237.800800pt;}
._1b{width:239.600000pt;}
._23{width:243.880000pt;}
._51{width:247.456640pt;}
._2e{width:253.800800pt;}
._2d{width:255.200800pt;}
._27{width:257.000800pt;}
._22{width:258.240000pt;}
._2b{width:263.459467pt;}
._19{width:265.739467pt;}
._29{width:270.560000pt;}
._26{width:276.200800pt;}
._24{width:278.000000pt;}
._58{width:283.040000pt;}
._28{width:289.679200pt;}
._5b{width:291.200000pt;}
._1c{width:296.720800pt;}
._4d{width:298.605547pt;}
._25{width:310.880800pt;}
._2c{width:321.680800pt;}
._43{width:326.123973pt;}
._57{width:327.159600pt;}
._2f{width:329.240800pt;}
._5c{width:330.376640pt;}
._4c{width:342.363973pt;}
._5e{width:349.576640pt;}
._5a{width:354.096640pt;}
._4b{width:357.005547pt;}
._3f{width:364.759600pt;}
._16{width:367.080000pt;}
._38{width:370.214533pt;}
._44{width:383.724347pt;}
._31{width:386.454000pt;}
._3d{width:393.934533pt;}
._55{width:405.283840pt;}
._3a{width:442.240000pt;}
._3c{width:463.600000pt;}
._34{width:527.400000pt;}
._33{width:677.520000pt;}
._5d{width:1734.840000pt;}
._59{width:1805.720000pt;}
.fsb{font-size:28.288000pt;}
.fs9{font-size:31.824000pt;}
.fs6{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:45.968000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fsd{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fsc{font-size:80.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:36.573867pt;}
.y2{bottom:38.683733pt;}
.y1{bottom:38.696667pt;}
.y158{bottom:61.027867pt;}
.y12a{bottom:61.161067pt;}
.y1b8{bottom:61.166533pt;}
.y1d0{bottom:61.174533pt;}
.y4f{bottom:61.179733pt;}
.ybb{bottom:61.188133pt;}
.y6b{bottom:61.199467pt;}
.y142{bottom:61.225200pt;}
.y225{bottom:61.761200pt;}
.yf9{bottom:61.804000pt;}
.ye{bottom:65.792667pt;}
.y17e{bottom:66.494400pt;}
.y17f{bottom:66.594400pt;}
.y187{bottom:66.604400pt;}
.y188{bottom:66.614400pt;}
.y189{bottom:66.624400pt;}
.y18a{bottom:66.634400pt;}
.y18b{bottom:66.644400pt;}
.y18c{bottom:66.654400pt;}
.y18d{bottom:66.664400pt;}
.y18e{bottom:66.674400pt;}
.y18f{bottom:66.684400pt;}
.y190{bottom:66.694400pt;}
.y191{bottom:66.704400pt;}
.y192{bottom:66.714400pt;}
.y193{bottom:66.724400pt;}
.y194{bottom:66.734400pt;}
.y265{bottom:66.737200pt;}
.y195{bottom:66.744400pt;}
.y1cf{bottom:75.838533pt;}
.y4e{bottom:75.843733pt;}
.y1b7{bottom:75.846533pt;}
.yba{bottom:75.852133pt;}
.y157{bottom:75.859867pt;}
.y6a{bottom:75.863467pt;}
.y141{bottom:75.889200pt;}
.y224{bottom:76.473200pt;}
.yf8{bottom:76.516000pt;}
.yd{bottom:77.792667pt;}
.y264{bottom:78.817200pt;}
.y263{bottom:86.091867pt;}
.yc{bottom:89.792667pt;}
.y1ce{bottom:90.502533pt;}
.y1b6{bottom:90.510533pt;}
.y4d{bottom:90.515733pt;}
.yb9{bottom:90.516133pt;}
.y69{bottom:90.527467pt;}
.y140{bottom:90.553200pt;}
.y156{bottom:90.691867pt;}
.y223{bottom:91.185200pt;}
.yf7{bottom:91.228000pt;}
.y2f4{bottom:101.333293pt;}
.yb{bottom:101.792667pt;}
.y262{bottom:102.977200pt;}
.y1cd{bottom:105.166533pt;}
.y1b5{bottom:105.174533pt;}
.y4c{bottom:105.179733pt;}
.yb8{bottom:105.180133pt;}
.y68{bottom:105.191467pt;}
.y13f{bottom:105.217200pt;}
.y155{bottom:105.523867pt;}
.y222{bottom:105.897200pt;}
.yf6{bottom:105.940000pt;}
.y2f5{bottom:114.666627pt;}
.y261{bottom:115.057200pt;}
.y1cc{bottom:119.835867pt;}
.y1b4{bottom:119.838533pt;}
.y4b{bottom:119.843733pt;}
.yb7{bottom:119.846800pt;}
.y67{bottom:119.855467pt;}
.y13e{bottom:119.881200pt;}
.y154{bottom:120.350533pt;}
.y221{bottom:120.609200pt;}
.yf5{bottom:120.652000pt;}
.y260{bottom:127.137200pt;}
.y25f{bottom:134.411867pt;}
.y1cb{bottom:134.499867pt;}
.y1b3{bottom:134.502533pt;}
.y4a{bottom:134.515733pt;}
.yb6{bottom:134.516133pt;}
.y66{bottom:134.530133pt;}
.y13d{bottom:134.545200pt;}
.y220{bottom:135.321200pt;}
.yf4{bottom:135.364000pt;}
.y2f2{bottom:146.666627pt;}
.y1b2{bottom:149.166533pt;}
.y1ca{bottom:149.174533pt;}
.y49{bottom:149.179733pt;}
.yb5{bottom:149.180133pt;}
.y65{bottom:149.194133pt;}
.y13c{bottom:149.209200pt;}
.y21f{bottom:150.033200pt;}
.yf3{bottom:150.054800pt;}
.y25e{bottom:151.297200pt;}
.y25d{bottom:158.571867pt;}
.y2f3{bottom:159.999960pt;}
.y153{bottom:161.245200pt;}
.y1c9{bottom:163.838533pt;}
.y48{bottom:163.843733pt;}
.y1b1{bottom:163.843867pt;}
.yb4{bottom:163.844133pt;}
.y64{bottom:163.858133pt;}
.y13b{bottom:163.873200pt;}
.y21e{bottom:164.745200pt;}
.yf2{bottom:164.766800pt;}
.y25c{bottom:175.457200pt;}
.y152{bottom:176.077200pt;}
.y1c8{bottom:178.502533pt;}
.y1b0{bottom:178.507867pt;}
.yb3{bottom:178.510800pt;}
.y47{bottom:178.513067pt;}
.y63{bottom:178.522133pt;}
.y13a{bottom:178.537200pt;}
.y21d{bottom:179.457200pt;}
.yf1{bottom:179.478800pt;}
.y25b{bottom:182.731867pt;}
.y151{bottom:190.909200pt;}
.y180{bottom:191.274400pt;}
.y181{bottom:191.824400pt;}
.y2f0{bottom:191.999960pt;}
.y1c7{bottom:193.166533pt;}
.y1af{bottom:193.171867pt;}
.y46{bottom:193.177067pt;}
.y139{bottom:193.201200pt;}
.y62{bottom:193.204800pt;}
.y21c{bottom:194.169200pt;}
.yf0{bottom:194.190800pt;}
.y25a{bottom:199.617200pt;}
.y2f1{bottom:205.333293pt;}
.y150{bottom:205.741200pt;}
.y259{bottom:206.891867pt;}
.y1ae{bottom:207.835867pt;}
.y1c6{bottom:207.841200pt;}
.y45{bottom:207.846400pt;}
.y138{bottom:207.865200pt;}
.y61{bottom:207.868800pt;}
.y21b{bottom:208.881200pt;}
.yef{bottom:208.897333pt;}
.yb2{bottom:214.846800pt;}
.y14f{bottom:220.573200pt;}
.y1ad{bottom:222.499867pt;}
.y1c5{bottom:222.505200pt;}
.y44{bottom:222.510400pt;}
.y137{bottom:222.529200pt;}
.y60{bottom:222.532800pt;}
.y21a{bottom:223.593200pt;}
.y258{bottom:223.777200pt;}
.yb1{bottom:229.510800pt;}
.y14e{bottom:235.405200pt;}
.y257{bottom:235.857200pt;}
.y1c4{bottom:237.169200pt;}
.y43{bottom:237.174400pt;}
.y136{bottom:237.193200pt;}
.y5f{bottom:237.196800pt;}
.y1ac{bottom:237.203867pt;}
.y219{bottom:238.305200pt;}
.y256{bottom:243.131867pt;}
.yb0{bottom:244.174800pt;}
.yee{bottom:249.780000pt;}
.y14d{bottom:250.237200pt;}
.y182{bottom:250.494400pt;}
.y42{bottom:251.800400pt;}
.y1c3{bottom:251.833200pt;}
.y135{bottom:251.857200pt;}
.y5e{bottom:251.860800pt;}
.y1ab{bottom:251.867867pt;}
.y218{bottom:253.001200pt;}
.yaf{bottom:258.838800pt;}
.y255{bottom:260.017200pt;}
.yed{bottom:264.492000pt;}
.y14c{bottom:265.069200pt;}
.y1c2{bottom:266.499867pt;}
.y134{bottom:266.521200pt;}
.y5d{bottom:266.524800pt;}
.y1aa{bottom:266.531867pt;}
.y254{bottom:267.297200pt;}
.y217{bottom:267.713200pt;}
.yae{bottom:273.502800pt;}
.yec{bottom:279.204000pt;}
.y14b{bottom:279.901200pt;}
.y1c1{bottom:281.163867pt;}
.y133{bottom:281.185200pt;}
.y5c{bottom:281.188800pt;}
.y1a9{bottom:281.195867pt;}
.y29b{bottom:281.601067pt;}
.y2d5{bottom:281.681067pt;}
.y216{bottom:282.425200pt;}
.yad{bottom:288.166800pt;}
.y29a{bottom:293.601067pt;}
.yeb{bottom:293.916000pt;}
.y2d4{bottom:294.051067pt;}
.y14a{bottom:294.733200pt;}
.y253{bottom:295.369200pt;}
.y132{bottom:295.849200pt;}
.y1a8{bottom:295.859867pt;}
.y5b{bottom:295.882133pt;}
.y215{bottom:297.126533pt;}
.y41{bottom:300.225067pt;}
.yac{bottom:302.849467pt;}
.y299{bottom:305.601067pt;}
.y2d3{bottom:306.421067pt;}
.yea{bottom:308.628000pt;}
.y149{bottom:309.565200pt;}
.y252{bottom:310.117200pt;}
.y131{bottom:310.513200pt;}
.y1a7{bottom:310.523867pt;}
.y5a{bottom:310.546133pt;}
.y214{bottom:311.838533pt;}
.y40{bottom:314.893067pt;}
.yab{bottom:317.513467pt;}
.y298{bottom:317.601067pt;}
.y2d2{bottom:318.791067pt;}
.ye9{bottom:323.340000pt;}
.y148{bottom:324.397200pt;}
.y251{bottom:324.865200pt;}
.y130{bottom:325.177200pt;}
.y1a6{bottom:325.187867pt;}
.y59{bottom:325.210133pt;}
.y213{bottom:326.481200pt;}
.y3f{bottom:329.561067pt;}
.y297{bottom:329.601067pt;}
.y2d1{bottom:331.161067pt;}
.yaa{bottom:332.177467pt;}
.ye8{bottom:338.052000pt;}
.y147{bottom:339.229200pt;}
.y250{bottom:339.613200pt;}
.y12f{bottom:339.841200pt;}
.y1a5{bottom:339.851867pt;}
.y58{bottom:339.874133pt;}
.y212{bottom:341.193200pt;}
.y296{bottom:341.601067pt;}
.y2d0{bottom:343.531067pt;}
.y3e{bottom:344.229067pt;}
.ya9{bottom:346.841467pt;}
.ye7{bottom:352.609467pt;}
.y295{bottom:353.601067pt;}
.y146{bottom:354.061200pt;}
.y24f{bottom:354.361200pt;}
.y12e{bottom:354.505200pt;}
.y1a4{bottom:354.515867pt;}
.y57{bottom:354.538133pt;}
.y2cf{bottom:355.901067pt;}
.y211{bottom:355.905200pt;}
.y3d{bottom:358.897067pt;}
.ya8{bottom:361.505467pt;}
.y294{bottom:365.601067pt;}
.ye6{bottom:367.321467pt;}
.y2ce{bottom:368.271067pt;}
.y145{bottom:368.893200pt;}
.y24e{bottom:369.109200pt;}
.y12d{bottom:369.169200pt;}
.y1a3{bottom:369.179867pt;}
.y56{bottom:369.202133pt;}
.y210{bottom:370.617200pt;}
.y3c{bottom:373.565067pt;}
.ya7{bottom:376.169467pt;}
.y293{bottom:377.601067pt;}
.y2cd{bottom:380.641067pt;}
.ye5{bottom:382.033467pt;}
.y144{bottom:383.725200pt;}
.y12c{bottom:383.833200pt;}
.y1a2{bottom:383.843867pt;}
.y24d{bottom:383.857200pt;}
.y55{bottom:383.866133pt;}
.y20f{bottom:385.329200pt;}
.y3b{bottom:388.233067pt;}
.y292{bottom:389.601067pt;}
.ya6{bottom:390.833467pt;}
.y2cc{bottom:393.011067pt;}
.ye4{bottom:396.745467pt;}
.y12b{bottom:398.497200pt;}
.y1a1{bottom:398.507867pt;}
.y54{bottom:398.530133pt;}
.y143{bottom:398.557200pt;}
.y24c{bottom:398.603867pt;}
.y2ef{bottom:398.666667pt;}
.y20e{bottom:400.041200pt;}
.y291{bottom:401.601067pt;}
.y3a{bottom:402.901067pt;}
.y2cb{bottom:405.381067pt;}
.ya5{bottom:405.497467pt;}
.ye3{bottom:411.457467pt;}
.y1a0{bottom:413.171867pt;}
.y53{bottom:413.194133pt;}
.y290{bottom:413.601067pt;}
.y20d{bottom:414.753200pt;}
.y39{bottom:417.569067pt;}
.y2ca{bottom:417.751067pt;}
.y17d{bottom:419.591067pt;}
.ya4{bottom:420.214800pt;}
.y28f{bottom:425.601067pt;}
.ye2{bottom:426.169467pt;}
.y19f{bottom:427.835867pt;}
.y52{bottom:427.858133pt;}
.y20c{bottom:429.465200pt;}
.y2c9{bottom:430.121067pt;}
.y38{bottom:432.237067pt;}
.y17c{bottom:432.261067pt;}
.ya3{bottom:434.878800pt;}
.y28e{bottom:437.601067pt;}
.y24b{bottom:439.509200pt;}
.ye1{bottom:440.881467pt;}
.y2c8{bottom:442.491067pt;}
.y19e{bottom:442.499867pt;}
.y51{bottom:442.522133pt;}
.y20b{bottom:444.177200pt;}
.y17b{bottom:444.931067pt;}
.y2ee{bottom:445.333333pt;}
.y37{bottom:446.905067pt;}
.ya2{bottom:449.542800pt;}
.y28d{bottom:449.601067pt;}
.y2ec{bottom:451.999960pt;}
.y24a{bottom:454.257200pt;}
.y2c7{bottom:454.861067pt;}
.ye0{bottom:455.593467pt;}
.y1c0{bottom:457.177200pt;}
.y19d{bottom:457.182533pt;}
.y50{bottom:457.191733pt;}
.y17a{bottom:457.601067pt;}
.y183{bottom:458.494400pt;}
.y20a{bottom:458.889200pt;}
.y36{bottom:461.573067pt;}
.y28c{bottom:461.601067pt;}
.ya1{bottom:464.206800pt;}
.y2c6{bottom:467.231067pt;}
.y2ed{bottom:467.999960pt;}
.y249{bottom:469.005200pt;}
.ydf{bottom:470.305467pt;}
.y1bf{bottom:471.841200pt;}
.y19c{bottom:471.846533pt;}
.y179{bottom:473.087733pt;}
.y28b{bottom:473.601067pt;}
.y209{bottom:473.601200pt;}
.y35{bottom:476.241067pt;}
.ya0{bottom:478.870800pt;}
.y2c5{bottom:479.601067pt;}
.y248{bottom:483.753200pt;}
.yde{bottom:485.017467pt;}
.y28a{bottom:485.601067pt;}
.y1be{bottom:486.505200pt;}
.y19b{bottom:486.510533pt;}
.y208{bottom:488.313200pt;}
.y178{bottom:488.587733pt;}
.y34{bottom:490.909067pt;}
.y2c4{bottom:491.971067pt;}
.y9f{bottom:493.534800pt;}
.y289{bottom:497.601067pt;}
.y247{bottom:498.501200pt;}
.ydd{bottom:499.729467pt;}
.y1bd{bottom:501.169200pt;}
.y19a{bottom:501.174533pt;}
.y207{bottom:503.025200pt;}
.y177{bottom:504.087733pt;}
.y2c3{bottom:504.341067pt;}
.y33{bottom:505.577067pt;}
.y9e{bottom:508.198800pt;}
.y288{bottom:509.601067pt;}
.y7c{bottom:512.458000pt;}
.y246{bottom:513.249200pt;}
.ydc{bottom:514.441467pt;}
.y1bc{bottom:515.833200pt;}
.y199{bottom:515.838533pt;}
.y2c2{bottom:516.711067pt;}
.y206{bottom:517.694533pt;}
.y176{bottom:519.587733pt;}
.y184{bottom:519.824400pt;}
.y32{bottom:520.245067pt;}
.y287{bottom:521.601067pt;}
.y9d{bottom:522.862800pt;}
.y20{bottom:527.101067pt;}
.y7b{bottom:527.126000pt;}
.y245{bottom:527.997200pt;}
.y2c1{bottom:529.081067pt;}
.ydb{bottom:529.153467pt;}
.y198{bottom:530.502533pt;}
.y1bb{bottom:530.510533pt;}
.y205{bottom:532.406533pt;}
.y2e9{bottom:533.333293pt;}
.y286{bottom:533.601067pt;}
.y31{bottom:534.913067pt;}
.y175{bottom:535.087733pt;}
.y9c{bottom:537.526800pt;}
.y1f{bottom:539.101067pt;}
.y2c0{bottom:541.451067pt;}
.y7a{bottom:541.794000pt;}
.y244{bottom:542.745200pt;}
.yda{bottom:543.865467pt;}
.y197{bottom:545.166533pt;}
.y1ba{bottom:545.174533pt;}
.y285{bottom:545.601067pt;}
.y204{bottom:547.118533pt;}
.y2ea{bottom:549.333293pt;}
.y30{bottom:549.581067pt;}
.y174{bottom:550.587733pt;}
.y1e{bottom:551.101067pt;}
.y2eb{bottom:551.999960pt;}
.y9b{bottom:552.190800pt;}
.y2bf{bottom:553.821067pt;}
.y79{bottom:556.462000pt;}
.y243{bottom:557.493200pt;}
.y284{bottom:557.601067pt;}
.yd9{bottom:558.577467pt;}
.y196{bottom:559.830533pt;}
.y1b9{bottom:559.838533pt;}
.y203{bottom:561.830533pt;}
.y1d{bottom:563.101067pt;}
.y2f{bottom:564.249067pt;}
.y173{bottom:566.087733pt;}
.y2be{bottom:566.191067pt;}
.y9a{bottom:566.854800pt;}
.y283{bottom:569.601067pt;}
.y78{bottom:571.130000pt;}
.y242{bottom:572.241200pt;}
.yd8{bottom:573.289467pt;}
.y1c{bottom:575.101067pt;}
.y2e3{bottom:575.999800pt;}
.y202{bottom:576.542533pt;}
.y2bd{bottom:578.561067pt;}
.y2e{bottom:578.917067pt;}
.y99{bottom:581.518800pt;}
.y172{bottom:581.587733pt;}
.y282{bottom:581.601067pt;}
.y77{bottom:585.788667pt;}
.y241{bottom:586.989200pt;}
.yd7{bottom:588.001467pt;}
.y2e4{bottom:589.333133pt;}
.y2bc{bottom:590.931067pt;}
.y201{bottom:591.254533pt;}
.y2d{bottom:593.585067pt;}
.y281{bottom:593.601067pt;}
.y98{bottom:596.182800pt;}
.y171{bottom:597.087733pt;}
.y1b{bottom:599.101067pt;}
.y76{bottom:600.456667pt;}
.y240{bottom:601.733200pt;}
.y2e5{bottom:602.666600pt;}
.yd6{bottom:602.713467pt;}
.y2bb{bottom:603.301067pt;}
.y1e8{bottom:605.264400pt;}
.y280{bottom:605.601067pt;}
.y200{bottom:605.966533pt;}
.y2c{bottom:608.253067pt;}
.y97{bottom:610.846800pt;}
.y1a{bottom:611.101067pt;}
.y170{bottom:612.587733pt;}
.y75{bottom:615.124667pt;}
.y2ba{bottom:615.671067pt;}
.y2e6{bottom:615.999933pt;}
.y23f{bottom:616.481200pt;}
.yd5{bottom:617.425467pt;}
.y1e7{bottom:617.934400pt;}
.y1ff{bottom:620.678533pt;}
.y2b{bottom:622.921067pt;}
.y19{bottom:623.101067pt;}
.y96{bottom:625.510800pt;}
.y2b9{bottom:628.041067pt;}
.y16f{bottom:628.087733pt;}
.y2e7{bottom:629.333267pt;}
.y74{bottom:629.792667pt;}
.y23e{bottom:631.229200pt;}
.yd4{bottom:632.137467pt;}
.y112{bottom:633.163867pt;}
.y1e6{bottom:633.431067pt;}
.y129{bottom:633.494533pt;}
.y18{bottom:635.101067pt;}
.y1fe{bottom:635.363867pt;}
.y27f{bottom:636.934400pt;}
.y2a{bottom:637.589067pt;}
.y2e2{bottom:640.000000pt;}
.y95{bottom:640.174800pt;}
.y2b8{bottom:640.411067pt;}
.y2e8{bottom:642.666733pt;}
.y16e{bottom:643.587733pt;}
.y73{bottom:644.460667pt;}
.y23d{bottom:645.969200pt;}
.yd3{bottom:646.849467pt;}
.y17{bottom:647.101067pt;}
.y111{bottom:647.827867pt;}
.y128{bottom:648.290533pt;}
.y1e5{bottom:648.931067pt;}
.y27e{bottom:648.934400pt;}
.y1fd{bottom:650.075867pt;}
.y29{bottom:652.257067pt;}
.y2b7{bottom:652.781067pt;}
.y94{bottom:654.838800pt;}
.y16d{bottom:659.087733pt;}
.y16{bottom:659.101067pt;}
.y72{bottom:659.128667pt;}
.y23c{bottom:660.717200pt;}
.y27d{bottom:660.934400pt;}
.yd2{bottom:661.561467pt;}
.y110{bottom:662.491867pt;}
.y127{bottom:663.086533pt;}
.y1e4{bottom:664.431067pt;}
.y1fc{bottom:664.787867pt;}
.y2b6{bottom:665.151067pt;}
.y28{bottom:666.925067pt;}
.y93{bottom:669.502800pt;}
.y71{bottom:673.796667pt;}
.y16c{bottom:674.587733pt;}
.y23b{bottom:675.465200pt;}
.yd1{bottom:676.273467pt;}
.y10f{bottom:677.155867pt;}
.y2e0{bottom:677.333333pt;}
.y2b5{bottom:677.521067pt;}
.y126{bottom:677.882533pt;}
.y27c{bottom:678.267733pt;}
.y1fb{bottom:679.499867pt;}
.y1e3{bottom:679.931067pt;}
.y2e1{bottom:679.999960pt;}
.y27{bottom:681.593067pt;}
.y92{bottom:684.166800pt;}
.y15{bottom:687.101067pt;}
.y70{bottom:688.459333pt;}
.y2b4{bottom:689.891067pt;}
.y16b{bottom:690.087733pt;}
.y23a{bottom:690.213200pt;}
.y27b{bottom:690.267733pt;}
.yd0{bottom:690.985467pt;}
.y10e{bottom:691.819867pt;}
.y125{bottom:692.678533pt;}
.y1fa{bottom:694.211867pt;}
.y1e2{bottom:695.431067pt;}
.y26{bottom:696.261067pt;}
.y91{bottom:698.854800pt;}
.y14{bottom:699.101067pt;}
.y2b3{bottom:702.261067pt;}
.y27a{bottom:702.267733pt;}
.y6f{bottom:703.127333pt;}
.y2df{bottom:704.000000pt;}
.y239{bottom:704.961200pt;}
.y16a{bottom:705.587733pt;}
.ycf{bottom:705.697467pt;}
.y10d{bottom:706.534533pt;}
.y124{bottom:707.474533pt;}
.y1f9{bottom:708.897200pt;}
.y25{bottom:710.929067pt;}
.y1e1{bottom:710.931067pt;}
.y90{bottom:713.518800pt;}
.y279{bottom:714.267733pt;}
.y2b2{bottom:714.631067pt;}
.y6e{bottom:717.795333pt;}
.y238{bottom:719.709200pt;}
.yce{bottom:720.409467pt;}
.y169{bottom:721.087733pt;}
.y10c{bottom:721.198533pt;}
.y123{bottom:722.270533pt;}
.y13{bottom:723.101067pt;}
.y1f8{bottom:723.609200pt;}
.y24{bottom:725.597067pt;}
.y278{bottom:726.267733pt;}
.y1e0{bottom:726.431067pt;}
.y2b1{bottom:727.001067pt;}
.y185{bottom:727.824400pt;}
.y8f{bottom:728.182800pt;}
.y6d{bottom:732.463333pt;}
.y237{bottom:734.450533pt;}
.y12{bottom:735.101067pt;}
.ycd{bottom:735.121467pt;}
.y10b{bottom:735.862533pt;}
.y168{bottom:736.587733pt;}
.y122{bottom:737.066533pt;}
.y277{bottom:738.267733pt;}
.y1f7{bottom:738.321200pt;}
.y2b0{bottom:739.371067pt;}
.y23{bottom:740.265067pt;}
.y1df{bottom:741.931067pt;}
.y8e{bottom:742.846800pt;}
.y11{bottom:747.101067pt;}
.y236{bottom:749.198533pt;}
.ycc{bottom:749.833467pt;}
.y10a{bottom:750.526533pt;}
.y2af{bottom:751.741067pt;}
.y121{bottom:751.862533pt;}
.y167{bottom:752.087733pt;}
.y1f6{bottom:753.033200pt;}
.y22{bottom:754.933067pt;}
.y276{bottom:755.601067pt;}
.y1de{bottom:757.431067pt;}
.y8d{bottom:757.510800pt;}
.y10{bottom:759.101067pt;}
.y2dd{bottom:759.999960pt;}
.y6c{bottom:761.601067pt;}
.y235{bottom:763.946533pt;}
.y2ae{bottom:764.111067pt;}
.ycb{bottom:764.545467pt;}
.y109{bottom:765.190533pt;}
.y120{bottom:766.658533pt;}
.y166{bottom:767.587733pt;}
.y1f5{bottom:767.745200pt;}
.y21{bottom:769.601067pt;}
.yf{bottom:771.101067pt;}
.y8c{bottom:772.174800pt;}
.y1dd{bottom:772.931067pt;}
.y275{bottom:772.934400pt;}
.y2de{bottom:773.333293pt;}
.y2ad{bottom:776.481067pt;}
.y234{bottom:778.694533pt;}
.yca{bottom:779.225467pt;}
.y108{bottom:779.854533pt;}
.y11f{bottom:781.454533pt;}
.y1f4{bottom:782.457200pt;}
.y165{bottom:783.087733pt;}
.y274{bottom:784.934400pt;}
.y8b{bottom:786.838800pt;}
.y1dc{bottom:788.431067pt;}
.y2ac{bottom:788.851067pt;}
.y186{bottom:791.824400pt;}
.y233{bottom:793.442533pt;}
.yc9{bottom:793.937467pt;}
.y107{bottom:794.518533pt;}
.y11e{bottom:796.250533pt;}
.y1f3{bottom:797.121200pt;}
.y164{bottom:798.587733pt;}
.y2ab{bottom:801.221067pt;}
.y8a{bottom:801.502800pt;}
.y273{bottom:802.267733pt;}
.y1db{bottom:803.931067pt;}
.y9{bottom:806.265067pt;}
.y232{bottom:808.189200pt;}
.yc8{bottom:808.649467pt;}
.y106{bottom:809.182533pt;}
.y11d{bottom:811.046533pt;}
.y1f2{bottom:811.833200pt;}
.y2aa{bottom:813.591067pt;}
.y163{bottom:814.087733pt;}
.y89{bottom:816.166800pt;}
.y1da{bottom:819.431067pt;}
.y272{bottom:819.601067pt;}
.y231{bottom:822.849200pt;}
.yc7{bottom:823.361467pt;}
.y105{bottom:823.846533pt;}
.y2db{bottom:823.999920pt;}
.y11c{bottom:825.842533pt;}
.y2a9{bottom:825.961067pt;}
.y8{bottom:826.265067pt;}
.y1f1{bottom:826.545200pt;}
.y162{bottom:829.587733pt;}
.y88{bottom:830.833467pt;}
.y271{bottom:831.601067pt;}
.y1d9{bottom:834.931067pt;}
.y230{bottom:837.597200pt;}
.yc6{bottom:838.073467pt;}
.y2a8{bottom:838.331067pt;}
.y104{bottom:838.510533pt;}
.y2dc{bottom:839.999960pt;}
.y11b{bottom:840.638533pt;}
.y1f0{bottom:841.257200pt;}
.y270{bottom:843.601067pt;}
.y161{bottom:845.087733pt;}
.y87{bottom:845.497467pt;}
.y7{bottom:846.267733pt;}
.y1d8{bottom:850.431067pt;}
.y2a7{bottom:850.701067pt;}
.y22f{bottom:852.345200pt;}
.yc5{bottom:852.785467pt;}
.y103{bottom:853.174533pt;}
.y11a{bottom:855.434533pt;}
.y26f{bottom:855.601067pt;}
.y1ef{bottom:855.969200pt;}
.y86{bottom:860.158133pt;}
.y160{bottom:860.587733pt;}
.y2a6{bottom:863.071067pt;}
.y1d7{bottom:865.931067pt;}
.y22e{bottom:867.093200pt;}
.yc4{bottom:867.497467pt;}
.y102{bottom:867.838533pt;}
.y119{bottom:870.230533pt;}
.y1ee{bottom:870.681200pt;}
.y26e{bottom:874.267733pt;}
.y2a5{bottom:875.441067pt;}
.y85{bottom:875.497467pt;}
.y15f{bottom:876.087733pt;}
.y6{bottom:880.934400pt;}
.y1d6{bottom:881.431067pt;}
.y22d{bottom:881.841200pt;}
.yc3{bottom:882.180133pt;}
.y101{bottom:882.502533pt;}
.y118{bottom:885.030533pt;}
.y2d7{bottom:885.333213pt;}
.y1ed{bottom:885.393200pt;}
.y26d{bottom:886.267733pt;}
.y2a4{bottom:887.811067pt;}
.y15e{bottom:891.587733pt;}
.y22c{bottom:896.589200pt;}
.yc2{bottom:896.892133pt;}
.y1d5{bottom:896.931067pt;}
.y100{bottom:897.166533pt;}
.y26c{bottom:898.267733pt;}
.y2d8{bottom:898.666547pt;}
.y1ec{bottom:900.105200pt;}
.y2a3{bottom:900.181067pt;}
.y15d{bottom:909.757733pt;}
.y26b{bottom:910.267733pt;}
.y22b{bottom:911.337200pt;}
.yc1{bottom:911.604133pt;}
.y84{bottom:911.828133pt;}
.yff{bottom:911.830533pt;}
.y2d9{bottom:912.000013pt;}
.y1d4{bottom:912.431067pt;}
.y2a2{bottom:912.551067pt;}
.y5{bottom:912.934400pt;}
.y1eb{bottom:914.817200pt;}
.y26a{bottom:922.267733pt;}
.y2a1{bottom:924.921067pt;}
.y2da{bottom:925.333347pt;}
.y117{bottom:925.966533pt;}
.y22a{bottom:926.085200pt;}
.yc0{bottom:926.316133pt;}
.y83{bottom:926.492133pt;}
.yfe{bottom:926.494533pt;}
.y15c{bottom:927.927733pt;}
.y1d3{bottom:927.931067pt;}
.y1ea{bottom:929.523867pt;}
.y269{bottom:934.267733pt;}
.y2a0{bottom:937.291067pt;}
.y15b{bottom:940.597733pt;}
.y116{bottom:940.762533pt;}
.y229{bottom:940.833200pt;}
.ybf{bottom:941.028133pt;}
.y82{bottom:941.156133pt;}
.yfd{bottom:941.158533pt;}
.y2d6{bottom:943.999920pt;}
.y4{bottom:944.934400pt;}
.y1d1{bottom:946.101067pt;}
.y268{bottom:946.267733pt;}
.y29f{bottom:949.661067pt;}
.y115{bottom:955.558533pt;}
.y228{bottom:955.581200pt;}
.ybe{bottom:955.740133pt;}
.y81{bottom:955.820133pt;}
.yfc{bottom:955.822533pt;}
.y15a{bottom:958.767733pt;}
.y1d2{bottom:958.771067pt;}
.y29e{bottom:962.031067pt;}
.y227{bottom:970.329200pt;}
.y114{bottom:970.354533pt;}
.y1e9{bottom:970.438533pt;}
.ybd{bottom:970.452133pt;}
.yfb{bottom:970.486533pt;}
.y80{bottom:970.486800pt;}
.y267{bottom:974.267733pt;}
.y29d{bottom:974.401067pt;}
.y159{bottom:977.267733pt;}
.y3{bottom:982.267733pt;}
.y226{bottom:985.077200pt;}
.yfa{bottom:985.150533pt;}
.y7f{bottom:985.150800pt;}
.y113{bottom:985.159867pt;}
.ybc{bottom:985.164133pt;}
.y29c{bottom:986.771067pt;}
.y266{bottom:991.067733pt;}
.ya{bottom:1014.028533pt;}
.y7d{bottom:1040.000000pt;}
.h2f{height:21.555456pt;}
.h1e{height:30.480000pt;}
.h2{height:32.512000pt;}
.h9{height:36.328125pt;}
.h1d{height:36.576000pt;}
.hd{height:36.820312pt;}
.h8{height:38.608000pt;}
.h12{height:40.951467pt;}
.h11{height:44.500000pt;}
.h7{height:44.704000pt;}
.h15{height:45.482880pt;}
.h1f{height:45.525547pt;}
.h22{height:45.568214pt;}
.he{height:45.568747pt;}
.h14{height:45.589547pt;}
.h16{height:45.610880pt;}
.hf{height:45.611414pt;}
.h21{height:45.621547pt;}
.h20{height:45.632214pt;}
.h23{height:45.642880pt;}
.h10{height:45.643414pt;}
.h1c{height:45.648214pt;}
.hb{height:45.653547pt;}
.hc{height:45.663147pt;}
.ha{height:45.664214pt;}
.h13{height:45.674880pt;}
.h2b{height:45.690880pt;}
.h2e{height:45.701547pt;}
.h24{height:45.706880pt;}
.h2c{height:45.712214pt;}
.h2d{height:45.717547pt;}
.h28{height:45.728214pt;}
.h1b{height:45.749014pt;}
.h29{height:45.749547pt;}
.h17{height:45.781547pt;}
.h26{height:45.792214pt;}
.h18{height:45.813547pt;}
.h1a{height:45.834880pt;}
.h25{height:45.856214pt;}
.h27{height:45.962880pt;}
.h2a{height:46.037547pt;}
.h19{height:46.303680pt;}
.h3{height:48.768000pt;}
.h32{height:55.625000pt;}
.h5{height:66.227616pt;}
.h6{height:66.238283pt;}
.h33{height:66.750000pt;}
.h4{height:81.280000pt;}
.h34{height:108.958333pt;}
.h31{height:243.437500pt;}
.h30{height:1057.333333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:793.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:55.994667pt;}
.x5{left:60.666667pt;}
.x6{left:64.577733pt;}
.xd{left:68.001867pt;}
.x34{left:72.800000pt;}
.x40{left:112.000000pt;}
.x3c{left:113.738813pt;}
.x3a{left:117.291013pt;}
.x3d{left:127.979253pt;}
.x39{left:132.410893pt;}
.x10{left:159.449333pt;}
.x16{left:166.586667pt;}
.x3e{left:175.995093pt;}
.x19{left:185.093333pt;}
.x3{left:194.230000pt;}
.x17{left:203.253333pt;}
.x32{left:213.332667pt;}
.x18{left:215.923333pt;}
.x2{left:221.951733pt;}
.x1a{left:234.103333pt;}
.x37{left:245.333333pt;}
.x1b{left:249.603333pt;}
.x11{left:257.059333pt;}
.x1c{left:265.103333pt;}
.x1d{left:280.603333pt;}
.x1e{left:296.103333pt;}
.x36{left:300.793173pt;}
.x33{left:305.332667pt;}
.x1f{left:311.603333pt;}
.x20{left:327.103333pt;}
.x3f{left:336.480027pt;}
.x21{left:342.603333pt;}
.x12{left:354.259333pt;}
.x22{left:358.103333pt;}
.x23{left:373.603333pt;}
.x24{left:389.103333pt;}
.x25{left:404.603333pt;}
.xe{left:408.919733pt;}
.xf{left:420.917600pt;}
.x35{left:425.730000pt;}
.x26{left:435.603333pt;}
.x13{left:451.459333pt;}
.x27{left:466.603333pt;}
.x8{left:474.300000pt;}
.x38{left:475.758987pt;}
.x9{left:482.298667pt;}
.xa{left:492.856000pt;}
.xb{left:498.298667pt;}
.x28{left:513.103333pt;}
.x29{left:528.603333pt;}
.xc{left:540.735733pt;}
.x2a{left:544.103333pt;}
.x14{left:548.659333pt;}
.x2b{left:559.603333pt;}
.x2c{left:575.103333pt;}
.x2d{left:590.603333pt;}
.x2e{left:606.086667pt;}
.x2f{left:618.756667pt;}
.x30{left:631.426667pt;}
.x31{left:644.096667pt;}
.x15{left:645.859333pt;}
.x3b{left:657.332480pt;}
.x4{left:661.518533pt;}
.x1{left:722.340933pt;}
}




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