
    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_9932cf62b132f1919aec6716.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.140000;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_1c8314987d67a44adbcb04bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.266000;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_a2f9ae236afc75f71e072614.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.194000;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_a2f9ae236afc75f71e072614.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.194000;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_0dc101c3165d4355ebc2bfcb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.140000;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_499e009462130c31ef6ac244.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.266000;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_a2f9ae236afc75f71e072614.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.194000;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_64bf7ccd525fa7f6246692ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_9feb03684af1a351964bd206.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.075000;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_a2f9ae236afc75f71e072614.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.194000;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_64bf7ccd525fa7f6246692ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010000;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_a2f9ae236afc75f71e072614.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.194000;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_499e009462130c31ef6ac244.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.266000;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_64bf7ccd525fa7f6246692ff.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.010000;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_0317f6f62ec42293a3239bec.woff2')format("woff");}.fff{font-family:fff;line-height:1.141000;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_58c4b0cf777fb48e79200e9c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.144000;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_499e009462130c31ef6ac244.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.266000;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_64bf7ccd525fa7f6246692ff.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.010000;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;}
.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);}
.v3{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.986000px;}
.v2{vertical-align:21.978000px;}
.v5{vertical-align:28.799400px;}
.v1{vertical-align:56.018400px;}
.ls7{letter-spacing:-2.982000px;}
.ls9{letter-spacing:-1.716000px;}
.ls8{letter-spacing:-1.260000px;}
.ls6{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-1.104000px;}
.ls5{letter-spacing:-0.756000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000090px;}
.ls2{letter-spacing:0.000120px;}
.ls1{letter-spacing:0.000216px;}
.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;}
}
.ws0{word-spacing:-21.450000px;}
.ws104{word-spacing:-16.830000px;}
.ws105{word-spacing:-16.434000px;}
.ws117{word-spacing:-14.718000px;}
.wscb{word-spacing:-11.040000px;}
.ws59{word-spacing:-10.710000px;}
.ws5a{word-spacing:-9.954000px;}
.ws11{word-spacing:-9.811890px;}
.ws24{word-spacing:-9.534000px;}
.wse8{word-spacing:-9.450000px;}
.wse7{word-spacing:-7.728000px;}
.wsbf{word-spacing:-6.097014px;}
.wsad{word-spacing:-5.558322px;}
.ws115{word-spacing:-3.762000px;}
.ws116{word-spacing:-3.696000px;}
.ws49{word-spacing:-3.300000px;}
.ws47{word-spacing:-3.168000px;}
.ws16{word-spacing:-3.102000px;}
.ws118{word-spacing:-2.970000px;}
.ws111{word-spacing:-2.904000px;}
.ws31{word-spacing:-2.838000px;}
.ws7f{word-spacing:-2.814000px;}
.ws2b{word-spacing:-2.706000px;}
.wsd8{word-spacing:-2.442000px;}
.ws26{word-spacing:-2.376000px;}
.wsdb{word-spacing:-2.310000px;}
.ws5f{word-spacing:-2.226000px;}
.ws92{word-spacing:-2.184000px;}
.ws4c{word-spacing:-2.178000px;}
.wsb8{word-spacing:-2.112000px;}
.ws8e{word-spacing:-2.100000px;}
.ws53{word-spacing:-2.046000px;}
.ws71{word-spacing:-2.016000px;}
.ws35{word-spacing:-1.980000px;}
.ws81{word-spacing:-1.974000px;}
.wsa0{word-spacing:-1.932000px;}
.ws38{word-spacing:-1.914000px;}
.ws60{word-spacing:-1.890000px;}
.ws55{word-spacing:-1.848000px;}
.ws58{word-spacing:-1.782000px;}
.wseb{word-spacing:-1.722000px;}
.ws113{word-spacing:-1.716000px;}
.wsc7{word-spacing:-1.650000px;}
.wsac{word-spacing:-1.596000px;}
.ws10a{word-spacing:-1.584000px;}
.wse6{word-spacing:-1.554000px;}
.ws46{word-spacing:-1.518000px;}
.wsa7{word-spacing:-1.512000px;}
.wsee{word-spacing:-1.470000px;}
.ws82{word-spacing:-1.386000px;}
.ws78{word-spacing:-1.344000px;}
.wsca{word-spacing:-1.302000px;}
.ws21{word-spacing:-1.188000px;}
.ws79{word-spacing:-1.176000px;}
.ws43{word-spacing:-1.134000px;}
.ws57{word-spacing:-1.122000px;}
.wsab{word-spacing:-1.092000px;}
.ws54{word-spacing:-1.056000px;}
.ws108{word-spacing:-0.990000px;}
.ws5b{word-spacing:-0.924000px;}
.wsb0{word-spacing:-0.882000px;}
.ws2d{word-spacing:-0.858000px;}
.wsaf{word-spacing:-0.840000px;}
.wsf5{word-spacing:-0.756000px;}
.ws34{word-spacing:-0.726000px;}
.wsf8{word-spacing:-0.714000px;}
.ws5c{word-spacing:-0.672000px;}
.ws40{word-spacing:-0.660000px;}
.ws3d{word-spacing:-0.594000px;}
.wsf9{word-spacing:-0.504000px;}
.ws45{word-spacing:-0.462000px;}
.ws9d{word-spacing:-0.420000px;}
.wsb1{word-spacing:-0.378000px;}
.wsae{word-spacing:-0.336000px;}
.ws8{word-spacing:-0.330000px;}
.ws70{word-spacing:-0.210000px;}
.ws1b{word-spacing:-0.132000px;}
.ws9c{word-spacing:-0.126000px;}
.wsc9{word-spacing:-0.084000px;}
.ws102{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.wsbe{word-spacing:0.042000px;}
.ws5{word-spacing:0.066000px;}
.ws6e{word-spacing:0.084000px;}
.ws6d{word-spacing:0.126000px;}
.wsaa{word-spacing:0.168000px;}
.ws56{word-spacing:0.198000px;}
.wsea{word-spacing:0.210000px;}
.ws61{word-spacing:0.252000px;}
.ws6{word-spacing:0.264000px;}
.wsf2{word-spacing:0.294000px;}
.ws3{word-spacing:0.330000px;}
.ws7b{word-spacing:0.336000px;}
.wsec{word-spacing:0.378000px;}
.wsc8{word-spacing:0.396000px;}
.ws8d{word-spacing:0.420000px;}
.ws17{word-spacing:0.462000px;}
.ws50{word-spacing:0.504000px;}
.ws42{word-spacing:0.528000px;}
.ws62{word-spacing:0.588000px;}
.ws4d{word-spacing:0.594000px;}
.ws85{word-spacing:0.630000px;}
.ws18{word-spacing:0.660000px;}
.ws77{word-spacing:0.756000px;}
.ws4e{word-spacing:0.792000px;}
.ws74{word-spacing:0.798000px;}
.wsdc{word-spacing:0.840000px;}
.wsc5{word-spacing:0.858000px;}
.ws29{word-spacing:0.924000px;}
.wsfd{word-spacing:0.990000px;}
.ws72{word-spacing:1.008000px;}
.ws8b{word-spacing:1.050000px;}
.ws2a{word-spacing:1.056000px;}
.wsa6{word-spacing:1.092000px;}
.ws25{word-spacing:1.104000px;}
.wsf{word-spacing:1.122000px;}
.ws90{word-spacing:1.176000px;}
.ws7{word-spacing:1.188000px;}
.wsbc{word-spacing:1.218000px;}
.ws39{word-spacing:1.254000px;}
.wsa4{word-spacing:1.260000px;}
.wsf3{word-spacing:1.302000px;}
.ws36{word-spacing:1.320000px;}
.wsa1{word-spacing:1.344000px;}
.ws76{word-spacing:1.386000px;}
.ws94{word-spacing:1.428000px;}
.ws4{word-spacing:1.452000px;}
.ws3c{word-spacing:1.518000px;}
.ws99{word-spacing:1.554000px;}
.ws96{word-spacing:1.596000px;}
.wsb6{word-spacing:1.650000px;}
.wsbd{word-spacing:1.722000px;}
.ws32{word-spacing:1.782000px;}
.wsa2{word-spacing:1.806000px;}
.ws103{word-spacing:1.848000px;}
.ws86{word-spacing:1.890000px;}
.wse4{word-spacing:1.914000px;}
.wsbb{word-spacing:1.980000px;}
.wsb9{word-spacing:2.046000px;}
.ws6a{word-spacing:2.058000px;}
.ws2c{word-spacing:2.112000px;}
.wsf6{word-spacing:2.142000px;}
.ws28{word-spacing:2.178000px;}
.ws95{word-spacing:2.184000px;}
.ws9b{word-spacing:2.226000px;}
.ws48{word-spacing:2.244000px;}
.wsf7{word-spacing:2.268000px;}
.wsa3{word-spacing:2.310000px;}
.ws37{word-spacing:2.376000px;}
.ws69{word-spacing:2.394000px;}
.ws52{word-spacing:2.442000px;}
.ws84{word-spacing:2.478000px;}
.ws10f{word-spacing:2.508000px;}
.ws6f{word-spacing:2.562000px;}
.ws10e{word-spacing:2.574000px;}
.ws9a{word-spacing:2.646000px;}
.wsa9{word-spacing:2.688000px;}
.ws97{word-spacing:2.814000px;}
.ws7d{word-spacing:2.856000px;}
.wse3{word-spacing:2.904000px;}
.ws19{word-spacing:2.970000px;}
.wse{word-spacing:3.036000px;}
.ws6c{word-spacing:3.066000px;}
.wsb2{word-spacing:3.150000px;}
.ws11e{word-spacing:3.168000px;}
.ws33{word-spacing:3.192000px;}
.ws7a{word-spacing:3.234000px;}
.ws8a{word-spacing:3.276000px;}
.ws2{word-spacing:3.300000px;}
.wsed{word-spacing:3.318000px;}
.wsa5{word-spacing:3.360000px;}
.ws27{word-spacing:3.366000px;}
.wsb3{word-spacing:3.402000px;}
.ws1e{word-spacing:3.432000px;}
.ws6b{word-spacing:3.486000px;}
.ws1c{word-spacing:3.498000px;}
.ws91{word-spacing:3.612000px;}
.ws1d{word-spacing:3.630000px;}
.ws11c{word-spacing:3.696000px;}
.ws7e{word-spacing:3.738000px;}
.wsda{word-spacing:3.828000px;}
.wsfa{word-spacing:3.864000px;}
.wsf4{word-spacing:3.906000px;}
.wsf0{word-spacing:3.990000px;}
.ws112{word-spacing:4.026000px;}
.wsa8{word-spacing:4.032000px;}
.wsfb{word-spacing:4.074000px;}
.ws3a{word-spacing:4.092000px;}
.wse1{word-spacing:4.158000px;}
.ws4f{word-spacing:4.224000px;}
.wsfc{word-spacing:4.284000px;}
.ws30{word-spacing:4.290000px;}
.ws75{word-spacing:4.326000px;}
.ws73{word-spacing:4.368000px;}
.ws11b{word-spacing:4.422000px;}
.ws87{word-spacing:4.452000px;}
.wsb7{word-spacing:4.488000px;}
.wsd7{word-spacing:4.554000px;}
.wsf1{word-spacing:4.578000px;}
.ws89{word-spacing:4.620000px;}
.ws1f{word-spacing:4.752000px;}
.ws93{word-spacing:4.872000px;}
.wsc4{word-spacing:4.884000px;}
.wsd{word-spacing:4.950000px;}
.wse9{word-spacing:4.956000px;}
.ws98{word-spacing:4.998000px;}
.wsb{word-spacing:5.016000px;}
.ws106{word-spacing:5.082000px;}
.wsc6{word-spacing:5.148000px;}
.ws8c{word-spacing:5.166000px;}
.wsb4{word-spacing:5.280000px;}
.ws7c{word-spacing:5.334000px;}
.ws4a{word-spacing:5.412000px;}
.ws13{word-spacing:5.478000px;}
.wse5{word-spacing:5.544000px;}
.ws114{word-spacing:5.610000px;}
.ws44{word-spacing:5.676000px;}
.ws9f{word-spacing:5.712000px;}
.wse2{word-spacing:5.742000px;}
.ws5d{word-spacing:5.754000px;}
.ws67{word-spacing:5.796000px;}
.ws4b{word-spacing:5.808000px;}
.wsc{word-spacing:5.874000px;}
.ws83{word-spacing:5.922000px;}
.ws23{word-spacing:5.940000px;}
.ws51{word-spacing:6.006000px;}
.ws5e{word-spacing:6.048000px;}
.wsc1{word-spacing:6.072000px;}
.ws68{word-spacing:6.132000px;}
.ws64{word-spacing:6.216000px;}
.ws10b{word-spacing:6.402000px;}
.wsef{word-spacing:6.426000px;}
.wsff{word-spacing:6.468000px;}
.ws2f{word-spacing:6.534000px;}
.ws66{word-spacing:6.552000px;}
.ws100{word-spacing:6.600000px;}
.ws8f{word-spacing:6.636000px;}
.wsfe{word-spacing:6.666000px;}
.wsa{word-spacing:6.732000px;}
.wsd9{word-spacing:6.798000px;}
.ws20{word-spacing:6.930000px;}
.ws3b{word-spacing:6.996000px;}
.ws11d{word-spacing:7.128000px;}
.ws88{word-spacing:7.140000px;}
.ws12{word-spacing:7.194000px;}
.ws2e{word-spacing:7.260000px;}
.ws14{word-spacing:7.326000px;}
.wsba{word-spacing:7.392000px;}
.ws109{word-spacing:7.458000px;}
.ws101{word-spacing:7.524000px;}
.ws63{word-spacing:7.644000px;}
.wsc2{word-spacing:7.722000px;}
.ws119{word-spacing:7.788000px;}
.ws11a{word-spacing:7.920000px;}
.ws65{word-spacing:7.980000px;}
.ws10c{word-spacing:7.986000px;}
.ws15{word-spacing:8.118000px;}
.wsc3{word-spacing:8.184000px;}
.ws9e{word-spacing:8.190000px;}
.ws41{word-spacing:8.250000px;}
.ws1a{word-spacing:8.382000px;}
.ws22{word-spacing:8.514000px;}
.ws80{word-spacing:8.610000px;}
.ws3f{word-spacing:8.646000px;}
.ws9{word-spacing:8.712000px;}
.wsb5{word-spacing:9.240000px;}
.ws107{word-spacing:9.504000px;}
.ws3e{word-spacing:9.834000px;}
.ws110{word-spacing:11.814000px;}
.ws10{word-spacing:18.744000px;}
.ws10d{word-spacing:21.252000px;}
.wscc{word-spacing:74.770800px;}
.wscd{word-spacing:389.683800px;}
.wscf{word-spacing:398.546400px;}
.wsd4{word-spacing:399.407400px;}
.wsdd{word-spacing:401.023800px;}
.wsd1{word-spacing:401.381400px;}
.wsd2{word-spacing:401.528400px;}
.wsd6{word-spacing:402.956400px;}
.wsde{word-spacing:403.018800px;}
.wsce{word-spacing:405.140400px;}
.wse0{word-spacing:409.886400px;}
.wsd5{word-spacing:411.566400px;}
.wsdf{word-spacing:412.049400px;}
.wsd3{word-spacing:412.826400px;}
.wsd0{word-spacing:414.883800px;}
.wsc0{word-spacing:831.785400px;}
._11{margin-left:-21.088800px;}
._5{margin-left:-17.721000px;}
._63{margin-left:-16.104000px;}
._14{margin-left:-8.164200px;}
._1{margin-left:-6.736800px;}
._b{margin-left:-5.497800px;}
._8{margin-left:-4.296600px;}
._3{margin-left:-2.640000px;}
._4{margin-left:-1.254000px;}
._2{width:1.339200px;}
._0{width:2.865600px;}
._7{width:4.270200px;}
._6{width:5.583600px;}
._1b{width:6.642000px;}
._a{width:7.781400px;}
._c{width:8.863800px;}
._10{width:9.933000px;}
._f{width:11.253000px;}
._20{width:47.277000px;}
._1e{width:59.402400px;}
._e{width:68.004000px;}
._18{width:70.676400px;}
._25{width:79.416000px;}
._16{width:81.800400px;}
._17{width:221.769000px;}
._27{width:223.782000px;}
._2d{width:277.911000px;}
._1f{width:304.904400px;}
._2e{width:319.338600px;}
._2b{width:321.378000px;}
._2a{width:338.532000px;}
._34{width:344.868600px;}
._1d{width:347.192400px;}
._3b{width:364.860000px;}
._2f{width:393.589800px;}
._32{width:400.016400px;}
._19{width:403.946400px;}
._35{width:407.701800px;}
._4e{width:409.717800px;}
._41{width:411.145800px;}
._4c{width:412.448400px;}
._47{width:415.346400px;}
._54{width:418.538400px;}
._1c{width:422.726400px;}
._31{width:425.482800px;}
._39{width:428.784000px;}
._55{width:444.114000px;}
._3e{width:482.827800px;}
._60{width:510.659400px;}
._43{width:521.394600px;}
._58{width:529.400400px;}
._4b{width:539.124000px;}
._51{width:543.423000px;}
._21{width:545.851200px;}
._22{width:559.005000px;}
._23{width:564.324000px;}
._29{width:567.564000px;}
._53{width:619.281000px;}
._46{width:630.846000px;}
._42{width:639.243000px;}
._30{width:640.797000px;}
._38{width:642.324000px;}
._45{width:644.862600px;}
._33{width:646.151400px;}
._3f{width:648.273000px;}
._3d{width:652.380600px;}
._57{width:654.384000px;}
._49{width:663.024000px;}
._40{width:668.556600px;}
._50{width:685.127400px;}
._48{width:704.877000px;}
._4d{width:718.170600px;}
._3a{width:723.393000px;}
._4a{width:729.069000px;}
._52{width:741.102000px;}
._44{width:742.194000px;}
._4f{width:746.352000px;}
._36{width:759.935400px;}
._37{width:764.448000px;}
._3c{width:765.819600px;}
._56{width:795.975000px;}
._5c{width:841.185000px;}
._28{width:842.495400px;}
._24{width:844.973400px;}
._26{width:849.425400px;}
._5a{width:879.693000px;}
._15{width:909.439800px;}
._59{width:917.503200px;}
._1a{width:919.999200px;}
._2c{width:921.151800px;}
._13{width:925.087800px;}
._62{width:928.831800px;}
._61{width:933.919800px;}
._12{width:939.295200px;}
._9{width:941.263200px;}
._d{width:942.847200px;}
._5e{width:944.618400px;}
._5d{width:954.086400px;}
._5f{width:1054.392000px;}
._5b{width:1141.254000px;}
.fc2{color:rgb(15,18,51);}
.fc1{color:rgb(238,32,54);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:24.486000px;}
.fs6{font-size:36.000000px;}
.fs7{font-size:38.478000px;}
.fs9{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:480.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:39.203700px;}
.y1{bottom:51.551850px;}
.y73{bottom:52.499700px;}
.y27{bottom:53.603700px;}
.y6{bottom:53.831700px;}
.y72{bottom:54.779550px;}
.y15e{bottom:160.511700px;}
.y80{bottom:160.511850px;}
.y71{bottom:162.637800px;}
.y4f{bottom:165.071250px;}
.y1e3{bottom:170.839800px;}
.y1e1{bottom:171.230400px;}
.y15d{bottom:173.111700px;}
.y7f{bottom:173.111850px;}
.y133{bottom:175.237800px;}
.y1a8{bottom:176.122650px;}
.y181{bottom:176.608200px;}
.y144{bottom:176.608350px;}
.y4e{bottom:177.671250px;}
.ye2{bottom:178.732350px;}
.y70{bottom:178.734300px;}
.y26{bottom:181.374750px;}
.y6f{bottom:187.837800px;}
.y1a7{bottom:188.722650px;}
.y15c{bottom:189.208200px;}
.y1e2{bottom:190.639950px;}
.y1e0{bottom:191.030400px;}
.ye1{bottom:191.332350px;}
.y143{bottom:200.091150px;}
.y83{bottom:200.437800px;}
.y25{bottom:201.174750px;}
.y6e{bottom:203.934300px;}
.yb0{bottom:209.542650px;}
.y7e{bottom:210.439950px;}
.y1a6{bottom:210.592650px;}
.y1df{bottom:210.830400px;}
.ye0{bottom:213.202200px;}
.y1c1{bottom:213.922800px;}
.y15b{bottom:215.212500px;}
.y180{bottom:215.781300px;}
.y4d{bottom:215.839800px;}
.y82{bottom:216.534300px;}
.y142{bottom:219.891150px;}
.yaf{bottom:222.142650px;}
.y1a5{bottom:223.192650px;}
.y10d{bottom:225.802200px;}
.y1c0{bottom:226.522800px;}
.y17f{bottom:228.381300px;}
.y7d{bottom:230.239950px;}
.y1de{bottom:230.630400px;}
.yae{bottom:234.742650px;}
.ydf{bottom:235.072050px;}
.y4c{bottom:235.639950px;}
.y15a{bottom:237.082350px;}
.y10c{bottom:238.402200px;}
.y141{bottom:239.691150px;}
.y132{bottom:240.170250px;}
.y24{bottom:240.774750px;}
.y1a4{bottom:245.062500px;}
.yde{bottom:247.672050px;}
.y1bf{bottom:248.392500px;}
.y7c{bottom:250.039800px;}
.y17e{bottom:250.251150px;}
.y1dd{bottom:250.430400px;}
.y10b{bottom:251.002200px;}
.y4b{bottom:255.439800px;}
.yad{bottom:256.612500px;}
.y159{bottom:258.952200px;}
.y140{bottom:259.491150px;}
.y131{bottom:259.970250px;}
.y1be{bottom:260.992500px;}
.y1a3{bottom:266.932350px;}
.ydd{bottom:269.541900px;}
.y7b{bottom:269.839800px;}
.y1dc{bottom:270.230400px;}
.y17d{bottom:272.121000px;}
.y10a{bottom:272.872050px;}
.y4a{bottom:275.239950px;}
.yac{bottom:278.482500px;}
.y1a2{bottom:279.532350px;}
.y23{bottom:280.374750px;}
.y158{bottom:280.822050px;}
.ydc{bottom:282.141900px;}
.y1bd{bottom:282.862500px;}
.y17c{bottom:284.721000px;}
.y109{bottom:285.472050px;}
.y7a{bottom:289.639950px;}
.yab{bottom:291.082350px;}
.y130{bottom:294.170250px;}
.ydb{bottom:294.741900px;}
.y6d{bottom:295.039800px;}
.y1bc{bottom:295.462500px;}
.y13f{bottom:299.841150px;}
.y22{bottom:300.174750px;}
.y1a1{bottom:301.402200px;}
.y157{bottom:302.691900px;}
.y17b{bottom:306.590850px;}
.y108{bottom:307.341900px;}
.y79{bottom:309.439800px;}
.y1db{bottom:309.830400px;}
.yaa{bottom:312.952350px;}
.y12f{bottom:313.970250px;}
.y1a0{bottom:314.002200px;}
.y49{bottom:314.839800px;}
.yda{bottom:316.611750px;}
.y1bb{bottom:317.332350px;}
.y107{bottom:319.941900px;}
.y13e{bottom:321.711000px;}
.y156{bottom:324.561900px;}
.ya9{bottom:325.552350px;}
.y19f{bottom:326.602200px;}
.y17a{bottom:328.460700px;}
.y78{bottom:329.239950px;}
.y1da{bottom:329.630400px;}
.y12e{bottom:333.770250px;}
.y48{bottom:334.639950px;}
.yd9{bottom:338.481600px;}
.y1ba{bottom:339.202200px;}
.y21{bottom:339.774750px;}
.y106{bottom:341.811750px;}
.y13d{bottom:343.580850px;}
.y155{bottom:346.431750px;}
.ya8{bottom:347.422200px;}
.y19e{bottom:348.472050px;}
.y81{bottom:349.039800px;}
.y1d9{bottom:349.430400px;}
.y179{bottom:350.330550px;}
.yd8{bottom:351.081600px;}
.y1b9{bottom:351.802200px;}
.y12d{bottom:353.570250px;}
.y105{bottom:354.411750px;}
.y47{bottom:354.439800px;}
.y13c{bottom:356.180850px;}
.y178{bottom:357.530550px;}
.ya7{bottom:360.022200px;}
.y19d{bottom:361.072050px;}
.y1b8{bottom:364.402200px;}
.y104{bottom:367.011750px;}
.y154{bottom:368.301600px;}
.y77{bottom:368.839800px;}
.y1d8{bottom:369.230400px;}
.yd7{bottom:372.951450px;}
.y12c{bottom:373.370250px;}
.y46{bottom:374.239950px;}
.y13b{bottom:378.050700px;}
.y20{bottom:379.374750px;}
.ya6{bottom:381.892050px;}
.y19c{bottom:382.941900px;}
.yd6{bottom:385.551450px;}
.y1b7{bottom:386.272050px;}
.y76{bottom:388.639950px;}
.y177{bottom:388.760400px;}
.y103{bottom:388.881600px;}
.y1d7{bottom:389.030400px;}
.y153{bottom:390.171450px;}
.y12b{bottom:393.170250px;}
.y45{bottom:394.039800px;}
.ya5{bottom:394.492050px;}
.y19b{bottom:395.541900px;}
.y1f{bottom:399.174750px;}
.y13a{bottom:399.920550px;}
.y176{bottom:401.360400px;}
.y102{bottom:401.481600px;}
.yd5{bottom:407.421450px;}
.y1b6{bottom:408.141900px;}
.y6c{bottom:408.439800px;}
.y1d6{bottom:408.830400px;}
.y152{bottom:412.041300px;}
.y12a{bottom:412.970250px;}
.y44{bottom:413.839800px;}
.ya4{bottom:416.361900px;}
.y19a{bottom:417.411750px;}
.y1e{bottom:418.974750px;}
.yd4{bottom:420.021450px;}
.y1b5{bottom:420.741900px;}
.y139{bottom:421.790550px;}
.y101{bottom:423.351450px;}
.y6b{bottom:428.239950px;}
.y1d5{bottom:428.630400px;}
.ya3{bottom:428.961900px;}
.y199{bottom:430.011750px;}
.yd3{bottom:432.621300px;}
.y129{bottom:432.770250px;}
.y43{bottom:433.639950px;}
.y175{bottom:433.760400px;}
.y151{bottom:433.911150px;}
.y100{bottom:435.951450px;}
.y1d{bottom:438.774750px;}
.y198{bottom:442.611750px;}
.y138{bottom:443.660400px;}
.yd2{bottom:445.221450px;}
.y6a{bottom:448.039800px;}
.y1d4{bottom:448.430400px;}
.ya2{bottom:450.831600px;}
.y42{bottom:453.439800px;}
.y174{bottom:453.560400px;}
.y1b4{bottom:455.211750px;}
.y150{bottom:455.781000px;}
.yff{bottom:457.821300px;}
.y1c{bottom:458.574750px;}
.ya1{bottom:463.431750px;}
.y197{bottom:464.481600px;}
.y137{bottom:465.530250px;}
.y128{bottom:466.970250px;}
.yd1{bottom:467.091150px;}
.y1b3{bottom:467.811750px;}
.y69{bottom:467.839800px;}
.y1d3{bottom:468.230400px;}
.yfe{bottom:470.421450px;}
.y173{bottom:473.360400px;}
.y196{bottom:477.081600px;}
.y14f{bottom:477.651000px;}
.y1b{bottom:478.374750px;}
.yd0{bottom:479.691150px;}
.ya0{bottom:485.301600px;}
.y68{bottom:487.639950px;}
.y1d2{bottom:488.030400px;}
.y136{bottom:488.810100px;}
.y195{bottom:489.681600px;}
.yfd{bottom:492.291150px;}
.y41{bottom:493.039800px;}
.y172{bottom:493.160400px;}
.y9f{bottom:497.901600px;}
.y1a{bottom:498.174750px;}
.y14e{bottom:499.520850px;}
.y127{bottom:501.170250px;}
.ycf{bottom:501.561000px;}
.y1b2{bottom:502.281600px;}
.yfc{bottom:504.891150px;}
.y67{bottom:507.439800px;}
.y9e{bottom:510.501600px;}
.y194{bottom:511.551450px;}
.y40{bottom:512.839800px;}
.yce{bottom:514.161000px;}
.yfb{bottom:517.491150px;}
.y19{bottom:517.974750px;}
.y14d{bottom:521.390700px;}
.y193{bottom:524.151450px;}
.y66{bottom:527.239950px;}
.y1d1{bottom:527.630400px;}
.y9d{bottom:532.371450px;}
.y3f{bottom:532.639950px;}
.y171{bottom:532.760400px;}
.y126{bottom:535.370250px;}
.ycd{bottom:536.031000px;}
.y1b1{bottom:536.751600px;}
.yfa{bottom:539.361150px;}
.y14c{bottom:543.260550px;}
.y9c{bottom:544.971450px;}
.y192{bottom:546.021300px;}
.y65{bottom:547.039800px;}
.y1d0{bottom:547.430400px;}
.ycc{bottom:548.631000px;}
.yf9{bottom:551.961150px;}
.y3e{bottom:552.439800px;}
.y170{bottom:552.560400px;}
.y125{bottom:555.170250px;}
.y9b{bottom:557.571450px;}
.y18{bottom:557.574750px;}
.y1b0{bottom:558.621300px;}
.ycb{bottom:561.231000px;}
.yf8{bottom:564.561150px;}
.y14b{bottom:565.130550px;}
.y64{bottom:566.839800px;}
.y1cf{bottom:567.230400px;}
.y191{bottom:567.891150px;}
.y3d{bottom:572.239950px;}
.y16f{bottom:572.360400px;}
.y124{bottom:574.970250px;}
.y9a{bottom:579.441450px;}
.y190{bottom:580.491150px;}
.yca{bottom:583.100850px;}
.yf7{bottom:586.430850px;}
.y63{bottom:586.639950px;}
.y14a{bottom:587.000400px;}
.y1ce{bottom:587.030400px;}
.y3c{bottom:592.039800px;}
.y16e{bottom:592.160400px;}
.y1af{bottom:593.091300px;}
.y123{bottom:594.770250px;}
.yc9{bottom:595.700850px;}
.y17{bottom:597.174750px;}
.yf6{bottom:599.030850px;}
.y99{bottom:601.311150px;}
.y18f{bottom:602.361000px;}
.y62{bottom:606.439800px;}
.y1cd{bottom:606.830400px;}
.yc8{bottom:608.300850px;}
.y149{bottom:608.870250px;}
.y135{bottom:611.839800px;}
.y16d{bottom:611.960400px;}
.y98{bottom:613.911150px;}
.y122{bottom:614.570250px;}
.y18e{bottom:614.961150px;}
.y16{bottom:616.974750px;}
.yf5{bottom:620.900850px;}
.y61{bottom:626.239800px;}
.y97{bottom:626.511150px;}
.y1cc{bottom:626.630400px;}
.y1ae{bottom:627.561150px;}
.yc7{bottom:630.170700px;}
.y148{bottom:630.740100px;}
.y3b{bottom:631.639950px;}
.y16c{bottom:631.760400px;}
.yf4{bottom:633.500850px;}
.y121{bottom:634.370250px;}
.y15{bottom:636.774750px;}
.y18d{bottom:636.831000px;}
.y96{bottom:639.111300px;}
.yc6{bottom:642.770700px;}
.y60{bottom:646.039800px;}
.yf3{bottom:646.100850px;}
.y1cb{bottom:646.430400px;}
.y18c{bottom:649.431000px;}
.y3a{bottom:651.439800px;}
.y16b{bottom:651.560400px;}
.y146{bottom:652.609950px;}
.y120{bottom:654.170250px;}
.yc5{bottom:655.370700px;}
.y14{bottom:656.574750px;}
.yf2{bottom:658.700850px;}
.y145{bottom:659.810100px;}
.y95{bottom:660.981150px;}
.y1ad{bottom:662.031000px;}
.y5f{bottom:665.839800px;}
.y1ca{bottom:666.230400px;}
.y147{bottom:667.009950px;}
.y39{bottom:671.239800px;}
.y18b{bottom:671.300850px;}
.y16a{bottom:671.360400px;}
.y94{bottom:673.581150px;}
.y11f{bottom:673.970250px;}
.y13{bottom:676.374750px;}
.yc4{bottom:677.240550px;}
.yf1{bottom:680.570700px;}
.y18a{bottom:683.900850px;}
.y5e{bottom:685.639950px;}
.y38{bottom:691.039800px;}
.y93{bottom:695.451000px;}
.y12{bottom:696.174750px;}
.yc3{bottom:699.110400px;}
.yf0{bottom:702.440550px;}
.y5d{bottom:705.439800px;}
.y189{bottom:705.770700px;}
.y1c9{bottom:705.830400px;}
.y92{bottom:708.051000px;}
.y11e{bottom:708.170250px;}
.y37{bottom:710.839800px;}
.y169{bottom:710.960400px;}
.yc2{bottom:711.710400px;}
.yef{bottom:715.040550px;}
.y11{bottom:715.974750px;}
.y1ac{bottom:718.370700px;}
.y5c{bottom:725.239800px;}
.yee{bottom:727.640550px;}
.y11d{bottom:727.970250px;}
.y91{bottom:729.920850px;}
.y36{bottom:730.639950px;}
.y168{bottom:730.760400px;}
.yc1{bottom:733.580250px;}
.y10{bottom:735.774750px;}
.y188{bottom:740.240550px;}
.y90{bottom:742.520850px;}
.y5b{bottom:745.039800px;}
.yc0{bottom:746.180250px;}
.y1c8{bottom:746.180400px;}
.y11c{bottom:747.770250px;}
.yed{bottom:749.510400px;}
.y35{bottom:750.439800px;}
.y167{bottom:750.560400px;}
.y1ab{bottom:752.840550px;}
.y8f{bottom:755.120850px;}
.yf{bottom:755.574750px;}
.ybf{bottom:758.780250px;}
.y1c7{bottom:758.780400px;}
.yec{bottom:762.110400px;}
.y5a{bottom:764.839800px;}
.y11b{bottom:767.570250px;}
.y134{bottom:770.239800px;}
.y166{bottom:770.360400px;}
.ybe{bottom:771.380250px;}
.yeb{bottom:774.710400px;}
.ye{bottom:775.374750px;}
.y8e{bottom:776.990700px;}
.y1c6{bottom:780.650250px;}
.y59{bottom:784.639950px;}
.y8d{bottom:789.590700px;}
.y34{bottom:790.039800px;}
.ybd{bottom:793.250100px;}
.y1c5{bottom:793.250250px;}
.yd{bottom:795.174750px;}
.yea{bottom:796.580250px;}
.y11a{bottom:802.520250px;}
.y58{bottom:804.439800px;}
.ybc{bottom:805.850250px;}
.ye9{bottom:809.180250px;}
.y1aa{bottom:809.180400px;}
.y33{bottom:809.839800px;}
.y165{bottom:809.960400px;}
.y8c{bottom:811.460550px;}
.y119{bottom:815.120250px;}
.y187{bottom:818.450250px;}
.ye8{bottom:821.780250px;}
.y8b{bottom:824.060550px;}
.y57{bottom:824.239800px;}
.ybb{bottom:827.720100px;}
.y32{bottom:829.639950px;}
.y186{bottom:831.050100px;}
.y1c4{bottom:831.050250px;}
.yc{bottom:834.774750px;}
.y118{bottom:836.989950px;}
.yba{bottom:840.320100px;}
.ye7{bottom:843.650250px;}
.y56{bottom:844.039800px;}
.y8a{bottom:845.930400px;}
.y31{bottom:849.439800px;}
.y117{bottom:849.590100px;}
.y164{bottom:850.310400px;}
.y1a9{bottom:852.920100px;}
.y89{bottom:858.530400px;}
.yb9{bottom:862.189950px;}
.y55{bottom:863.839800px;}
.ye6{bottom:865.520100px;}
.y30{bottom:869.239800px;}
.y116{bottom:871.459950px;}
.y163{bottom:872.180400px;}
.yb{bottom:874.374750px;}
.yb8{bottom:874.789950px;}
.ye5{bottom:878.120100px;}
.y88{bottom:880.400250px;}
.y54{bottom:883.639800px;}
.y115{bottom:884.059950px;}
.y1c3{bottom:887.389950px;}
.y2f{bottom:889.039800px;}
.y87{bottom:893.000400px;}
.y162{bottom:894.050100px;}
.ya{bottom:894.174750px;}
.yb7{bottom:896.659800px;}
.y114{bottom:896.659950px;}
.y185{bottom:899.989800px;}
.ye4{bottom:899.989950px;}
.y53{bottom:903.439800px;}
.y2e{bottom:908.839800px;}
.yb6{bottom:909.259800px;}
.y184{bottom:912.589800px;}
.y86{bottom:914.870250px;}
.y161{bottom:915.919950px;}
.y113{bottom:918.529800px;}
.yb5{bottom:921.859800px;}
.y52{bottom:923.239800px;}
.y2d{bottom:928.639800px;}
.y112{bottom:931.129800px;}
.y183{bottom:934.459650px;}
.ye3{bottom:934.459800px;}
.y1c2{bottom:934.459950px;}
.y85{bottom:936.739950px;}
.y160{bottom:937.789950px;}
.y51{bottom:943.039800px;}
.yb4{bottom:943.729650px;}
.y111{bottom:943.729800px;}
.y182{bottom:947.059800px;}
.y2c{bottom:948.439800px;}
.yb3{bottom:956.329650px;}
.y110{bottom:956.329800px;}
.y8{bottom:957.304650px;}
.y84{bottom:958.609800px;}
.y15f{bottom:959.659800px;}
.y50{bottom:962.839800px;}
.yb2{bottom:968.929650px;}
.y10f{bottom:968.929800px;}
.y7{bottom:978.904650px;}
.yb1{bottom:981.529650px;}
.y10e{bottom:981.529800px;}
.y2b{bottom:982.639800px;}
.y3{bottom:1012.720350px;}
.y2{bottom:1030.720350px;}
.y75{bottom:1035.841350px;}
.y29{bottom:1056.327750px;}
.y74{bottom:1057.441350px;}
.y9{bottom:1062.090600px;}
.y5{bottom:1087.266750px;}
.y4{bottom:1138.423200px;}
.y2a{bottom:1197.991200px;}
.he{height:20.370000px;}
.hd{height:27.324000px;}
.hf{height:34.356000px;}
.h10{height:38.514000px;}
.h11{height:43.920000px;}
.h2{height:44.016000px;}
.h7{height:45.216000px;}
.ha{height:48.096000px;}
.h4{height:60.120000px;}
.h8{height:60.522000px;}
.h12{height:60.522600px;}
.h9{height:62.172000px;}
.hc{height:67.824000px;}
.h3{height:72.144000px;}
.h13{height:72.719400px;}
.h14{height:72.720000px;}
.h6{height:84.168000px;}
.hb{height:100.034400px;}
.h5{height:452.160000px;}
.h0{height:1275.591000px;}
.h1{height:1275.750000px;}
.w0{width:905.670000px;}
.w1{width:906.000000px;}
.x0{left:0.000000px;}
.xc{left:106.299150px;}
.xb{left:107.362200px;}
.x13{left:113.049150px;}
.xd{left:133.299150px;}
.x4{left:146.692950px;}
.x1{left:148.818900px;}
.x1d{left:154.163400px;}
.x12{left:155.568900px;}
.x19{left:168.377850px;}
.x29{left:175.818900px;}
.x15{left:182.418600px;}
.xf{left:189.318900px;}
.x8{left:200.274300px;}
.x16{left:204.182550px;}
.x3{left:218.028600px;}
.x17{left:237.180600px;}
.x11{left:263.220450px;}
.x1f{left:305.067600px;}
.x10{left:352.065300px;}
.x9{left:355.190700px;}
.x5{left:369.837750px;}
.x18{left:372.419400px;}
.x1e{left:408.386250px;}
.x14{left:437.574750px;}
.x1a{left:455.978400px;}
.xa{left:479.634900px;}
.xe{left:521.184150px;}
.x1b{left:583.464300px;}
.x20{left:585.523800px;}
.x2{left:610.086600px;}
.x22{left:623.550150px;}
.x28{left:625.833900px;}
.x7{left:629.883600px;}
.x23{left:632.790000px;}
.x6{left:637.523700px;}
.x1c{left:642.047250px;}
.x21{left:665.592000px;}
.x27{left:666.867900px;}
.x24{left:668.826000px;}
.x26{left:671.886750px;}
.x25{left:675.309600px;}
@media print{
.v3{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.432000pt;}
.v2{vertical-align:19.536000pt;}
.v5{vertical-align:25.599467pt;}
.v1{vertical-align:49.794133pt;}
.ls7{letter-spacing:-2.650667pt;}
.ls9{letter-spacing:-1.525333pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-0.981333pt;}
.ls5{letter-spacing:-0.672000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000080pt;}
.ls2{letter-spacing:0.000107pt;}
.ls1{letter-spacing:0.000192pt;}
.ws0{word-spacing:-19.066667pt;}
.ws104{word-spacing:-14.960000pt;}
.ws105{word-spacing:-14.608000pt;}
.ws117{word-spacing:-13.082667pt;}
.wscb{word-spacing:-9.813333pt;}
.ws59{word-spacing:-9.520000pt;}
.ws5a{word-spacing:-8.848000pt;}
.ws11{word-spacing:-8.721680pt;}
.ws24{word-spacing:-8.474667pt;}
.wse8{word-spacing:-8.400000pt;}
.wse7{word-spacing:-6.869333pt;}
.wsbf{word-spacing:-5.419568pt;}
.wsad{word-spacing:-4.940731pt;}
.ws115{word-spacing:-3.344000pt;}
.ws116{word-spacing:-3.285333pt;}
.ws49{word-spacing:-2.933333pt;}
.ws47{word-spacing:-2.816000pt;}
.ws16{word-spacing:-2.757333pt;}
.ws118{word-spacing:-2.640000pt;}
.ws111{word-spacing:-2.581333pt;}
.ws31{word-spacing:-2.522667pt;}
.ws7f{word-spacing:-2.501333pt;}
.ws2b{word-spacing:-2.405333pt;}
.wsd8{word-spacing:-2.170667pt;}
.ws26{word-spacing:-2.112000pt;}
.wsdb{word-spacing:-2.053333pt;}
.ws5f{word-spacing:-1.978667pt;}
.ws92{word-spacing:-1.941333pt;}
.ws4c{word-spacing:-1.936000pt;}
.wsb8{word-spacing:-1.877333pt;}
.ws8e{word-spacing:-1.866667pt;}
.ws53{word-spacing:-1.818667pt;}
.ws71{word-spacing:-1.792000pt;}
.ws35{word-spacing:-1.760000pt;}
.ws81{word-spacing:-1.754667pt;}
.wsa0{word-spacing:-1.717333pt;}
.ws38{word-spacing:-1.701333pt;}
.ws60{word-spacing:-1.680000pt;}
.ws55{word-spacing:-1.642667pt;}
.ws58{word-spacing:-1.584000pt;}
.wseb{word-spacing:-1.530667pt;}
.ws113{word-spacing:-1.525333pt;}
.wsc7{word-spacing:-1.466667pt;}
.wsac{word-spacing:-1.418667pt;}
.ws10a{word-spacing:-1.408000pt;}
.wse6{word-spacing:-1.381333pt;}
.ws46{word-spacing:-1.349333pt;}
.wsa7{word-spacing:-1.344000pt;}
.wsee{word-spacing:-1.306667pt;}
.ws82{word-spacing:-1.232000pt;}
.ws78{word-spacing:-1.194667pt;}
.wsca{word-spacing:-1.157333pt;}
.ws21{word-spacing:-1.056000pt;}
.ws79{word-spacing:-1.045333pt;}
.ws43{word-spacing:-1.008000pt;}
.ws57{word-spacing:-0.997333pt;}
.wsab{word-spacing:-0.970667pt;}
.ws54{word-spacing:-0.938667pt;}
.ws108{word-spacing:-0.880000pt;}
.ws5b{word-spacing:-0.821333pt;}
.wsb0{word-spacing:-0.784000pt;}
.ws2d{word-spacing:-0.762667pt;}
.wsaf{word-spacing:-0.746667pt;}
.wsf5{word-spacing:-0.672000pt;}
.ws34{word-spacing:-0.645333pt;}
.wsf8{word-spacing:-0.634667pt;}
.ws5c{word-spacing:-0.597333pt;}
.ws40{word-spacing:-0.586667pt;}
.ws3d{word-spacing:-0.528000pt;}
.wsf9{word-spacing:-0.448000pt;}
.ws45{word-spacing:-0.410667pt;}
.ws9d{word-spacing:-0.373333pt;}
.wsb1{word-spacing:-0.336000pt;}
.wsae{word-spacing:-0.298667pt;}
.ws8{word-spacing:-0.293333pt;}
.ws70{word-spacing:-0.186667pt;}
.ws1b{word-spacing:-0.117333pt;}
.ws9c{word-spacing:-0.112000pt;}
.wsc9{word-spacing:-0.074667pt;}
.ws102{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.037333pt;}
.ws5{word-spacing:0.058667pt;}
.ws6e{word-spacing:0.074667pt;}
.ws6d{word-spacing:0.112000pt;}
.wsaa{word-spacing:0.149333pt;}
.ws56{word-spacing:0.176000pt;}
.wsea{word-spacing:0.186667pt;}
.ws61{word-spacing:0.224000pt;}
.ws6{word-spacing:0.234667pt;}
.wsf2{word-spacing:0.261333pt;}
.ws3{word-spacing:0.293333pt;}
.ws7b{word-spacing:0.298667pt;}
.wsec{word-spacing:0.336000pt;}
.wsc8{word-spacing:0.352000pt;}
.ws8d{word-spacing:0.373333pt;}
.ws17{word-spacing:0.410667pt;}
.ws50{word-spacing:0.448000pt;}
.ws42{word-spacing:0.469333pt;}
.ws62{word-spacing:0.522667pt;}
.ws4d{word-spacing:0.528000pt;}
.ws85{word-spacing:0.560000pt;}
.ws18{word-spacing:0.586667pt;}
.ws77{word-spacing:0.672000pt;}
.ws4e{word-spacing:0.704000pt;}
.ws74{word-spacing:0.709333pt;}
.wsdc{word-spacing:0.746667pt;}
.wsc5{word-spacing:0.762667pt;}
.ws29{word-spacing:0.821333pt;}
.wsfd{word-spacing:0.880000pt;}
.ws72{word-spacing:0.896000pt;}
.ws8b{word-spacing:0.933333pt;}
.ws2a{word-spacing:0.938667pt;}
.wsa6{word-spacing:0.970667pt;}
.ws25{word-spacing:0.981333pt;}
.wsf{word-spacing:0.997333pt;}
.ws90{word-spacing:1.045333pt;}
.ws7{word-spacing:1.056000pt;}
.wsbc{word-spacing:1.082667pt;}
.ws39{word-spacing:1.114667pt;}
.wsa4{word-spacing:1.120000pt;}
.wsf3{word-spacing:1.157333pt;}
.ws36{word-spacing:1.173333pt;}
.wsa1{word-spacing:1.194667pt;}
.ws76{word-spacing:1.232000pt;}
.ws94{word-spacing:1.269333pt;}
.ws4{word-spacing:1.290667pt;}
.ws3c{word-spacing:1.349333pt;}
.ws99{word-spacing:1.381333pt;}
.ws96{word-spacing:1.418667pt;}
.wsb6{word-spacing:1.466667pt;}
.wsbd{word-spacing:1.530667pt;}
.ws32{word-spacing:1.584000pt;}
.wsa2{word-spacing:1.605333pt;}
.ws103{word-spacing:1.642667pt;}
.ws86{word-spacing:1.680000pt;}
.wse4{word-spacing:1.701333pt;}
.wsbb{word-spacing:1.760000pt;}
.wsb9{word-spacing:1.818667pt;}
.ws6a{word-spacing:1.829333pt;}
.ws2c{word-spacing:1.877333pt;}
.wsf6{word-spacing:1.904000pt;}
.ws28{word-spacing:1.936000pt;}
.ws95{word-spacing:1.941333pt;}
.ws9b{word-spacing:1.978667pt;}
.ws48{word-spacing:1.994667pt;}
.wsf7{word-spacing:2.016000pt;}
.wsa3{word-spacing:2.053333pt;}
.ws37{word-spacing:2.112000pt;}
.ws69{word-spacing:2.128000pt;}
.ws52{word-spacing:2.170667pt;}
.ws84{word-spacing:2.202667pt;}
.ws10f{word-spacing:2.229333pt;}
.ws6f{word-spacing:2.277333pt;}
.ws10e{word-spacing:2.288000pt;}
.ws9a{word-spacing:2.352000pt;}
.wsa9{word-spacing:2.389333pt;}
.ws97{word-spacing:2.501333pt;}
.ws7d{word-spacing:2.538667pt;}
.wse3{word-spacing:2.581333pt;}
.ws19{word-spacing:2.640000pt;}
.wse{word-spacing:2.698667pt;}
.ws6c{word-spacing:2.725333pt;}
.wsb2{word-spacing:2.800000pt;}
.ws11e{word-spacing:2.816000pt;}
.ws33{word-spacing:2.837333pt;}
.ws7a{word-spacing:2.874667pt;}
.ws8a{word-spacing:2.912000pt;}
.ws2{word-spacing:2.933333pt;}
.wsed{word-spacing:2.949333pt;}
.wsa5{word-spacing:2.986667pt;}
.ws27{word-spacing:2.992000pt;}
.wsb3{word-spacing:3.024000pt;}
.ws1e{word-spacing:3.050667pt;}
.ws6b{word-spacing:3.098667pt;}
.ws1c{word-spacing:3.109333pt;}
.ws91{word-spacing:3.210667pt;}
.ws1d{word-spacing:3.226667pt;}
.ws11c{word-spacing:3.285333pt;}
.ws7e{word-spacing:3.322667pt;}
.wsda{word-spacing:3.402667pt;}
.wsfa{word-spacing:3.434667pt;}
.wsf4{word-spacing:3.472000pt;}
.wsf0{word-spacing:3.546667pt;}
.ws112{word-spacing:3.578667pt;}
.wsa8{word-spacing:3.584000pt;}
.wsfb{word-spacing:3.621333pt;}
.ws3a{word-spacing:3.637333pt;}
.wse1{word-spacing:3.696000pt;}
.ws4f{word-spacing:3.754667pt;}
.wsfc{word-spacing:3.808000pt;}
.ws30{word-spacing:3.813333pt;}
.ws75{word-spacing:3.845333pt;}
.ws73{word-spacing:3.882667pt;}
.ws11b{word-spacing:3.930667pt;}
.ws87{word-spacing:3.957333pt;}
.wsb7{word-spacing:3.989333pt;}
.wsd7{word-spacing:4.048000pt;}
.wsf1{word-spacing:4.069333pt;}
.ws89{word-spacing:4.106667pt;}
.ws1f{word-spacing:4.224000pt;}
.ws93{word-spacing:4.330667pt;}
.wsc4{word-spacing:4.341333pt;}
.wsd{word-spacing:4.400000pt;}
.wse9{word-spacing:4.405333pt;}
.ws98{word-spacing:4.442667pt;}
.wsb{word-spacing:4.458667pt;}
.ws106{word-spacing:4.517333pt;}
.wsc6{word-spacing:4.576000pt;}
.ws8c{word-spacing:4.592000pt;}
.wsb4{word-spacing:4.693333pt;}
.ws7c{word-spacing:4.741333pt;}
.ws4a{word-spacing:4.810667pt;}
.ws13{word-spacing:4.869333pt;}
.wse5{word-spacing:4.928000pt;}
.ws114{word-spacing:4.986667pt;}
.ws44{word-spacing:5.045333pt;}
.ws9f{word-spacing:5.077333pt;}
.wse2{word-spacing:5.104000pt;}
.ws5d{word-spacing:5.114667pt;}
.ws67{word-spacing:5.152000pt;}
.ws4b{word-spacing:5.162667pt;}
.wsc{word-spacing:5.221333pt;}
.ws83{word-spacing:5.264000pt;}
.ws23{word-spacing:5.280000pt;}
.ws51{word-spacing:5.338667pt;}
.ws5e{word-spacing:5.376000pt;}
.wsc1{word-spacing:5.397333pt;}
.ws68{word-spacing:5.450667pt;}
.ws64{word-spacing:5.525333pt;}
.ws10b{word-spacing:5.690667pt;}
.wsef{word-spacing:5.712000pt;}
.wsff{word-spacing:5.749333pt;}
.ws2f{word-spacing:5.808000pt;}
.ws66{word-spacing:5.824000pt;}
.ws100{word-spacing:5.866667pt;}
.ws8f{word-spacing:5.898667pt;}
.wsfe{word-spacing:5.925333pt;}
.wsa{word-spacing:5.984000pt;}
.wsd9{word-spacing:6.042667pt;}
.ws20{word-spacing:6.160000pt;}
.ws3b{word-spacing:6.218667pt;}
.ws11d{word-spacing:6.336000pt;}
.ws88{word-spacing:6.346667pt;}
.ws12{word-spacing:6.394667pt;}
.ws2e{word-spacing:6.453333pt;}
.ws14{word-spacing:6.512000pt;}
.wsba{word-spacing:6.570667pt;}
.ws109{word-spacing:6.629333pt;}
.ws101{word-spacing:6.688000pt;}
.ws63{word-spacing:6.794667pt;}
.wsc2{word-spacing:6.864000pt;}
.ws119{word-spacing:6.922667pt;}
.ws11a{word-spacing:7.040000pt;}
.ws65{word-spacing:7.093333pt;}
.ws10c{word-spacing:7.098667pt;}
.ws15{word-spacing:7.216000pt;}
.wsc3{word-spacing:7.274667pt;}
.ws9e{word-spacing:7.280000pt;}
.ws41{word-spacing:7.333333pt;}
.ws1a{word-spacing:7.450667pt;}
.ws22{word-spacing:7.568000pt;}
.ws80{word-spacing:7.653333pt;}
.ws3f{word-spacing:7.685333pt;}
.ws9{word-spacing:7.744000pt;}
.wsb5{word-spacing:8.213333pt;}
.ws107{word-spacing:8.448000pt;}
.ws3e{word-spacing:8.741333pt;}
.ws110{word-spacing:10.501333pt;}
.ws10{word-spacing:16.661333pt;}
.ws10d{word-spacing:18.890667pt;}
.wscc{word-spacing:66.462933pt;}
.wscd{word-spacing:346.385600pt;}
.wscf{word-spacing:354.263467pt;}
.wsd4{word-spacing:355.028800pt;}
.wsdd{word-spacing:356.465600pt;}
.wsd1{word-spacing:356.783467pt;}
.wsd2{word-spacing:356.914133pt;}
.wsd6{word-spacing:358.183467pt;}
.wsde{word-spacing:358.238933pt;}
.wsce{word-spacing:360.124800pt;}
.wse0{word-spacing:364.343467pt;}
.wsd5{word-spacing:365.836800pt;}
.wsdf{word-spacing:366.266133pt;}
.wsd3{word-spacing:366.956800pt;}
.wsd0{word-spacing:368.785600pt;}
.wsc0{word-spacing:739.364800pt;}
._11{margin-left:-18.745600pt;}
._5{margin-left:-15.752000pt;}
._63{margin-left:-14.314667pt;}
._14{margin-left:-7.257067pt;}
._1{margin-left:-5.988267pt;}
._b{margin-left:-4.886933pt;}
._8{margin-left:-3.819200pt;}
._3{margin-left:-2.346667pt;}
._4{margin-left:-1.114667pt;}
._2{width:1.190400pt;}
._0{width:2.547200pt;}
._7{width:3.795733pt;}
._6{width:4.963200pt;}
._1b{width:5.904000pt;}
._a{width:6.916800pt;}
._c{width:7.878933pt;}
._10{width:8.829333pt;}
._f{width:10.002667pt;}
._20{width:42.024000pt;}
._1e{width:52.802133pt;}
._e{width:60.448000pt;}
._18{width:62.823467pt;}
._25{width:70.592000pt;}
._16{width:72.711467pt;}
._17{width:197.128000pt;}
._27{width:198.917333pt;}
._2d{width:247.032000pt;}
._1f{width:271.026133pt;}
._2e{width:283.856533pt;}
._2b{width:285.669333pt;}
._2a{width:300.917333pt;}
._34{width:306.549867pt;}
._1d{width:308.615467pt;}
._3b{width:324.320000pt;}
._2f{width:349.857600pt;}
._32{width:355.570133pt;}
._19{width:359.063467pt;}
._35{width:362.401600pt;}
._4e{width:364.193600pt;}
._41{width:365.462933pt;}
._4c{width:366.620800pt;}
._47{width:369.196800pt;}
._54{width:372.034133pt;}
._1c{width:375.756800pt;}
._31{width:378.206933pt;}
._39{width:381.141333pt;}
._55{width:394.768000pt;}
._3e{width:429.180267pt;}
._60{width:453.919467pt;}
._43{width:463.461867pt;}
._58{width:470.578133pt;}
._4b{width:479.221333pt;}
._51{width:483.042667pt;}
._21{width:485.201067pt;}
._22{width:496.893333pt;}
._23{width:501.621333pt;}
._29{width:504.501333pt;}
._53{width:550.472000pt;}
._46{width:560.752000pt;}
._42{width:568.216000pt;}
._30{width:569.597333pt;}
._38{width:570.954667pt;}
._45{width:573.211200pt;}
._33{width:574.356800pt;}
._3f{width:576.242667pt;}
._3d{width:579.893867pt;}
._57{width:581.674667pt;}
._49{width:589.354667pt;}
._40{width:594.272533pt;}
._50{width:609.002133pt;}
._48{width:626.557333pt;}
._4d{width:638.373867pt;}
._3a{width:643.016000pt;}
._4a{width:648.061333pt;}
._52{width:658.757333pt;}
._44{width:659.728000pt;}
._4f{width:663.424000pt;}
._36{width:675.498133pt;}
._37{width:679.509333pt;}
._3c{width:680.728533pt;}
._56{width:707.533333pt;}
._5c{width:747.720000pt;}
._28{width:748.884800pt;}
._24{width:751.087467pt;}
._26{width:755.044800pt;}
._5a{width:781.949333pt;}
._15{width:808.390933pt;}
._59{width:815.558400pt;}
._1a{width:817.777067pt;}
._2c{width:818.801600pt;}
._13{width:822.300267pt;}
._62{width:825.628267pt;}
._61{width:830.150933pt;}
._12{width:834.929067pt;}
._9{width:836.678400pt;}
._d{width:838.086400pt;}
._5e{width:839.660800pt;}
._5d{width:848.076800pt;}
._5f{width:937.237333pt;}
._5b{width:1014.448000pt;}
.fs8{font-size:21.765333pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:34.202667pt;}
.fs9{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:426.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:34.847733pt;}
.y1{bottom:45.823867pt;}
.y73{bottom:46.666400pt;}
.y27{bottom:47.647733pt;}
.y6{bottom:47.850400pt;}
.y72{bottom:48.692933pt;}
.y15e{bottom:142.677067pt;}
.y80{bottom:142.677200pt;}
.y71{bottom:144.566933pt;}
.y4f{bottom:146.730000pt;}
.y1e3{bottom:151.857600pt;}
.y1e1{bottom:152.204800pt;}
.y15d{bottom:153.877067pt;}
.y7f{bottom:153.877200pt;}
.y133{bottom:155.766933pt;}
.y1a8{bottom:156.553467pt;}
.y181{bottom:156.985067pt;}
.y144{bottom:156.985200pt;}
.y4e{bottom:157.930000pt;}
.ye2{bottom:158.873200pt;}
.y70{bottom:158.874933pt;}
.y26{bottom:161.222000pt;}
.y6f{bottom:166.966933pt;}
.y1a7{bottom:167.753467pt;}
.y15c{bottom:168.185067pt;}
.y1e2{bottom:169.457733pt;}
.y1e0{bottom:169.804800pt;}
.ye1{bottom:170.073200pt;}
.y143{bottom:177.858800pt;}
.y83{bottom:178.166933pt;}
.y25{bottom:178.822000pt;}
.y6e{bottom:181.274933pt;}
.yb0{bottom:186.260133pt;}
.y7e{bottom:187.057733pt;}
.y1a6{bottom:187.193467pt;}
.y1df{bottom:187.404800pt;}
.ye0{bottom:189.513067pt;}
.y1c1{bottom:190.153600pt;}
.y15b{bottom:191.300000pt;}
.y180{bottom:191.805600pt;}
.y4d{bottom:191.857600pt;}
.y82{bottom:192.474933pt;}
.y142{bottom:195.458800pt;}
.yaf{bottom:197.460133pt;}
.y1a5{bottom:198.393467pt;}
.y10d{bottom:200.713067pt;}
.y1c0{bottom:201.353600pt;}
.y17f{bottom:203.005600pt;}
.y7d{bottom:204.657733pt;}
.y1de{bottom:205.004800pt;}
.yae{bottom:208.660133pt;}
.ydf{bottom:208.952933pt;}
.y4c{bottom:209.457733pt;}
.y15a{bottom:210.739867pt;}
.y10c{bottom:211.913067pt;}
.y141{bottom:213.058800pt;}
.y132{bottom:213.484667pt;}
.y24{bottom:214.022000pt;}
.y1a4{bottom:217.833333pt;}
.yde{bottom:220.152933pt;}
.y1bf{bottom:220.793333pt;}
.y7c{bottom:222.257600pt;}
.y17e{bottom:222.445467pt;}
.y1dd{bottom:222.604800pt;}
.y10b{bottom:223.113067pt;}
.y4b{bottom:227.057600pt;}
.yad{bottom:228.100000pt;}
.y159{bottom:230.179733pt;}
.y140{bottom:230.658800pt;}
.y131{bottom:231.084667pt;}
.y1be{bottom:231.993333pt;}
.y1a3{bottom:237.273200pt;}
.ydd{bottom:239.592800pt;}
.y7b{bottom:239.857600pt;}
.y1dc{bottom:240.204800pt;}
.y17d{bottom:241.885333pt;}
.y10a{bottom:242.552933pt;}
.y4a{bottom:244.657733pt;}
.yac{bottom:247.540000pt;}
.y1a2{bottom:248.473200pt;}
.y23{bottom:249.222000pt;}
.y158{bottom:249.619600pt;}
.ydc{bottom:250.792800pt;}
.y1bd{bottom:251.433333pt;}
.y17c{bottom:253.085333pt;}
.y109{bottom:253.752933pt;}
.y7a{bottom:257.457733pt;}
.yab{bottom:258.739867pt;}
.y130{bottom:261.484667pt;}
.ydb{bottom:261.992800pt;}
.y6d{bottom:262.257600pt;}
.y1bc{bottom:262.633333pt;}
.y13f{bottom:266.525467pt;}
.y22{bottom:266.822000pt;}
.y1a1{bottom:267.913067pt;}
.y157{bottom:269.059467pt;}
.y17b{bottom:272.525200pt;}
.y108{bottom:273.192800pt;}
.y79{bottom:275.057600pt;}
.y1db{bottom:275.404800pt;}
.yaa{bottom:278.179867pt;}
.y12f{bottom:279.084667pt;}
.y1a0{bottom:279.113067pt;}
.y49{bottom:279.857600pt;}
.yda{bottom:281.432667pt;}
.y1bb{bottom:282.073200pt;}
.y107{bottom:284.392800pt;}
.y13e{bottom:285.965333pt;}
.y156{bottom:288.499467pt;}
.ya9{bottom:289.379867pt;}
.y19f{bottom:290.313067pt;}
.y17a{bottom:291.965067pt;}
.y78{bottom:292.657733pt;}
.y1da{bottom:293.004800pt;}
.y12e{bottom:296.684667pt;}
.y48{bottom:297.457733pt;}
.yd9{bottom:300.872533pt;}
.y1ba{bottom:301.513067pt;}
.y21{bottom:302.022000pt;}
.y106{bottom:303.832667pt;}
.y13d{bottom:305.405200pt;}
.y155{bottom:307.939333pt;}
.ya8{bottom:308.819733pt;}
.y19e{bottom:309.752933pt;}
.y81{bottom:310.257600pt;}
.y1d9{bottom:310.604800pt;}
.y179{bottom:311.404933pt;}
.yd8{bottom:312.072533pt;}
.y1b9{bottom:312.713067pt;}
.y12d{bottom:314.284667pt;}
.y105{bottom:315.032667pt;}
.y47{bottom:315.057600pt;}
.y13c{bottom:316.605200pt;}
.y178{bottom:317.804933pt;}
.ya7{bottom:320.019733pt;}
.y19d{bottom:320.952933pt;}
.y1b8{bottom:323.913067pt;}
.y104{bottom:326.232667pt;}
.y154{bottom:327.379200pt;}
.y77{bottom:327.857600pt;}
.y1d8{bottom:328.204800pt;}
.yd7{bottom:331.512400pt;}
.y12c{bottom:331.884667pt;}
.y46{bottom:332.657733pt;}
.y13b{bottom:336.045067pt;}
.y20{bottom:337.222000pt;}
.ya6{bottom:339.459600pt;}
.y19c{bottom:340.392800pt;}
.yd6{bottom:342.712400pt;}
.y1b7{bottom:343.352933pt;}
.y76{bottom:345.457733pt;}
.y177{bottom:345.564800pt;}
.y103{bottom:345.672533pt;}
.y1d7{bottom:345.804800pt;}
.y153{bottom:346.819067pt;}
.y12b{bottom:349.484667pt;}
.y45{bottom:350.257600pt;}
.ya5{bottom:350.659600pt;}
.y19b{bottom:351.592800pt;}
.y1f{bottom:354.822000pt;}
.y13a{bottom:355.484933pt;}
.y176{bottom:356.764800pt;}
.y102{bottom:356.872533pt;}
.yd5{bottom:362.152400pt;}
.y1b6{bottom:362.792800pt;}
.y6c{bottom:363.057600pt;}
.y1d6{bottom:363.404800pt;}
.y152{bottom:366.258933pt;}
.y12a{bottom:367.084667pt;}
.y44{bottom:367.857600pt;}
.ya4{bottom:370.099467pt;}
.y19a{bottom:371.032667pt;}
.y1e{bottom:372.422000pt;}
.yd4{bottom:373.352400pt;}
.y1b5{bottom:373.992800pt;}
.y139{bottom:374.924933pt;}
.y101{bottom:376.312400pt;}
.y6b{bottom:380.657733pt;}
.y1d5{bottom:381.004800pt;}
.ya3{bottom:381.299467pt;}
.y199{bottom:382.232667pt;}
.yd3{bottom:384.552267pt;}
.y129{bottom:384.684667pt;}
.y43{bottom:385.457733pt;}
.y175{bottom:385.564800pt;}
.y151{bottom:385.698800pt;}
.y100{bottom:387.512400pt;}
.y1d{bottom:390.022000pt;}
.y198{bottom:393.432667pt;}
.y138{bottom:394.364800pt;}
.yd2{bottom:395.752400pt;}
.y6a{bottom:398.257600pt;}
.y1d4{bottom:398.604800pt;}
.ya2{bottom:400.739200pt;}
.y42{bottom:403.057600pt;}
.y174{bottom:403.164800pt;}
.y1b4{bottom:404.632667pt;}
.y150{bottom:405.138667pt;}
.yff{bottom:406.952267pt;}
.y1c{bottom:407.622000pt;}
.ya1{bottom:411.939333pt;}
.y197{bottom:412.872533pt;}
.y137{bottom:413.804667pt;}
.y128{bottom:415.084667pt;}
.yd1{bottom:415.192133pt;}
.y1b3{bottom:415.832667pt;}
.y69{bottom:415.857600pt;}
.y1d3{bottom:416.204800pt;}
.yfe{bottom:418.152400pt;}
.y173{bottom:420.764800pt;}
.y196{bottom:424.072533pt;}
.y14f{bottom:424.578667pt;}
.y1b{bottom:425.222000pt;}
.yd0{bottom:426.392133pt;}
.ya0{bottom:431.379200pt;}
.y68{bottom:433.457733pt;}
.y1d2{bottom:433.804800pt;}
.y136{bottom:434.497867pt;}
.y195{bottom:435.272533pt;}
.yfd{bottom:437.592133pt;}
.y41{bottom:438.257600pt;}
.y172{bottom:438.364800pt;}
.y9f{bottom:442.579200pt;}
.y1a{bottom:442.822000pt;}
.y14e{bottom:444.018533pt;}
.y127{bottom:445.484667pt;}
.ycf{bottom:445.832000pt;}
.y1b2{bottom:446.472533pt;}
.yfc{bottom:448.792133pt;}
.y67{bottom:451.057600pt;}
.y9e{bottom:453.779200pt;}
.y194{bottom:454.712400pt;}
.y40{bottom:455.857600pt;}
.yce{bottom:457.032000pt;}
.yfb{bottom:459.992133pt;}
.y19{bottom:460.422000pt;}
.y14d{bottom:463.458400pt;}
.y193{bottom:465.912400pt;}
.y66{bottom:468.657733pt;}
.y1d1{bottom:469.004800pt;}
.y9d{bottom:473.219067pt;}
.y3f{bottom:473.457733pt;}
.y171{bottom:473.564800pt;}
.y126{bottom:475.884667pt;}
.ycd{bottom:476.472000pt;}
.y1b1{bottom:477.112533pt;}
.yfa{bottom:479.432133pt;}
.y14c{bottom:482.898267pt;}
.y9c{bottom:484.419067pt;}
.y192{bottom:485.352267pt;}
.y65{bottom:486.257600pt;}
.y1d0{bottom:486.604800pt;}
.ycc{bottom:487.672000pt;}
.yf9{bottom:490.632133pt;}
.y3e{bottom:491.057600pt;}
.y170{bottom:491.164800pt;}
.y125{bottom:493.484667pt;}
.y9b{bottom:495.619067pt;}
.y18{bottom:495.622000pt;}
.y1b0{bottom:496.552267pt;}
.ycb{bottom:498.872000pt;}
.yf8{bottom:501.832133pt;}
.y14b{bottom:502.338267pt;}
.y64{bottom:503.857600pt;}
.y1cf{bottom:504.204800pt;}
.y191{bottom:504.792133pt;}
.y3d{bottom:508.657733pt;}
.y16f{bottom:508.764800pt;}
.y124{bottom:511.084667pt;}
.y9a{bottom:515.059067pt;}
.y190{bottom:515.992133pt;}
.yca{bottom:518.311867pt;}
.yf7{bottom:521.271867pt;}
.y63{bottom:521.457733pt;}
.y14a{bottom:521.778133pt;}
.y1ce{bottom:521.804800pt;}
.y3c{bottom:526.257600pt;}
.y16e{bottom:526.364800pt;}
.y1af{bottom:527.192267pt;}
.y123{bottom:528.684667pt;}
.yc9{bottom:529.511867pt;}
.y17{bottom:530.822000pt;}
.yf6{bottom:532.471867pt;}
.y99{bottom:534.498800pt;}
.y18f{bottom:535.432000pt;}
.y62{bottom:539.057600pt;}
.y1cd{bottom:539.404800pt;}
.yc8{bottom:540.711867pt;}
.y149{bottom:541.218000pt;}
.y135{bottom:543.857600pt;}
.y16d{bottom:543.964800pt;}
.y98{bottom:545.698800pt;}
.y122{bottom:546.284667pt;}
.y18e{bottom:546.632133pt;}
.y16{bottom:548.422000pt;}
.yf5{bottom:551.911867pt;}
.y61{bottom:556.657600pt;}
.y97{bottom:556.898800pt;}
.y1cc{bottom:557.004800pt;}
.y1ae{bottom:557.832133pt;}
.yc7{bottom:560.151733pt;}
.y148{bottom:560.657867pt;}
.y3b{bottom:561.457733pt;}
.y16c{bottom:561.564800pt;}
.yf4{bottom:563.111867pt;}
.y121{bottom:563.884667pt;}
.y15{bottom:566.022000pt;}
.y18d{bottom:566.072000pt;}
.y96{bottom:568.098933pt;}
.yc6{bottom:571.351733pt;}
.y60{bottom:574.257600pt;}
.yf3{bottom:574.311867pt;}
.y1cb{bottom:574.604800pt;}
.y18c{bottom:577.272000pt;}
.y3a{bottom:579.057600pt;}
.y16b{bottom:579.164800pt;}
.y146{bottom:580.097733pt;}
.y120{bottom:581.484667pt;}
.yc5{bottom:582.551733pt;}
.y14{bottom:583.622000pt;}
.yf2{bottom:585.511867pt;}
.y145{bottom:586.497867pt;}
.y95{bottom:587.538800pt;}
.y1ad{bottom:588.472000pt;}
.y5f{bottom:591.857600pt;}
.y1ca{bottom:592.204800pt;}
.y147{bottom:592.897733pt;}
.y39{bottom:596.657600pt;}
.y18b{bottom:596.711867pt;}
.y16a{bottom:596.764800pt;}
.y94{bottom:598.738800pt;}
.y11f{bottom:599.084667pt;}
.y13{bottom:601.222000pt;}
.yc4{bottom:601.991600pt;}
.yf1{bottom:604.951733pt;}
.y18a{bottom:607.911867pt;}
.y5e{bottom:609.457733pt;}
.y38{bottom:614.257600pt;}
.y93{bottom:618.178667pt;}
.y12{bottom:618.822000pt;}
.yc3{bottom:621.431467pt;}
.yf0{bottom:624.391600pt;}
.y5d{bottom:627.057600pt;}
.y189{bottom:627.351733pt;}
.y1c9{bottom:627.404800pt;}
.y92{bottom:629.378667pt;}
.y11e{bottom:629.484667pt;}
.y37{bottom:631.857600pt;}
.y169{bottom:631.964800pt;}
.yc2{bottom:632.631467pt;}
.yef{bottom:635.591600pt;}
.y11{bottom:636.422000pt;}
.y1ac{bottom:638.551733pt;}
.y5c{bottom:644.657600pt;}
.yee{bottom:646.791600pt;}
.y11d{bottom:647.084667pt;}
.y91{bottom:648.818533pt;}
.y36{bottom:649.457733pt;}
.y168{bottom:649.564800pt;}
.yc1{bottom:652.071333pt;}
.y10{bottom:654.022000pt;}
.y188{bottom:657.991600pt;}
.y90{bottom:660.018533pt;}
.y5b{bottom:662.257600pt;}
.yc0{bottom:663.271333pt;}
.y1c8{bottom:663.271467pt;}
.y11c{bottom:664.684667pt;}
.yed{bottom:666.231467pt;}
.y35{bottom:667.057600pt;}
.y167{bottom:667.164800pt;}
.y1ab{bottom:669.191600pt;}
.y8f{bottom:671.218533pt;}
.yf{bottom:671.622000pt;}
.ybf{bottom:674.471333pt;}
.y1c7{bottom:674.471467pt;}
.yec{bottom:677.431467pt;}
.y5a{bottom:679.857600pt;}
.y11b{bottom:682.284667pt;}
.y134{bottom:684.657600pt;}
.y166{bottom:684.764800pt;}
.ybe{bottom:685.671333pt;}
.yeb{bottom:688.631467pt;}
.ye{bottom:689.222000pt;}
.y8e{bottom:690.658400pt;}
.y1c6{bottom:693.911333pt;}
.y59{bottom:697.457733pt;}
.y8d{bottom:701.858400pt;}
.y34{bottom:702.257600pt;}
.ybd{bottom:705.111200pt;}
.y1c5{bottom:705.111333pt;}
.yd{bottom:706.822000pt;}
.yea{bottom:708.071333pt;}
.y11a{bottom:713.351333pt;}
.y58{bottom:715.057600pt;}
.ybc{bottom:716.311333pt;}
.ye9{bottom:719.271333pt;}
.y1aa{bottom:719.271467pt;}
.y33{bottom:719.857600pt;}
.y165{bottom:719.964800pt;}
.y8c{bottom:721.298267pt;}
.y119{bottom:724.551333pt;}
.y187{bottom:727.511333pt;}
.ye8{bottom:730.471333pt;}
.y8b{bottom:732.498267pt;}
.y57{bottom:732.657600pt;}
.ybb{bottom:735.751200pt;}
.y32{bottom:737.457733pt;}
.y186{bottom:738.711200pt;}
.y1c4{bottom:738.711333pt;}
.yc{bottom:742.022000pt;}
.y118{bottom:743.991067pt;}
.yba{bottom:746.951200pt;}
.ye7{bottom:749.911333pt;}
.y56{bottom:750.257600pt;}
.y8a{bottom:751.938133pt;}
.y31{bottom:755.057600pt;}
.y117{bottom:755.191200pt;}
.y164{bottom:755.831467pt;}
.y1a9{bottom:758.151200pt;}
.y89{bottom:763.138133pt;}
.yb9{bottom:766.391067pt;}
.y55{bottom:767.857600pt;}
.ye6{bottom:769.351200pt;}
.y30{bottom:772.657600pt;}
.y116{bottom:774.631067pt;}
.y163{bottom:775.271467pt;}
.yb{bottom:777.222000pt;}
.yb8{bottom:777.591067pt;}
.ye5{bottom:780.551200pt;}
.y88{bottom:782.578000pt;}
.y54{bottom:785.457600pt;}
.y115{bottom:785.831067pt;}
.y1c3{bottom:788.791067pt;}
.y2f{bottom:790.257600pt;}
.y87{bottom:793.778133pt;}
.y162{bottom:794.711200pt;}
.ya{bottom:794.822000pt;}
.yb7{bottom:797.030933pt;}
.y114{bottom:797.031067pt;}
.y185{bottom:799.990933pt;}
.ye4{bottom:799.991067pt;}
.y53{bottom:803.057600pt;}
.y2e{bottom:807.857600pt;}
.yb6{bottom:808.230933pt;}
.y184{bottom:811.190933pt;}
.y86{bottom:813.218000pt;}
.y161{bottom:814.151067pt;}
.y113{bottom:816.470933pt;}
.yb5{bottom:819.430933pt;}
.y52{bottom:820.657600pt;}
.y2d{bottom:825.457600pt;}
.y112{bottom:827.670933pt;}
.y183{bottom:830.630800pt;}
.ye3{bottom:830.630933pt;}
.y1c2{bottom:830.631067pt;}
.y85{bottom:832.657733pt;}
.y160{bottom:833.591067pt;}
.y51{bottom:838.257600pt;}
.yb4{bottom:838.870800pt;}
.y111{bottom:838.870933pt;}
.y182{bottom:841.830933pt;}
.y2c{bottom:843.057600pt;}
.yb3{bottom:850.070800pt;}
.y110{bottom:850.070933pt;}
.y8{bottom:850.937467pt;}
.y84{bottom:852.097600pt;}
.y15f{bottom:853.030933pt;}
.y50{bottom:855.857600pt;}
.yb2{bottom:861.270800pt;}
.y10f{bottom:861.270933pt;}
.y7{bottom:870.137467pt;}
.yb1{bottom:872.470800pt;}
.y10e{bottom:872.470933pt;}
.y2b{bottom:873.457600pt;}
.y3{bottom:900.195867pt;}
.y2{bottom:916.195867pt;}
.y75{bottom:920.747867pt;}
.y29{bottom:938.958000pt;}
.y74{bottom:939.947867pt;}
.y9{bottom:944.080533pt;}
.y5{bottom:966.459333pt;}
.y4{bottom:1011.931733pt;}
.y2a{bottom:1064.881067pt;}
.he{height:18.106667pt;}
.hd{height:24.288000pt;}
.hf{height:30.538667pt;}
.h10{height:34.234667pt;}
.h11{height:39.040000pt;}
.h2{height:39.125333pt;}
.h7{height:40.192000pt;}
.ha{height:42.752000pt;}
.h4{height:53.440000pt;}
.h8{height:53.797333pt;}
.h12{height:53.797867pt;}
.h9{height:55.264000pt;}
.hc{height:60.288000pt;}
.h3{height:64.128000pt;}
.h13{height:64.639467pt;}
.h14{height:64.640000pt;}
.h6{height:74.816000pt;}
.hb{height:88.919467pt;}
.h5{height:401.920000pt;}
.h0{height:1133.858667pt;}
.h1{height:1134.000000pt;}
.w0{width:805.040000pt;}
.w1{width:805.333333pt;}
.x0{left:0.000000pt;}
.xc{left:94.488133pt;}
.xb{left:95.433067pt;}
.x13{left:100.488133pt;}
.xd{left:118.488133pt;}
.x4{left:130.393733pt;}
.x1{left:132.283467pt;}
.x1d{left:137.034133pt;}
.x12{left:138.283467pt;}
.x19{left:149.669200pt;}
.x29{left:156.283467pt;}
.x15{left:162.149867pt;}
.xf{left:168.283467pt;}
.x8{left:178.021600pt;}
.x16{left:181.495600pt;}
.x3{left:193.803200pt;}
.x17{left:210.827200pt;}
.x11{left:233.973733pt;}
.x1f{left:271.171200pt;}
.x10{left:312.946933pt;}
.x9{left:315.725067pt;}
.x5{left:328.744667pt;}
.x18{left:331.039467pt;}
.x1e{left:363.010000pt;}
.x14{left:388.955333pt;}
.x1a{left:405.314133pt;}
.xa{left:426.342133pt;}
.xe{left:463.274800pt;}
.x1b{left:518.634933pt;}
.x20{left:520.465600pt;}
.x2{left:542.299200pt;}
.x22{left:554.266800pt;}
.x28{left:556.296800pt;}
.x7{left:559.896533pt;}
.x23{left:562.480000pt;}
.x6{left:566.687733pt;}
.x1c{left:570.708667pt;}
.x21{left:591.637333pt;}
.x27{left:592.771467pt;}
.x24{left:594.512000pt;}
.x26{left:597.232667pt;}
.x25{left:600.275200pt;}
}




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