
    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_183fe6254ab4bef1a79e962f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b854a3089945ca0e8e2fc501.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6bb9a399456dacd0a1b14428.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2496687f45fc6ce91dcf5bfe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_32a2b26fc243b04e1919ea3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3ddbe396d4f4608267e7becb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_d482e0852eb520b84b90285a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_c92f05ebba6818cb4b3f98be.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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);}
.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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls22{letter-spacing:-1.332000px;}
.lsc{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.ls17{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.269400px;}
.ls10{letter-spacing:-0.259800px;}
.ls4{letter-spacing:-0.208200px;}
.ls15{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.180000px;}
.ls2b{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.037440px;}
.ls1b{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.135600px;}
.ls0{letter-spacing:0.149760px;}
.lse{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.666000px;}
.ls25{letter-spacing:6.426720px;}
.ls29{letter-spacing:16.506720px;}
.ls26{letter-spacing:25.866720px;}
.ls19{letter-spacing:26.586720px;}
.ls13{letter-spacing:30.186720px;}
.ls1f{letter-spacing:30.906720px;}
.ls28{letter-spacing:46.002720px;}
.ls21{letter-spacing:46.026720px;}
.ls2a{letter-spacing:46.170720px;}
.ls27{letter-spacing:49.602720px;}
.ls20{letter-spacing:49.626720px;}
.ls1d{letter-spacing:61.146720px;}
.ls1a{letter-spacing:114.426720px;}
.ls24{letter-spacing:116.244000px;}
.ls12{letter-spacing:155.124000px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.ws16{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.093600px;}
.ws15{word-spacing:-15.075600px;}
.wsd{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.ws10{word-spacing:-14.976000px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.833200px;}
.wse{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.680200px;}
.ws13{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.790600px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._2e{margin-left:-6.739920px;}
._32{margin-left:-5.506560px;}
._1c{margin-left:-4.469520px;}
._1d{margin-left:-3.240000px;}
._15{margin-left:-2.206800px;}
._0{margin-left:-1.080000px;}
._f{width:1.110480px;}
._1{width:2.220000px;}
._10{width:3.364080px;}
._13{width:5.224080px;}
._16{width:6.368640px;}
._14{width:8.032800px;}
._11{width:9.782160px;}
._6{width:10.800000px;}
._12{width:11.917200px;}
._18{width:13.590480px;}
._1a{width:16.852320px;}
._1b{width:18.653760px;}
._31{width:20.391840px;}
._26{width:21.394080px;}
._23{width:23.186880px;}
._22{width:25.179600px;}
._21{width:26.593200px;}
._2d{width:28.625040px;}
._36{width:29.831280px;}
._28{width:31.140000px;}
._2b{width:33.047280px;}
._2a{width:34.660800px;}
._37{width:42.872880px;}
._3d{width:46.369200px;}
._3f{width:52.290000px;}
._34{width:56.856720px;}
._33{width:58.231680px;}
._40{width:70.242960px;}
._35{width:74.279760px;}
._7{width:76.284960px;}
._29{width:78.096000px;}
._1e{width:93.060000px;}
._25{width:96.333120px;}
._27{width:99.824160px;}
._2c{width:105.655680px;}
._30{width:112.500000px;}
._2f{width:116.244000px;}
._3e{width:128.782800px;}
._8{width:154.080000px;}
._17{width:155.124000px;}
._38{width:170.400720px;}
._39{width:172.330560px;}
._1f{width:175.284000px;}
._24{width:177.068880px;}
._3c{width:189.135840px;}
._c{width:195.120000px;}
._3a{width:199.056000px;}
._3b{width:201.060000px;}
._2{width:255.512640px;}
._20{width:283.284000px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._19{width:444.293040px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12a{bottom:0.255000px;}
.y127{bottom:0.285000px;}
.y11e{bottom:1.905000px;}
.y96{bottom:5.760000px;}
.y1f9{bottom:5.790000px;}
.ya3{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.yc5{bottom:6.480000px;}
.y23d{bottom:7.560000px;}
.y240{bottom:7.740000px;}
.y122{bottom:8.385000px;}
.yba{bottom:9.000000px;}
.yfb{bottom:9.540000px;}
.y1fb{bottom:10.800000px;}
.y214{bottom:10.830000px;}
.y125{bottom:10.905000px;}
.y1fd{bottom:11.700000px;}
.y6{bottom:12.420000px;}
.y11a{bottom:12.885000px;}
.y202{bottom:15.660000px;}
.y20c{bottom:16.200000px;}
.y208{bottom:17.100000px;}
.y8{bottom:18.180000px;}
.y242{bottom:18.540000px;}
.y246{bottom:18.720000px;}
.y257{bottom:20.340000px;}
.y226{bottom:20.520000px;}
.y228{bottom:20.700000px;}
.y212{bottom:21.240000px;}
.y26a{bottom:21.600000px;}
.y120{bottom:22.035000px;}
.y266{bottom:23.040000px;}
.y219{bottom:23.400000px;}
.y24c{bottom:23.580000px;}
.y21d{bottom:24.300000px;}
.y262{bottom:25.200000px;}
.y157{bottom:25.560000px;}
.y1f7{bottom:25.590000px;}
.yc9{bottom:25.740000px;}
.y25c{bottom:25.785000px;}
.ybf{bottom:26.280000px;}
.ybc{bottom:26.460000px;}
.ye0{bottom:26.490000px;}
.y1f5{bottom:27.360000px;}
.yb8{bottom:29.520000px;}
.y124{bottom:30.885000px;}
.y254{bottom:32.940000px;}
.y249{bottom:33.120000px;}
.y238{bottom:35.100000px;}
.y259{bottom:35.640000px;}
.y25b{bottom:36.045000px;}
.y236{bottom:37.260000px;}
.y224{bottom:38.340000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.y11c{bottom:41.685000px;}
.y1f1{bottom:45.360000px;}
.y1f8{bottom:45.390000px;}
.yc8{bottom:45.540000px;}
.y155{bottom:46.080000px;}
.y22c{bottom:46.260000px;}
.yf3{bottom:46.980000px;}
.yf8{bottom:50.580000px;}
.yb{bottom:60.300000px;}
.y22e{bottom:65.340000px;}
.y225{bottom:65.370000px;}
.y4{bottom:68.400000px;}
.ydd{bottom:69.840000px;}
.yd{bottom:77.940000px;}
.ya{bottom:81.900000px;}
.y22d{bottom:85.140000px;}
.ydc{bottom:89.640000px;}
.yb6{bottom:93.450000px;}
.yf1{bottom:94.140000px;}
.y3{bottom:96.330000px;}
.y264{bottom:102.420000px;}
.y118{bottom:104.040000px;}
.y102{bottom:105.120000px;}
.y1de{bottom:105.480000px;}
.y3a{bottom:109.440000px;}
.ydb{bottom:109.470000px;}
.ye6{bottom:109.620000px;}
.y94{bottom:110.340000px;}
.yb2{bottom:110.520000px;}
.ycf{bottom:111.600000px;}
.y231{bottom:112.500000px;}
.y24d{bottom:113.400000px;}
.yb5{bottom:113.430000px;}
.yf0{bottom:113.940000px;}
.y211{bottom:114.300000px;}
.y1a4{bottom:114.840000px;}
.y287{bottom:116.460000px;}
.y1ef{bottom:117.540000px;}
.y68{bottom:119.340000px;}
.y165{bottom:119.700000px;}
.y1b0{bottom:121.320000px;}
.y117{bottom:123.840000px;}
.y101{bottom:125.100000px;}
.y1dd{bottom:125.280000px;}
.y2{bottom:125.670000px;}
.y1ce{bottom:128.340000px;}
.y16f{bottom:129.240000px;}
.yda{bottom:129.270000px;}
.y39{bottom:129.420000px;}
.y17f{bottom:130.140000px;}
.y93{bottom:130.320000px;}
.y169{bottom:130.905000px;}
.yc1{bottom:131.040000px;}
.yce{bottom:131.400000px;}
.yb4{bottom:133.230000px;}
.yef{bottom:133.740000px;}
.y1a3{bottom:134.640000px;}
.y286{bottom:136.440000px;}
.y1ee{bottom:137.340000px;}
.y67{bottom:139.320000px;}
.y154{bottom:139.500000px;}
.y158{bottom:140.220000px;}
.y1af{bottom:141.120000px;}
.y213{bottom:143.460000px;}
.y100{bottom:144.900000px;}
.y1dc{bottom:145.260000px;}
.y1cd{bottom:148.320000px;}
.y38{bottom:149.220000px;}
.y17e{bottom:149.940000px;}
.y92{bottom:150.120000px;}
.y168{bottom:150.705000px;}
.ycd{bottom:151.380000px;}
.ybe{bottom:151.770000px;}
.y116{bottom:152.670000px;}
.yb3{bottom:153.030000px;}
.yee{bottom:153.540000px;}
.y263{bottom:153.750000px;}
.y1a2{bottom:154.470000px;}
.y285{bottom:156.270000px;}
.y1ed{bottom:157.350000px;}
.y66{bottom:159.150000px;}
.y153{bottom:159.330000px;}
.y164{bottom:160.770000px;}
.y1ae{bottom:160.950000px;}
.y230{bottom:163.830000px;}
.yff{bottom:164.730000px;}
.y1db{bottom:165.090000px;}
.y20f{bottom:167.070000px;}
.y1cc{bottom:168.150000px;}
.y37{bottom:169.050000px;}
.y91{bottom:169.950000px;}
.y167{bottom:170.505000px;}
.y24b{bottom:170.670000px;}
.ycc{bottom:171.180000px;}
.yc0{bottom:172.290000px;}
.y1a1{bottom:174.270000px;}
.y284{bottom:176.070000px;}
.y1ec{bottom:177.150000px;}
.y65{bottom:178.950000px;}
.y152{bottom:179.130000px;}
.y1ad{bottom:180.750000px;}
.y115{bottom:181.470000px;}
.yfe{bottom:184.530000px;}
.y1da{bottom:184.890000px;}
.y1cb{bottom:187.950000px;}
.y36{bottom:188.850000px;}
.y22f{bottom:189.030000px;}
.y90{bottom:189.750000px;}
.ycb{bottom:190.980000px;}
.ybb{bottom:192.810000px;}
.y1a0{bottom:194.250000px;}
.y1eb{bottom:196.950000px;}
.y283{bottom:198.210000px;}
.y64{bottom:198.750000px;}
.y151{bottom:198.930000px;}
.y1ac{bottom:200.550000px;}
.y114{bottom:201.450000px;}
.y163{bottom:201.990000px;}
.yfd{bottom:204.330000px;}
.y1d9{bottom:204.690000px;}
.y210{bottom:204.870000px;}
.y1ca{bottom:207.750000px;}
.y35{bottom:208.650000px;}
.y8f{bottom:209.550000px;}
.ybd{bottom:213.510000px;}
.y19f{bottom:214.050000px;}
.y1ea{bottom:216.750000px;}
.y282{bottom:218.010000px;}
.y63{bottom:218.550000px;}
.y150{bottom:218.730000px;}
.y1ab{bottom:220.530000px;}
.y162{bottom:222.510000px;}
.yfc{bottom:224.310000px;}
.y1d8{bottom:224.490000px;}
.y1c9{bottom:227.550000px;}
.y24a{bottom:227.910000px;}
.y20e{bottom:228.450000px;}
.y34{bottom:228.630000px;}
.y8e{bottom:229.530000px;}
.y113{bottom:230.250000px;}
.y15a{bottom:232.950000px;}
.y19e{bottom:233.850000px;}
.yb7{bottom:234.030000px;}
.y1e9{bottom:236.550000px;}
.y281{bottom:237.810000px;}
.y62{bottom:238.530000px;}
.y14f{bottom:238.710000px;}
.yed{bottom:239.070000px;}
.y261{bottom:239.790000px;}
.y161{bottom:243.210000px;}
.y1d7{bottom:244.470000px;}
.y1c8{bottom:247.530000px;}
.y33{bottom:248.430000px;}
.y8d{bottom:249.330000px;}
.y159{bottom:252.930000px;}
.y248{bottom:253.290000px;}
.y19d{bottom:253.650000px;}
.yb9{bottom:254.550000px;}
.y1e8{bottom:256.530000px;}
.y280{bottom:257.610000px;}
.y61{bottom:258.330000px;}
.y112{bottom:259.050000px;}
.yfa{bottom:263.370000px;}
.y160{bottom:263.730000px;}
.y1d6{bottom:264.270000px;}
.y260{bottom:264.990000px;}
.y1c7{bottom:267.330000px;}
.y14e{bottom:267.510000px;}
.y32{bottom:268.230000px;}
.y19c{bottom:268.410000px;}
.y8c{bottom:269.130000px;}
.y20d{bottom:272.550000px;}
.y1e7{bottom:276.330000px;}
.y27f{bottom:277.590000px;}
.y60{bottom:278.130000px;}
.yb1{bottom:278.310000px;}
.y111{bottom:278.850000px;}
.yf9{bottom:283.890000px;}
.y1d5{bottom:284.070000px;}
.y15f{bottom:284.250000px;}
.y1c6{bottom:287.130000px;}
.y14d{bottom:287.310000px;}
.y31{bottom:288.030000px;}
.y8b{bottom:288.930000px;}
.y19b{bottom:289.110000px;}
.y22b{bottom:290.190000px;}
.y25f{bottom:290.370000px;}
.y18c{bottom:291.990000px;}
.y1e6{bottom:296.130000px;}
.y27e{bottom:297.390000px;}
.y5f{bottom:297.930000px;}
.y110{bottom:298.650000px;}
.y1d4{bottom:303.870000px;}
.yf6{bottom:304.590000px;}
.yb0{bottom:304.770000px;}
.y15e{bottom:304.950000px;}
.y1c5{bottom:306.930000px;}
.y30{bottom:307.830000px;}
.y8a{bottom:308.730000px;}
.y19a{bottom:309.630000px;}
.y18b{bottom:311.790000px;}
.y20b{bottom:314.130000px;}
.y1e5{bottom:315.930000px;}
.y14c{bottom:316.110000px;}
.y27d{bottom:317.190000px;}
.y10f{bottom:318.630000px;}
.y1d3{bottom:323.670000px;}
.yaf{bottom:324.570000px;}
.yf7{bottom:325.110000px;}
.y15d{bottom:325.470000px;}
.y5e{bottom:326.730000px;}
.y2f{bottom:327.810000px;}
.y89{bottom:328.710000px;}
.y247{bottom:329.610000px;}
.y199{bottom:330.150000px;}
.y18a{bottom:331.590000px;}
.y1e4{bottom:335.730000px;}
.y14b{bottom:335.910000px;}
.y27c{bottom:336.990000px;}
.y20a{bottom:337.710000px;}
.y10e{bottom:338.430000px;}
.y1d2{bottom:343.650000px;}
.yae{bottom:344.370000px;}
.yf2{bottom:345.630000px;}
.y15c{bottom:346.170000px;}
.y5d{bottom:346.710000px;}
.y2e{bottom:347.610000px;}
.y88{bottom:348.510000px;}
.y198{bottom:350.850000px;}
.y189{bottom:351.390000px;}
.y245{bottom:354.810000px;}
.y1e3{bottom:355.710000px;}
.y14a{bottom:355.890000px;}
.y27b{bottom:356.790000px;}
.y25e{bottom:357.510000px;}
.y10d{bottom:358.230000px;}
.y207{bottom:362.910000px;}
.y1d1{bottom:363.450000px;}
.yad{bottom:364.170000px;}
.yf5{bottom:366.330000px;}
.y5c{bottom:366.510000px;}
.y15b{bottom:366.690000px;}
.y2d{bottom:367.410000px;}
.y87{bottom:368.310000px;}
.y188{bottom:371.370000px;}
.y1e2{bottom:375.510000px;}
.y149{bottom:375.690000px;}
.y27a{bottom:376.770000px;}
.y25d{bottom:377.310000px;}
.y10c{bottom:378.030000px;}
.y1d0{bottom:383.250000px;}
.y209{bottom:383.610000px;}
.yac{bottom:384.150000px;}
.y5b{bottom:386.310000px;}
.yf4{bottom:386.850000px;}
.y2c{bottom:387.210000px;}
.y86{bottom:388.110000px;}
.y187{bottom:391.170000px;}
.y197{bottom:392.070000px;}
.y22a{bottom:392.790000px;}
.y1e1{bottom:395.310000px;}
.y279{bottom:396.570000px;}
.y10b{bottom:397.830000px;}
.y1cf{bottom:400.575000px;}
.y244{bottom:402.195000px;}
.yab{bottom:403.995000px;}
.y148{bottom:404.535000px;}
.y17d{bottom:405.975000px;}
.y5a{bottom:406.155000px;}
.y2b{bottom:407.055000px;}
.ye5{bottom:407.415000px;}
.y85{bottom:407.955000px;}
.y196{bottom:412.635000px;}
.y1e0{bottom:415.155000px;}
.y278{bottom:416.415000px;}
.y10a{bottom:417.855000px;}
.y229{bottom:418.035000px;}
.y206{bottom:421.635000px;}
.yaa{bottom:423.795000px;}
.y59{bottom:425.955000px;}
.y186{bottom:426.495000px;}
.y2a{bottom:427.035000px;}
.y243{bottom:427.575000px;}
.y84{bottom:427.935000px;}
.yeb{bottom:428.115000px;}
.y195{bottom:433.155000px;}
.y147{bottom:433.335000px;}
.y1df{bottom:434.955000px;}
.y109{bottom:435.135000px;}
.y277{bottom:436.215000px;}
.ya9{bottom:443.595000px;}
.y205{bottom:445.035000px;}
.y58{bottom:445.935000px;}
.y29{bottom:446.835000px;}
.y185{bottom:447.195000px;}
.y1aa{bottom:447.735000px;}
.y156{bottom:448.275000px;}
.yec{bottom:448.635000px;}
.y146{bottom:453.135000px;}
.y194{bottom:453.855000px;}
.y108{bottom:454.935000px;}
.y276{bottom:456.015000px;}
.y83{bottom:456.735000px;}
.ya8{bottom:463.395000px;}
.y57{bottom:465.735000px;}
.y28{bottom:466.635000px;}
.y1c2{bottom:467.535000px;}
.y184{bottom:467.715000px;}
.y204{bottom:468.435000px;}
.ye9{bottom:469.155000px;}
.y227{bottom:469.335000px;}
.y145{bottom:473.115000px;}
.y25a{bottom:474.195000px;}
.y193{bottom:474.375000px;}
.y107{bottom:474.735000px;}
.y241{bottom:474.915000px;}
.y275{bottom:475.995000px;}
.y82{bottom:476.535000px;}
.ya7{bottom:483.375000px;}
.y56{bottom:485.535000px;}
.y27{bottom:486.435000px;}
.y1c1{bottom:487.335000px;}
.y183{bottom:488.415000px;}
.yea{bottom:489.855000px;}
.y144{bottom:492.915000px;}
.y201{bottom:493.815000px;}
.y106{bottom:494.535000px;}
.y274{bottom:495.795000px;}
.y81{bottom:496.335000px;}
.y258{bottom:499.395000px;}
.y12c{bottom:501.840000px;}
.ya6{bottom:503.175000px;}
.y55{bottom:505.335000px;}
.y26{bottom:506.235000px;}
.y1c0{bottom:507.135000px;}
.y182{bottom:508.935000px;}
.ye7{bottom:510.375000px;}
.y203{bottom:511.815000px;}
.y143{bottom:512.715000px;}
.y105{bottom:514.335000px;}
.y273{bottom:515.595000px;}
.y80{bottom:516.135000px;}
.y192{bottom:520.635000px;}
.y23f{bottom:522.075000px;}
.ya5{bottom:522.975000px;}
.y54{bottom:525.135000px;}
.y25{bottom:526.215000px;}
.y1bf{bottom:527.115000px;}
.y181{bottom:529.455000px;}
.ye8{bottom:531.075000px;}
.y142{bottom:532.515000px;}
.y104{bottom:534.135000px;}
.y200{bottom:535.395000px;}
.y7f{bottom:536.115000px;}
.ya4{bottom:537.735000px;}
.y191{bottom:540.435000px;}
.y11f{bottom:543.240000px;}
.y53{bottom:545.115000px;}
.y24{bottom:546.015000px;}
.y1be{bottom:546.915000px;}
.y23e{bottom:547.455000px;}
.y180{bottom:550.155000px;}
.yd9{bottom:551.595000px;}
.y103{bottom:554.115000px;}
.y272{bottom:555.195000px;}
.y7e{bottom:555.915000px;}
.ya2{bottom:558.255000px;}
.y190{bottom:560.235000px;}
.y1fe{bottom:560.595000px;}
.y141{bottom:561.315000px;}
.y1c4{bottom:564.915000px;}
.y23{bottom:565.815000px;}
.y1bd{bottom:566.715000px;}
.y176{bottom:570.675000px;}
.ye4{bottom:572.115000px;}
.y52{bottom:573.915000px;}
.y271{bottom:575.175000px;}
.y12d{bottom:575.640000px;}
.y7d{bottom:575.715000px;}
.ya1{bottom:578.955000px;}
.y18f{bottom:580.035000px;}
.y256{bottom:580.575000px;}
.y1c3{bottom:584.715000px;}
.y22{bottom:585.615000px;}
.y1bc{bottom:586.515000px;}
.y140{bottom:590.295000px;}
.y17c{bottom:591.195000px;}
.ye3{bottom:592.815000px;}
.y51{bottom:593.715000px;}
.y270{bottom:594.975000px;}
.y1a9{bottom:595.515000px;}
.y223{bottom:597.315000px;}
.y1ff{bottom:598.575000px;}
.ya0{bottom:599.475000px;}
.y18e{bottom:600.015000px;}
.y7c{bottom:604.515000px;}
.y21{bottom:605.415000px;}
.y1bb{bottom:606.315000px;}
.y23c{bottom:608.835000px;}
.y13f{bottom:610.095000px;}
.y17b{bottom:611.895000px;}
.ye2{bottom:613.335000px;}
.y50{bottom:613.515000px;}
.y26f{bottom:614.775000px;}
.y1a8{bottom:615.315000px;}
.y18d{bottom:616.395000px;}
.y9f{bottom:620.175000px;}
.y129{bottom:621.540000px;}
.y1fc{bottom:621.975000px;}
.y7b{bottom:624.315000px;}
.y20{bottom:625.395000px;}
.y1ba{bottom:626.295000px;}
.y13e{bottom:629.895000px;}
.y255{bottom:631.335000px;}
.y17a{bottom:632.415000px;}
.y4f{bottom:633.315000px;}
.ydf{bottom:633.855000px;}
.y23b{bottom:634.035000px;}
.y26e{bottom:634.575000px;}
.y1a7{bottom:635.295000px;}
.y9e{bottom:640.695000px;}
.y7a{bottom:644.295000px;}
.y1f{bottom:645.195000px;}
.y1b9{bottom:646.095000px;}
.y12e{bottom:646.740000px;}
.y1f6{bottom:647.355000px;}
.y13d{bottom:649.725000px;}
.y179{bottom:652.965000px;}
.y11b{bottom:653.040000px;}
.y4e{bottom:653.325000px;}
.y26d{bottom:654.405000px;}
.ye1{bottom:654.585000px;}
.y1a6{bottom:655.125000px;}
.y253{bottom:656.745000px;}
.y23a{bottom:659.445000px;}
.y123{bottom:661.140000px;}
.y9d{bottom:661.245000px;}
.y79{bottom:664.125000px;}
.y1e{bottom:665.025000px;}
.y1b8{bottom:665.925000px;}
.y13c{bottom:669.525000px;}
.y4d{bottom:673.125000px;}
.y178{bottom:673.665000px;}
.y26c{bottom:674.385000px;}
.y121{bottom:674.640000px;}
.y11d{bottom:674.745000px;}
.y1a5{bottom:674.925000px;}
.yde{bottom:675.105000px;}
.y128{bottom:678.240000px;}
.y78{bottom:683.925000px;}
.y222{bottom:684.285000px;}
.y1d{bottom:684.825000px;}
.y1fa{bottom:685.185000px;}
.y9c{bottom:687.705000px;}
.y26b{bottom:689.145000px;}
.y13b{bottom:689.505000px;}
.y4c{bottom:692.925000px;}
.y177{bottom:694.185000px;}
.y1b7{bottom:694.725000px;}
.yca{bottom:695.805000px;}
.y77{bottom:703.725000px;}
.y1c{bottom:704.625000px;}
.y9b{bottom:707.505000px;}
.y1f4{bottom:708.765000px;}
.y13a{bottom:709.305000px;}
.y221{bottom:709.485000px;}
.y4b{bottom:712.725000px;}
.y1b6{bottom:714.525000px;}
.y16e{bottom:714.885000px;}
.yd8{bottom:716.325000px;}
.y9a{bottom:722.265000px;}
.y76{bottom:723.525000px;}
.y1b{bottom:724.425000px;}
.y239{bottom:726.585000px;}
.y4a{bottom:732.525000px;}
.y252{bottom:733.065000px;}
.y1b5{bottom:734.505000px;}
.y220{bottom:734.685000px;}
.y175{bottom:735.405000px;}
.yd6{bottom:736.845000px;}
.y139{bottom:738.105000px;}
.y126{bottom:740.340000px;}
.y237{bottom:741.345000px;}
.y99{bottom:742.965000px;}
.y75{bottom:743.505000px;}
.y1a{bottom:744.405000px;}
.y269{bottom:746.385000px;}
.y49{bottom:752.505000px;}
.y1b4{bottom:754.305000px;}
.y174{bottom:755.925000px;}
.yd7{bottom:757.545000px;}
.y74{bottom:763.305000px;}
.y98{bottom:763.485000px;}
.y19{bottom:764.205000px;}
.y138{bottom:766.905000px;}
.y48{bottom:772.305000px;}
.y1f3{bottom:773.565000px;}
.y1b3{bottom:774.105000px;}
.y173{bottom:776.625000px;}
.yd4{bottom:778.065000px;}
.y119{bottom:779.040000px;}
.y73{bottom:783.105000px;}
.y18{bottom:784.005000px;}
.y251{bottom:784.365000px;}
.y137{bottom:786.705000px;}
.y12b{bottom:789.840000px;}
.y47{bottom:792.105000px;}
.y1b2{bottom:793.905000px;}
.y172{bottom:797.145000px;}
.yd5{bottom:798.585000px;}
.y1f2{bottom:798.765000px;}
.y268{bottom:800.025000px;}
.y21f{bottom:802.005000px;}
.y72{bottom:802.905000px;}
.y97{bottom:804.705000px;}
.y136{bottom:806.685000px;}
.y17{bottom:809.025000px;}
.y250{bottom:809.565000px;}
.y46{bottom:811.905000px;}
.y1b1{bottom:813.705000px;}
.y21c{bottom:816.765000px;}
.y171{bottom:817.665000px;}
.yd2{bottom:819.285000px;}
.y235{bottom:821.625000px;}
.y71{bottom:822.705000px;}
.y16{bottom:823.605000px;}
.y1f0{bottom:824.145000px;}
.y95{bottom:825.225000px;}
.y135{bottom:826.485000px;}
.y45{bottom:831.705000px;}
.y170{bottom:838.365000px;}
.yd3{bottom:839.805000px;}
.y70{bottom:842.685000px;}
.y15{bottom:848.805000px;}
.y267{bottom:850.425000px;}
.y44{bottom:851.685000px;}
.y21e{bottom:851.865000px;}
.y134{bottom:855.285000px;}
.y166{bottom:858.885000px;}
.yd0{bottom:860.325000px;}
.y6f{bottom:862.485000px;}
.y14{bottom:863.925000px;}
.y24f{bottom:870.945000px;}
.y43{bottom:871.485000px;}
.y21b{bottom:875.445000px;}
.y16d{bottom:879.405000px;}
.yd1{bottom:881.025000px;}
.y6e{bottom:882.285000px;}
.y133{bottom:884.085000px;}
.y13{bottom:885.165000px;}
.y42{bottom:891.285000px;}
.y16c{bottom:900.150000px;}
.y218{bottom:900.690000px;}
.y265{bottom:901.230000px;}
.yc7{bottom:901.590000px;}
.y6d{bottom:902.130000px;}
.y132{bottom:903.930000px;}
.y234{bottom:906.270000px;}
.y12{bottom:908.610000px;}
.y41{bottom:911.130000px;}
.y16b{bottom:920.670000px;}
.y6c{bottom:921.930000px;}
.y131{bottom:923.910000px;}
.y40{bottom:930.930000px;}
.y233{bottom:931.470000px;}
.y24e{bottom:932.370000px;}
.y21a{bottom:934.170000px;}
.y11{bottom:940.470000px;}
.y16a{bottom:941.370000px;}
.y6b{bottom:941.910000px;}
.y3f{bottom:950.910000px;}
.y130{bottom:952.710000px;}
.y216{bottom:957.570000px;}
.y6a{bottom:961.710000px;}
.yc4{bottom:961.890000px;}
.y3e{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y69{bottom:981.510000px;}
.yc6{bottom:982.410000px;}
.y232{bottom:982.770000px;}
.y3d{bottom:990.510000px;}
.y217{bottom:995.550000px;}
.y12f{bottom:1001.310000px;}
.yc3{bottom:1003.110000px;}
.yf{bottom:1003.830000px;}
.y3c{bottom:1010.310000px;}
.y215{bottom:1018.950000px;}
.yc2{bottom:1023.630000px;}
.y3b{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.082656px;}
.h37{height:3.780000px;}
.h2b{height:11.520000px;}
.h3c{height:12.600000px;}
.h3b{height:16.200000px;}
.h40{height:17.100000px;}
.h3f{height:18.900000px;}
.h12{height:19.800000px;}
.h13{height:19.836000px;}
.h14{height:19.980000px;}
.h1e{height:20.016000px;}
.h36{height:21.600000px;}
.h3e{height:21.636000px;}
.hb{height:21.780000px;}
.h29{height:22.500000px;}
.h17{height:23.040000px;}
.h34{height:23.400000px;}
.h45{height:23.436000px;}
.h23{height:23.580000px;}
.h25{height:27.000000px;}
.h42{height:27.360000px;}
.he{height:28.115859px;}
.h44{height:31.500000px;}
.h47{height:33.300000px;}
.h7{height:33.480000px;}
.h2c{height:34.884492px;}
.h3a{height:36.000000px;}
.h39{height:36.036000px;}
.h28{height:37.800000px;}
.h2e{height:39.600000px;}
.h19{height:40.320000px;}
.h18{height:40.500000px;}
.h1c{height:40.536000px;}
.hf{height:42.164648px;}
.h3d{height:42.336000px;}
.hd{height:43.215117px;}
.h24{height:43.506914px;}
.h16{height:43.560000px;}
.h2a{height:45.000000px;}
.h11{height:45.024258px;}
.h50{height:45.360000px;}
.h51{height:45.540000px;}
.h4{height:46.736719px;}
.ha{height:47.901094px;}
.h55{height:48.960000px;}
.h5a{height:48.996000px;}
.h10{height:49.255313px;}
.h49{height:49.320000px;}
.h4a{height:49.500000px;}
.h4d{height:49.536000px;}
.h41{height:50.796000px;}
.h5b{height:51.660000px;}
.h9{height:53.224453px;}
.h59{height:54.540000px;}
.h43{height:55.080000px;}
.h5c{height:55.260000px;}
.h53{height:55.440000px;}
.h54{height:55.476000px;}
.h26{height:55.800000px;}
.h46{height:56.700000px;}
.h58{height:58.860000px;}
.h33{height:59.400000px;}
.h38{height:59.436000px;}
.h1a{height:59.580000px;}
.h2d{height:60.120000px;}
.h21{height:61.056000px;}
.h35{height:63.000000px;}
.h3{height:63.500977px;}
.h22{height:64.620000px;}
.h8{height:65.884219px;}
.h27{height:66.027445px;}
.hc{height:67.565039px;}
.h52{height:74.340000px;}
.h4f{height:78.300000px;}
.h56{height:79.380000px;}
.h57{height:80.136000px;}
.h4e{height:82.836000px;}
.h48{height:84.996000px;}
.h4c{height:99.180000px;}
.h4b{height:100.620000px;}
.h5{height:112.536000px;}
.h31{height:143.280000px;}
.h1d{height:143.316000px;}
.h1f{height:143.460000px;}
.h2{height:146.736000px;}
.h32{height:163.980000px;}
.h15{height:167.070000px;}
.h20{height:167.610000px;}
.h30{height:184.530000px;}
.h1b{height:205.050000px;}
.h2f{height:267.015000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w38{width:16.740000px;}
.w1a{width:26.460000px;}
.w19{width:26.640000px;}
.w2c{width:45.900000px;}
.w3a{width:47.160000px;}
.w41{width:47.340000px;}
.w37{width:50.220000px;}
.w4a{width:50.400000px;}
.w31{width:50.580000px;}
.w48{width:50.760000px;}
.w34{width:52.380000px;}
.w2e{width:52.740000px;}
.w32{width:53.100000px;}
.w35{width:53.820000px;}
.w3f{width:53.856000px;}
.w45{width:54.000000px;}
.w46{width:54.036000px;}
.w2f{width:54.180000px;}
.w3c{width:54.216000px;}
.w3d{width:54.360000px;}
.w43{width:54.396000px;}
.w36{width:54.756000px;}
.w30{width:55.116000px;}
.w49{width:57.276000px;}
.w4c{width:57.456000px;}
.w47{width:57.636000px;}
.w4b{width:57.816000px;}
.w1c{width:58.680000px;}
.w13{width:58.860000px;}
.w25{width:69.660000px;}
.w29{width:72.180000px;}
.w20{width:72.360000px;}
.w22{width:74.340000px;}
.w26{width:81.180000px;}
.w10{width:81.720000px;}
.w28{width:82.656000px;}
.w24{width:84.996000px;}
.w2a{width:85.500000px;}
.w23{width:92.160000px;}
.wf{width:99.036000px;}
.w8{width:105.480000px;}
.wb{width:105.516000px;}
.wa{width:105.660000px;}
.w9{width:105.696000px;}
.w1f{width:109.116000px;}
.w18{width:111.240000px;}
.wd{width:112.500000px;}
.we{width:112.536000px;}
.w21{width:124.056000px;}
.w3{width:131.976000px;}
.w27{width:132.696000px;}
.w17{width:137.700000px;}
.w16{width:147.420000px;}
.w15{width:152.460000px;}
.w14{width:156.420000px;}
.w11{width:179.850000px;}
.w1d{width:182.190000px;}
.w6{width:189.030000px;}
.w1e{width:199.110000px;}
.w1b{width:265.710000px;}
.w33{width:313.815000px;}
.w2d{width:314.175000px;}
.w3e{width:321.915000px;}
.w3b{width:322.275000px;}
.w44{width:322.635000px;}
.w42{width:322.995000px;}
.w12{width:475.635000px;}
.w7{width:531.615000px;}
.w2b{width:627.945000px;}
.wc{width:634.605000px;}
.w39{width:643.065000px;}
.w40{width:643.965000px;}
.w2{width:654.450000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:1.365000px;}
.x32{left:4.215000px;}
.x2{left:8.100000px;}
.x2b{left:13.530000px;}
.x30{left:18.150000px;}
.x2d{left:21.315000px;}
.x2f{left:25.170000px;}
.x27{left:45.750000px;}
.x29{left:47.190000px;}
.x25{left:49.890000px;}
.x1{left:53.460000px;}
.x7{left:54.719987px;}
.xe{left:56.699987px;}
.xc{left:58.139987px;}
.x11{left:70.199987px;}
.x8{left:72.179987px;}
.x1e{left:75.239987px;}
.x4a{left:80.099987px;}
.x6{left:82.439987px;}
.x12{left:85.896000px;}
.x1f{left:88.776000px;}
.x43{left:93.456000px;}
.x3b{left:94.896000px;}
.xf{left:96.515987px;}
.x4b{left:101.555987px;}
.x56{left:102.636000px;}
.x60{left:105.336000px;}
.x10{left:108.035987px;}
.x3a{left:112.715987px;}
.x4f{left:116.136000px;}
.x4{left:118.290000px;}
.x18{left:129.276000px;}
.x4c{left:133.415987px;}
.x57{left:150.330000px;}
.x61{left:153.030000px;}
.x4d{left:160.409987px;}
.x50{left:162.390000px;}
.x24{left:187.020000px;}
.x26{left:189.000000px;}
.x2a{left:192.240000px;}
.x4e{left:216.029987px;}
.x28{left:226.829987px;}
.xb{left:234.929987px;}
.x19{left:242.490000px;}
.x20{left:269.355000px;}
.x44{left:272.055000px;}
.x13{left:275.655000px;}
.x9{left:307.154987px;}
.x22{left:309.854987px;}
.x42{left:315.434987px;}
.x45{left:342.435000px;}
.x1a{left:355.755000px;}
.x33{left:358.020000px;}
.x3c{left:361.335000px;}
.x31{left:366.840000px;}
.x23{left:373.754987px;}
.xd{left:378.614987px;}
.x14{left:381.855000px;}
.x2c{left:409.500000px;}
.x3d{left:420.915000px;}
.x46{left:424.335000px;}
.x36{left:428.400000px;}
.xa{left:446.504987px;}
.x37{left:466.560000px;}
.x1b{left:469.185000px;}
.x58{left:473.145000px;}
.x5d{left:474.225000px;}
.x62{left:475.845000px;}
.x51{left:476.925000px;}
.x34{left:487.260000px;}
.x15{left:488.265000px;}
.x38{left:504.720000px;}
.x59{left:527.685000px;}
.x5e{left:528.945000px;}
.x3f{left:530.745000px;}
.x47{left:557.745000px;}
.x35{left:562.500000px;}
.x1c{left:582.405000px;}
.x5f{left:583.485000px;}
.x52{left:584.565000px;}
.x16{left:594.645000px;}
.x3e{left:603.825000px;}
.x2e{left:618.300000px;}
.x5a{left:636.810000px;}
.x5b{left:637.890000px;}
.x53{left:640.050000px;}
.x48{left:641.310000px;}
.x63{left:642.930000px;}
.x1d{left:682.170000px;}
.x54{left:690.990000px;}
.x5c{left:692.610000px;}
.x64{left:694.050000px;}
.x17{left:701.070000px;}
.x3{left:707.910000px;}
.x49{left:714.210000px;}
.x40{left:728.610000px;}
.x55{left:744.450000px;}
.x21{left:745.710000px;}
.x41{left:790.169987px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls22{letter-spacing:-1.184000pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.239467pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:-0.185067pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls2b{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.033280pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.120533pt;}
.ls0{letter-spacing:0.133120pt;}
.lse{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.592000pt;}
.ls25{letter-spacing:5.712640pt;}
.ls29{letter-spacing:14.672640pt;}
.ls26{letter-spacing:22.992640pt;}
.ls19{letter-spacing:23.632640pt;}
.ls13{letter-spacing:26.832640pt;}
.ls1f{letter-spacing:27.472640pt;}
.ls28{letter-spacing:40.891307pt;}
.ls21{letter-spacing:40.912640pt;}
.ls2a{letter-spacing:41.040640pt;}
.ls27{letter-spacing:44.091307pt;}
.ls20{letter-spacing:44.112640pt;}
.ls1d{letter-spacing:54.352640pt;}
.ls1a{letter-spacing:101.712640pt;}
.ls24{letter-spacing:103.328000pt;}
.ls12{letter-spacing:137.888000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.ws16{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.416533pt;}
.ws15{word-spacing:-13.400533pt;}
.wsd{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws10{word-spacing:-13.312000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.096533pt;}
.wsc{word-spacing:-13.049067pt;}
.ws13{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.480533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._2e{margin-left:-5.991040pt;}
._32{margin-left:-4.894720pt;}
._1c{margin-left:-3.972907pt;}
._1d{margin-left:-2.880000pt;}
._15{margin-left:-1.961600pt;}
._0{margin-left:-0.960000pt;}
._f{width:0.987093pt;}
._1{width:1.973333pt;}
._10{width:2.990293pt;}
._13{width:4.643627pt;}
._16{width:5.661013pt;}
._14{width:7.140267pt;}
._11{width:8.695253pt;}
._6{width:9.600000pt;}
._12{width:10.593067pt;}
._18{width:12.080427pt;}
._1a{width:14.979840pt;}
._1b{width:16.581120pt;}
._31{width:18.126080pt;}
._26{width:19.016960pt;}
._23{width:20.610560pt;}
._22{width:22.381867pt;}
._21{width:23.638400pt;}
._2d{width:25.444480pt;}
._36{width:26.516693pt;}
._28{width:27.680000pt;}
._2b{width:29.375360pt;}
._2a{width:30.809600pt;}
._37{width:38.109227pt;}
._3d{width:41.217067pt;}
._3f{width:46.480000pt;}
._34{width:50.539307pt;}
._33{width:51.761493pt;}
._40{width:62.438187pt;}
._35{width:66.026453pt;}
._7{width:67.808853pt;}
._29{width:69.418667pt;}
._1e{width:82.720000pt;}
._25{width:85.629440pt;}
._27{width:88.732587pt;}
._2c{width:93.916160pt;}
._30{width:100.000000pt;}
._2f{width:103.328000pt;}
._3e{width:114.473600pt;}
._8{width:136.960000pt;}
._17{width:137.888000pt;}
._38{width:151.467307pt;}
._39{width:153.182720pt;}
._1f{width:155.808000pt;}
._24{width:157.394560pt;}
._3c{width:168.120747pt;}
._c{width:173.440000pt;}
._3a{width:176.938667pt;}
._3b{width:178.720000pt;}
._2{width:227.122347pt;}
._20{width:251.808000pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._19{width:394.927147pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:0.226667pt;}
.y127{bottom:0.253333pt;}
.y11e{bottom:1.693333pt;}
.y96{bottom:5.120000pt;}
.y1f9{bottom:5.146667pt;}
.ya3{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.yc5{bottom:5.760000pt;}
.y23d{bottom:6.720000pt;}
.y240{bottom:6.880000pt;}
.y122{bottom:7.453333pt;}
.yba{bottom:8.000000pt;}
.yfb{bottom:8.480000pt;}
.y1fb{bottom:9.600000pt;}
.y214{bottom:9.626667pt;}
.y125{bottom:9.693333pt;}
.y1fd{bottom:10.400000pt;}
.y6{bottom:11.040000pt;}
.y11a{bottom:11.453333pt;}
.y202{bottom:13.920000pt;}
.y20c{bottom:14.400000pt;}
.y208{bottom:15.200000pt;}
.y8{bottom:16.160000pt;}
.y242{bottom:16.480000pt;}
.y246{bottom:16.640000pt;}
.y257{bottom:18.080000pt;}
.y226{bottom:18.240000pt;}
.y228{bottom:18.400000pt;}
.y212{bottom:18.880000pt;}
.y26a{bottom:19.200000pt;}
.y120{bottom:19.586667pt;}
.y266{bottom:20.480000pt;}
.y219{bottom:20.800000pt;}
.y24c{bottom:20.960000pt;}
.y21d{bottom:21.600000pt;}
.y262{bottom:22.400000pt;}
.y157{bottom:22.720000pt;}
.y1f7{bottom:22.746667pt;}
.yc9{bottom:22.880000pt;}
.y25c{bottom:22.920000pt;}
.ybf{bottom:23.360000pt;}
.ybc{bottom:23.520000pt;}
.ye0{bottom:23.546667pt;}
.y1f5{bottom:24.320000pt;}
.yb8{bottom:26.240000pt;}
.y124{bottom:27.453333pt;}
.y254{bottom:29.280000pt;}
.y249{bottom:29.440000pt;}
.y238{bottom:31.200000pt;}
.y259{bottom:31.680000pt;}
.y25b{bottom:32.040000pt;}
.y236{bottom:33.120000pt;}
.y224{bottom:34.080000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.y11c{bottom:37.053333pt;}
.y1f1{bottom:40.320000pt;}
.y1f8{bottom:40.346667pt;}
.yc8{bottom:40.480000pt;}
.y155{bottom:40.960000pt;}
.y22c{bottom:41.120000pt;}
.yf3{bottom:41.760000pt;}
.yf8{bottom:44.960000pt;}
.yb{bottom:53.600000pt;}
.y22e{bottom:58.080000pt;}
.y225{bottom:58.106667pt;}
.y4{bottom:60.800000pt;}
.ydd{bottom:62.080000pt;}
.yd{bottom:69.280000pt;}
.ya{bottom:72.800000pt;}
.y22d{bottom:75.680000pt;}
.ydc{bottom:79.680000pt;}
.yb6{bottom:83.066667pt;}
.yf1{bottom:83.680000pt;}
.y3{bottom:85.626667pt;}
.y264{bottom:91.040000pt;}
.y118{bottom:92.480000pt;}
.y102{bottom:93.440000pt;}
.y1de{bottom:93.760000pt;}
.y3a{bottom:97.280000pt;}
.ydb{bottom:97.306667pt;}
.ye6{bottom:97.440000pt;}
.y94{bottom:98.080000pt;}
.yb2{bottom:98.240000pt;}
.ycf{bottom:99.200000pt;}
.y231{bottom:100.000000pt;}
.y24d{bottom:100.800000pt;}
.yb5{bottom:100.826667pt;}
.yf0{bottom:101.280000pt;}
.y211{bottom:101.600000pt;}
.y1a4{bottom:102.080000pt;}
.y287{bottom:103.520000pt;}
.y1ef{bottom:104.480000pt;}
.y68{bottom:106.080000pt;}
.y165{bottom:106.400000pt;}
.y1b0{bottom:107.840000pt;}
.y117{bottom:110.080000pt;}
.y101{bottom:111.200000pt;}
.y1dd{bottom:111.360000pt;}
.y2{bottom:111.706667pt;}
.y1ce{bottom:114.080000pt;}
.y16f{bottom:114.880000pt;}
.yda{bottom:114.906667pt;}
.y39{bottom:115.040000pt;}
.y17f{bottom:115.680000pt;}
.y93{bottom:115.840000pt;}
.y169{bottom:116.360000pt;}
.yc1{bottom:116.480000pt;}
.yce{bottom:116.800000pt;}
.yb4{bottom:118.426667pt;}
.yef{bottom:118.880000pt;}
.y1a3{bottom:119.680000pt;}
.y286{bottom:121.280000pt;}
.y1ee{bottom:122.080000pt;}
.y67{bottom:123.840000pt;}
.y154{bottom:124.000000pt;}
.y158{bottom:124.640000pt;}
.y1af{bottom:125.440000pt;}
.y213{bottom:127.520000pt;}
.y100{bottom:128.800000pt;}
.y1dc{bottom:129.120000pt;}
.y1cd{bottom:131.840000pt;}
.y38{bottom:132.640000pt;}
.y17e{bottom:133.280000pt;}
.y92{bottom:133.440000pt;}
.y168{bottom:133.960000pt;}
.ycd{bottom:134.560000pt;}
.ybe{bottom:134.906667pt;}
.y116{bottom:135.706667pt;}
.yb3{bottom:136.026667pt;}
.yee{bottom:136.480000pt;}
.y263{bottom:136.666667pt;}
.y1a2{bottom:137.306667pt;}
.y285{bottom:138.906667pt;}
.y1ed{bottom:139.866667pt;}
.y66{bottom:141.466667pt;}
.y153{bottom:141.626667pt;}
.y164{bottom:142.906667pt;}
.y1ae{bottom:143.066667pt;}
.y230{bottom:145.626667pt;}
.yff{bottom:146.426667pt;}
.y1db{bottom:146.746667pt;}
.y20f{bottom:148.506667pt;}
.y1cc{bottom:149.466667pt;}
.y37{bottom:150.266667pt;}
.y91{bottom:151.066667pt;}
.y167{bottom:151.560000pt;}
.y24b{bottom:151.706667pt;}
.ycc{bottom:152.160000pt;}
.yc0{bottom:153.146667pt;}
.y1a1{bottom:154.906667pt;}
.y284{bottom:156.506667pt;}
.y1ec{bottom:157.466667pt;}
.y65{bottom:159.066667pt;}
.y152{bottom:159.226667pt;}
.y1ad{bottom:160.666667pt;}
.y115{bottom:161.306667pt;}
.yfe{bottom:164.026667pt;}
.y1da{bottom:164.346667pt;}
.y1cb{bottom:167.066667pt;}
.y36{bottom:167.866667pt;}
.y22f{bottom:168.026667pt;}
.y90{bottom:168.666667pt;}
.ycb{bottom:169.760000pt;}
.ybb{bottom:171.386667pt;}
.y1a0{bottom:172.666667pt;}
.y1eb{bottom:175.066667pt;}
.y283{bottom:176.186667pt;}
.y64{bottom:176.666667pt;}
.y151{bottom:176.826667pt;}
.y1ac{bottom:178.266667pt;}
.y114{bottom:179.066667pt;}
.y163{bottom:179.546667pt;}
.yfd{bottom:181.626667pt;}
.y1d9{bottom:181.946667pt;}
.y210{bottom:182.106667pt;}
.y1ca{bottom:184.666667pt;}
.y35{bottom:185.466667pt;}
.y8f{bottom:186.266667pt;}
.ybd{bottom:189.786667pt;}
.y19f{bottom:190.266667pt;}
.y1ea{bottom:192.666667pt;}
.y282{bottom:193.786667pt;}
.y63{bottom:194.266667pt;}
.y150{bottom:194.426667pt;}
.y1ab{bottom:196.026667pt;}
.y162{bottom:197.786667pt;}
.yfc{bottom:199.386667pt;}
.y1d8{bottom:199.546667pt;}
.y1c9{bottom:202.266667pt;}
.y24a{bottom:202.586667pt;}
.y20e{bottom:203.066667pt;}
.y34{bottom:203.226667pt;}
.y8e{bottom:204.026667pt;}
.y113{bottom:204.666667pt;}
.y15a{bottom:207.066667pt;}
.y19e{bottom:207.866667pt;}
.yb7{bottom:208.026667pt;}
.y1e9{bottom:210.266667pt;}
.y281{bottom:211.386667pt;}
.y62{bottom:212.026667pt;}
.y14f{bottom:212.186667pt;}
.yed{bottom:212.506667pt;}
.y261{bottom:213.146667pt;}
.y161{bottom:216.186667pt;}
.y1d7{bottom:217.306667pt;}
.y1c8{bottom:220.026667pt;}
.y33{bottom:220.826667pt;}
.y8d{bottom:221.626667pt;}
.y159{bottom:224.826667pt;}
.y248{bottom:225.146667pt;}
.y19d{bottom:225.466667pt;}
.yb9{bottom:226.266667pt;}
.y1e8{bottom:228.026667pt;}
.y280{bottom:228.986667pt;}
.y61{bottom:229.626667pt;}
.y112{bottom:230.266667pt;}
.yfa{bottom:234.106667pt;}
.y160{bottom:234.426667pt;}
.y1d6{bottom:234.906667pt;}
.y260{bottom:235.546667pt;}
.y1c7{bottom:237.626667pt;}
.y14e{bottom:237.786667pt;}
.y32{bottom:238.426667pt;}
.y19c{bottom:238.586667pt;}
.y8c{bottom:239.226667pt;}
.y20d{bottom:242.266667pt;}
.y1e7{bottom:245.626667pt;}
.y27f{bottom:246.746667pt;}
.y60{bottom:247.226667pt;}
.yb1{bottom:247.386667pt;}
.y111{bottom:247.866667pt;}
.yf9{bottom:252.346667pt;}
.y1d5{bottom:252.506667pt;}
.y15f{bottom:252.666667pt;}
.y1c6{bottom:255.226667pt;}
.y14d{bottom:255.386667pt;}
.y31{bottom:256.026667pt;}
.y8b{bottom:256.826667pt;}
.y19b{bottom:256.986667pt;}
.y22b{bottom:257.946667pt;}
.y25f{bottom:258.106667pt;}
.y18c{bottom:259.546667pt;}
.y1e6{bottom:263.226667pt;}
.y27e{bottom:264.346667pt;}
.y5f{bottom:264.826667pt;}
.y110{bottom:265.466667pt;}
.y1d4{bottom:270.106667pt;}
.yf6{bottom:270.746667pt;}
.yb0{bottom:270.906667pt;}
.y15e{bottom:271.066667pt;}
.y1c5{bottom:272.826667pt;}
.y30{bottom:273.626667pt;}
.y8a{bottom:274.426667pt;}
.y19a{bottom:275.226667pt;}
.y18b{bottom:277.146667pt;}
.y20b{bottom:279.226667pt;}
.y1e5{bottom:280.826667pt;}
.y14c{bottom:280.986667pt;}
.y27d{bottom:281.946667pt;}
.y10f{bottom:283.226667pt;}
.y1d3{bottom:287.706667pt;}
.yaf{bottom:288.506667pt;}
.yf7{bottom:288.986667pt;}
.y15d{bottom:289.306667pt;}
.y5e{bottom:290.426667pt;}
.y2f{bottom:291.386667pt;}
.y89{bottom:292.186667pt;}
.y247{bottom:292.986667pt;}
.y199{bottom:293.466667pt;}
.y18a{bottom:294.746667pt;}
.y1e4{bottom:298.426667pt;}
.y14b{bottom:298.586667pt;}
.y27c{bottom:299.546667pt;}
.y20a{bottom:300.186667pt;}
.y10e{bottom:300.826667pt;}
.y1d2{bottom:305.466667pt;}
.yae{bottom:306.106667pt;}
.yf2{bottom:307.226667pt;}
.y15c{bottom:307.706667pt;}
.y5d{bottom:308.186667pt;}
.y2e{bottom:308.986667pt;}
.y88{bottom:309.786667pt;}
.y198{bottom:311.866667pt;}
.y189{bottom:312.346667pt;}
.y245{bottom:315.386667pt;}
.y1e3{bottom:316.186667pt;}
.y14a{bottom:316.346667pt;}
.y27b{bottom:317.146667pt;}
.y25e{bottom:317.786667pt;}
.y10d{bottom:318.426667pt;}
.y207{bottom:322.586667pt;}
.y1d1{bottom:323.066667pt;}
.yad{bottom:323.706667pt;}
.yf5{bottom:325.626667pt;}
.y5c{bottom:325.786667pt;}
.y15b{bottom:325.946667pt;}
.y2d{bottom:326.586667pt;}
.y87{bottom:327.386667pt;}
.y188{bottom:330.106667pt;}
.y1e2{bottom:333.786667pt;}
.y149{bottom:333.946667pt;}
.y27a{bottom:334.906667pt;}
.y25d{bottom:335.386667pt;}
.y10c{bottom:336.026667pt;}
.y1d0{bottom:340.666667pt;}
.y209{bottom:340.986667pt;}
.yac{bottom:341.466667pt;}
.y5b{bottom:343.386667pt;}
.yf4{bottom:343.866667pt;}
.y2c{bottom:344.186667pt;}
.y86{bottom:344.986667pt;}
.y187{bottom:347.706667pt;}
.y197{bottom:348.506667pt;}
.y22a{bottom:349.146667pt;}
.y1e1{bottom:351.386667pt;}
.y279{bottom:352.506667pt;}
.y10b{bottom:353.626667pt;}
.y1cf{bottom:356.066667pt;}
.y244{bottom:357.506667pt;}
.yab{bottom:359.106667pt;}
.y148{bottom:359.586667pt;}
.y17d{bottom:360.866667pt;}
.y5a{bottom:361.026667pt;}
.y2b{bottom:361.826667pt;}
.ye5{bottom:362.146667pt;}
.y85{bottom:362.626667pt;}
.y196{bottom:366.786667pt;}
.y1e0{bottom:369.026667pt;}
.y278{bottom:370.146667pt;}
.y10a{bottom:371.426667pt;}
.y229{bottom:371.586667pt;}
.y206{bottom:374.786667pt;}
.yaa{bottom:376.706667pt;}
.y59{bottom:378.626667pt;}
.y186{bottom:379.106667pt;}
.y2a{bottom:379.586667pt;}
.y243{bottom:380.066667pt;}
.y84{bottom:380.386667pt;}
.yeb{bottom:380.546667pt;}
.y195{bottom:385.026667pt;}
.y147{bottom:385.186667pt;}
.y1df{bottom:386.626667pt;}
.y109{bottom:386.786667pt;}
.y277{bottom:387.746667pt;}
.ya9{bottom:394.306667pt;}
.y205{bottom:395.586667pt;}
.y58{bottom:396.386667pt;}
.y29{bottom:397.186667pt;}
.y185{bottom:397.506667pt;}
.y1aa{bottom:397.986667pt;}
.y156{bottom:398.466667pt;}
.yec{bottom:398.786667pt;}
.y146{bottom:402.786667pt;}
.y194{bottom:403.426667pt;}
.y108{bottom:404.386667pt;}
.y276{bottom:405.346667pt;}
.y83{bottom:405.986667pt;}
.ya8{bottom:411.906667pt;}
.y57{bottom:413.986667pt;}
.y28{bottom:414.786667pt;}
.y1c2{bottom:415.586667pt;}
.y184{bottom:415.746667pt;}
.y204{bottom:416.386667pt;}
.ye9{bottom:417.026667pt;}
.y227{bottom:417.186667pt;}
.y145{bottom:420.546667pt;}
.y25a{bottom:421.506667pt;}
.y193{bottom:421.666667pt;}
.y107{bottom:421.986667pt;}
.y241{bottom:422.146667pt;}
.y275{bottom:423.106667pt;}
.y82{bottom:423.586667pt;}
.ya7{bottom:429.666667pt;}
.y56{bottom:431.586667pt;}
.y27{bottom:432.386667pt;}
.y1c1{bottom:433.186667pt;}
.y183{bottom:434.146667pt;}
.yea{bottom:435.426667pt;}
.y144{bottom:438.146667pt;}
.y201{bottom:438.946667pt;}
.y106{bottom:439.586667pt;}
.y274{bottom:440.706667pt;}
.y81{bottom:441.186667pt;}
.y258{bottom:443.906667pt;}
.y12c{bottom:446.080000pt;}
.ya6{bottom:447.266667pt;}
.y55{bottom:449.186667pt;}
.y26{bottom:449.986667pt;}
.y1c0{bottom:450.786667pt;}
.y182{bottom:452.386667pt;}
.ye7{bottom:453.666667pt;}
.y203{bottom:454.946667pt;}
.y143{bottom:455.746667pt;}
.y105{bottom:457.186667pt;}
.y273{bottom:458.306667pt;}
.y80{bottom:458.786667pt;}
.y192{bottom:462.786667pt;}
.y23f{bottom:464.066667pt;}
.ya5{bottom:464.866667pt;}
.y54{bottom:466.786667pt;}
.y25{bottom:467.746667pt;}
.y1bf{bottom:468.546667pt;}
.y181{bottom:470.626667pt;}
.ye8{bottom:472.066667pt;}
.y142{bottom:473.346667pt;}
.y104{bottom:474.786667pt;}
.y200{bottom:475.906667pt;}
.y7f{bottom:476.546667pt;}
.ya4{bottom:477.986667pt;}
.y191{bottom:480.386667pt;}
.y11f{bottom:482.880000pt;}
.y53{bottom:484.546667pt;}
.y24{bottom:485.346667pt;}
.y1be{bottom:486.146667pt;}
.y23e{bottom:486.626667pt;}
.y180{bottom:489.026667pt;}
.yd9{bottom:490.306667pt;}
.y103{bottom:492.546667pt;}
.y272{bottom:493.506667pt;}
.y7e{bottom:494.146667pt;}
.ya2{bottom:496.226667pt;}
.y190{bottom:497.986667pt;}
.y1fe{bottom:498.306667pt;}
.y141{bottom:498.946667pt;}
.y1c4{bottom:502.146667pt;}
.y23{bottom:502.946667pt;}
.y1bd{bottom:503.746667pt;}
.y176{bottom:507.266667pt;}
.ye4{bottom:508.546667pt;}
.y52{bottom:510.146667pt;}
.y271{bottom:511.266667pt;}
.y12d{bottom:511.680000pt;}
.y7d{bottom:511.746667pt;}
.ya1{bottom:514.626667pt;}
.y18f{bottom:515.586667pt;}
.y256{bottom:516.066667pt;}
.y1c3{bottom:519.746667pt;}
.y22{bottom:520.546667pt;}
.y1bc{bottom:521.346667pt;}
.y140{bottom:524.706667pt;}
.y17c{bottom:525.506667pt;}
.ye3{bottom:526.946667pt;}
.y51{bottom:527.746667pt;}
.y270{bottom:528.866667pt;}
.y1a9{bottom:529.346667pt;}
.y223{bottom:530.946667pt;}
.y1ff{bottom:532.066667pt;}
.ya0{bottom:532.866667pt;}
.y18e{bottom:533.346667pt;}
.y7c{bottom:537.346667pt;}
.y21{bottom:538.146667pt;}
.y1bb{bottom:538.946667pt;}
.y23c{bottom:541.186667pt;}
.y13f{bottom:542.306667pt;}
.y17b{bottom:543.906667pt;}
.ye2{bottom:545.186667pt;}
.y50{bottom:545.346667pt;}
.y26f{bottom:546.466667pt;}
.y1a8{bottom:546.946667pt;}
.y18d{bottom:547.906667pt;}
.y9f{bottom:551.266667pt;}
.y129{bottom:552.480000pt;}
.y1fc{bottom:552.866667pt;}
.y7b{bottom:554.946667pt;}
.y20{bottom:555.906667pt;}
.y1ba{bottom:556.706667pt;}
.y13e{bottom:559.906667pt;}
.y255{bottom:561.186667pt;}
.y17a{bottom:562.146667pt;}
.y4f{bottom:562.946667pt;}
.ydf{bottom:563.426667pt;}
.y23b{bottom:563.586667pt;}
.y26e{bottom:564.066667pt;}
.y1a7{bottom:564.706667pt;}
.y9e{bottom:569.506667pt;}
.y7a{bottom:572.706667pt;}
.y1f{bottom:573.506667pt;}
.y1b9{bottom:574.306667pt;}
.y12e{bottom:574.880000pt;}
.y1f6{bottom:575.426667pt;}
.y13d{bottom:577.533333pt;}
.y179{bottom:580.413333pt;}
.y11b{bottom:580.480000pt;}
.y4e{bottom:580.733333pt;}
.y26d{bottom:581.693333pt;}
.ye1{bottom:581.853333pt;}
.y1a6{bottom:582.333333pt;}
.y253{bottom:583.773333pt;}
.y23a{bottom:586.173333pt;}
.y123{bottom:587.680000pt;}
.y9d{bottom:587.773333pt;}
.y79{bottom:590.333333pt;}
.y1e{bottom:591.133333pt;}
.y1b8{bottom:591.933333pt;}
.y13c{bottom:595.133333pt;}
.y4d{bottom:598.333333pt;}
.y178{bottom:598.813333pt;}
.y26c{bottom:599.453333pt;}
.y121{bottom:599.680000pt;}
.y11d{bottom:599.773333pt;}
.y1a5{bottom:599.933333pt;}
.yde{bottom:600.093333pt;}
.y128{bottom:602.880000pt;}
.y78{bottom:607.933333pt;}
.y222{bottom:608.253333pt;}
.y1d{bottom:608.733333pt;}
.y1fa{bottom:609.053333pt;}
.y9c{bottom:611.293333pt;}
.y26b{bottom:612.573333pt;}
.y13b{bottom:612.893333pt;}
.y4c{bottom:615.933333pt;}
.y177{bottom:617.053333pt;}
.y1b7{bottom:617.533333pt;}
.yca{bottom:618.493333pt;}
.y77{bottom:625.533333pt;}
.y1c{bottom:626.333333pt;}
.y9b{bottom:628.893333pt;}
.y1f4{bottom:630.013333pt;}
.y13a{bottom:630.493333pt;}
.y221{bottom:630.653333pt;}
.y4b{bottom:633.533333pt;}
.y1b6{bottom:635.133333pt;}
.y16e{bottom:635.453333pt;}
.yd8{bottom:636.733333pt;}
.y9a{bottom:642.013333pt;}
.y76{bottom:643.133333pt;}
.y1b{bottom:643.933333pt;}
.y239{bottom:645.853333pt;}
.y4a{bottom:651.133333pt;}
.y252{bottom:651.613333pt;}
.y1b5{bottom:652.893333pt;}
.y220{bottom:653.053333pt;}
.y175{bottom:653.693333pt;}
.yd6{bottom:654.973333pt;}
.y139{bottom:656.093333pt;}
.y126{bottom:658.080000pt;}
.y237{bottom:658.973333pt;}
.y99{bottom:660.413333pt;}
.y75{bottom:660.893333pt;}
.y1a{bottom:661.693333pt;}
.y269{bottom:663.453333pt;}
.y49{bottom:668.893333pt;}
.y1b4{bottom:670.493333pt;}
.y174{bottom:671.933333pt;}
.yd7{bottom:673.373333pt;}
.y74{bottom:678.493333pt;}
.y98{bottom:678.653333pt;}
.y19{bottom:679.293333pt;}
.y138{bottom:681.693333pt;}
.y48{bottom:686.493333pt;}
.y1f3{bottom:687.613333pt;}
.y1b3{bottom:688.093333pt;}
.y173{bottom:690.333333pt;}
.yd4{bottom:691.613333pt;}
.y119{bottom:692.480000pt;}
.y73{bottom:696.093333pt;}
.y18{bottom:696.893333pt;}
.y251{bottom:697.213333pt;}
.y137{bottom:699.293333pt;}
.y12b{bottom:702.080000pt;}
.y47{bottom:704.093333pt;}
.y1b2{bottom:705.693333pt;}
.y172{bottom:708.573333pt;}
.yd5{bottom:709.853333pt;}
.y1f2{bottom:710.013333pt;}
.y268{bottom:711.133333pt;}
.y21f{bottom:712.893333pt;}
.y72{bottom:713.693333pt;}
.y97{bottom:715.293333pt;}
.y136{bottom:717.053333pt;}
.y17{bottom:719.133333pt;}
.y250{bottom:719.613333pt;}
.y46{bottom:721.693333pt;}
.y1b1{bottom:723.293333pt;}
.y21c{bottom:726.013333pt;}
.y171{bottom:726.813333pt;}
.yd2{bottom:728.253333pt;}
.y235{bottom:730.333333pt;}
.y71{bottom:731.293333pt;}
.y16{bottom:732.093333pt;}
.y1f0{bottom:732.573333pt;}
.y95{bottom:733.533333pt;}
.y135{bottom:734.653333pt;}
.y45{bottom:739.293333pt;}
.y170{bottom:745.213333pt;}
.yd3{bottom:746.493333pt;}
.y70{bottom:749.053333pt;}
.y15{bottom:754.493333pt;}
.y267{bottom:755.933333pt;}
.y44{bottom:757.053333pt;}
.y21e{bottom:757.213333pt;}
.y134{bottom:760.253333pt;}
.y166{bottom:763.453333pt;}
.yd0{bottom:764.733333pt;}
.y6f{bottom:766.653333pt;}
.y14{bottom:767.933333pt;}
.y24f{bottom:774.173333pt;}
.y43{bottom:774.653333pt;}
.y21b{bottom:778.173333pt;}
.y16d{bottom:781.693333pt;}
.yd1{bottom:783.133333pt;}
.y6e{bottom:784.253333pt;}
.y133{bottom:785.853333pt;}
.y13{bottom:786.813333pt;}
.y42{bottom:792.253333pt;}
.y16c{bottom:800.133333pt;}
.y218{bottom:800.613333pt;}
.y265{bottom:801.093333pt;}
.yc7{bottom:801.413333pt;}
.y6d{bottom:801.893333pt;}
.y132{bottom:803.493333pt;}
.y234{bottom:805.573333pt;}
.y12{bottom:807.653333pt;}
.y41{bottom:809.893333pt;}
.y16b{bottom:818.373333pt;}
.y6c{bottom:819.493333pt;}
.y131{bottom:821.253333pt;}
.y40{bottom:827.493333pt;}
.y233{bottom:827.973333pt;}
.y24e{bottom:828.773333pt;}
.y21a{bottom:830.373333pt;}
.y11{bottom:835.973333pt;}
.y16a{bottom:836.773333pt;}
.y6b{bottom:837.253333pt;}
.y3f{bottom:845.253333pt;}
.y130{bottom:846.853333pt;}
.y216{bottom:851.173333pt;}
.y6a{bottom:854.853333pt;}
.yc4{bottom:855.013333pt;}
.y3e{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y69{bottom:872.453333pt;}
.yc6{bottom:873.253333pt;}
.y232{bottom:873.573333pt;}
.y3d{bottom:880.453333pt;}
.y217{bottom:884.933333pt;}
.y12f{bottom:890.053333pt;}
.yc3{bottom:891.653333pt;}
.yf{bottom:892.293333pt;}
.y3c{bottom:898.053333pt;}
.y215{bottom:905.733333pt;}
.yc2{bottom:909.893333pt;}
.y3b{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.851250pt;}
.h37{height:3.360000pt;}
.h2b{height:10.240000pt;}
.h3c{height:11.200000pt;}
.h3b{height:14.400000pt;}
.h40{height:15.200000pt;}
.h3f{height:16.800000pt;}
.h12{height:17.600000pt;}
.h13{height:17.632000pt;}
.h14{height:17.760000pt;}
.h1e{height:17.792000pt;}
.h36{height:19.200000pt;}
.h3e{height:19.232000pt;}
.hb{height:19.360000pt;}
.h29{height:20.000000pt;}
.h17{height:20.480000pt;}
.h34{height:20.800000pt;}
.h45{height:20.832000pt;}
.h23{height:20.960000pt;}
.h25{height:24.000000pt;}
.h42{height:24.320000pt;}
.he{height:24.991875pt;}
.h44{height:28.000000pt;}
.h47{height:29.600000pt;}
.h7{height:29.760000pt;}
.h2c{height:31.008437pt;}
.h3a{height:32.000000pt;}
.h39{height:32.032000pt;}
.h28{height:33.600000pt;}
.h2e{height:35.200000pt;}
.h19{height:35.840000pt;}
.h18{height:36.000000pt;}
.h1c{height:36.032000pt;}
.hf{height:37.479688pt;}
.h3d{height:37.632000pt;}
.hd{height:38.413438pt;}
.h24{height:38.672812pt;}
.h16{height:38.720000pt;}
.h2a{height:40.000000pt;}
.h11{height:40.021563pt;}
.h50{height:40.320000pt;}
.h51{height:40.480000pt;}
.h4{height:41.543750pt;}
.ha{height:42.578750pt;}
.h55{height:43.520000pt;}
.h5a{height:43.552000pt;}
.h10{height:43.782500pt;}
.h49{height:43.840000pt;}
.h4a{height:44.000000pt;}
.h4d{height:44.032000pt;}
.h41{height:45.152000pt;}
.h5b{height:45.920000pt;}
.h9{height:47.310625pt;}
.h59{height:48.480000pt;}
.h43{height:48.960000pt;}
.h5c{height:49.120000pt;}
.h53{height:49.280000pt;}
.h54{height:49.312000pt;}
.h26{height:49.600000pt;}
.h46{height:50.400000pt;}
.h58{height:52.320000pt;}
.h33{height:52.800000pt;}
.h38{height:52.832000pt;}
.h1a{height:52.960000pt;}
.h2d{height:53.440000pt;}
.h21{height:54.272000pt;}
.h35{height:56.000000pt;}
.h3{height:56.445312pt;}
.h22{height:57.440000pt;}
.h8{height:58.563750pt;}
.h27{height:58.691063pt;}
.hc{height:60.057813pt;}
.h52{height:66.080000pt;}
.h4f{height:69.600000pt;}
.h56{height:70.560000pt;}
.h57{height:71.232000pt;}
.h4e{height:73.632000pt;}
.h48{height:75.552000pt;}
.h4c{height:88.160000pt;}
.h4b{height:89.440000pt;}
.h5{height:100.032000pt;}
.h31{height:127.360000pt;}
.h1d{height:127.392000pt;}
.h1f{height:127.520000pt;}
.h2{height:130.432000pt;}
.h32{height:145.760000pt;}
.h15{height:148.506667pt;}
.h20{height:148.986667pt;}
.h30{height:164.026667pt;}
.h1b{height:182.266667pt;}
.h2f{height:237.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w38{width:14.880000pt;}
.w1a{width:23.520000pt;}
.w19{width:23.680000pt;}
.w2c{width:40.800000pt;}
.w3a{width:41.920000pt;}
.w41{width:42.080000pt;}
.w37{width:44.640000pt;}
.w4a{width:44.800000pt;}
.w31{width:44.960000pt;}
.w48{width:45.120000pt;}
.w34{width:46.560000pt;}
.w2e{width:46.880000pt;}
.w32{width:47.200000pt;}
.w35{width:47.840000pt;}
.w3f{width:47.872000pt;}
.w45{width:48.000000pt;}
.w46{width:48.032000pt;}
.w2f{width:48.160000pt;}
.w3c{width:48.192000pt;}
.w3d{width:48.320000pt;}
.w43{width:48.352000pt;}
.w36{width:48.672000pt;}
.w30{width:48.992000pt;}
.w49{width:50.912000pt;}
.w4c{width:51.072000pt;}
.w47{width:51.232000pt;}
.w4b{width:51.392000pt;}
.w1c{width:52.160000pt;}
.w13{width:52.320000pt;}
.w25{width:61.920000pt;}
.w29{width:64.160000pt;}
.w20{width:64.320000pt;}
.w22{width:66.080000pt;}
.w26{width:72.160000pt;}
.w10{width:72.640000pt;}
.w28{width:73.472000pt;}
.w24{width:75.552000pt;}
.w2a{width:76.000000pt;}
.w23{width:81.920000pt;}
.wf{width:88.032000pt;}
.w8{width:93.760000pt;}
.wb{width:93.792000pt;}
.wa{width:93.920000pt;}
.w9{width:93.952000pt;}
.w1f{width:96.992000pt;}
.w18{width:98.880000pt;}
.wd{width:100.000000pt;}
.we{width:100.032000pt;}
.w21{width:110.272000pt;}
.w3{width:117.312000pt;}
.w27{width:117.952000pt;}
.w17{width:122.400000pt;}
.w16{width:131.040000pt;}
.w15{width:135.520000pt;}
.w14{width:139.040000pt;}
.w11{width:159.866667pt;}
.w1d{width:161.946667pt;}
.w6{width:168.026667pt;}
.w1e{width:176.986667pt;}
.w1b{width:236.186667pt;}
.w33{width:278.946667pt;}
.w2d{width:279.266667pt;}
.w3e{width:286.146667pt;}
.w3b{width:286.466667pt;}
.w44{width:286.786667pt;}
.w42{width:287.106667pt;}
.w12{width:422.786667pt;}
.w7{width:472.546667pt;}
.w2b{width:558.173333pt;}
.wc{width:564.093333pt;}
.w39{width:571.613333pt;}
.w40{width:572.413333pt;}
.w2{width:581.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:1.213333pt;}
.x32{left:3.746667pt;}
.x2{left:7.200000pt;}
.x2b{left:12.026667pt;}
.x30{left:16.133333pt;}
.x2d{left:18.946667pt;}
.x2f{left:22.373333pt;}
.x27{left:40.666667pt;}
.x29{left:41.946667pt;}
.x25{left:44.346667pt;}
.x1{left:47.520000pt;}
.x7{left:48.639988pt;}
.xe{left:50.399988pt;}
.xc{left:51.679988pt;}
.x11{left:62.399988pt;}
.x8{left:64.159988pt;}
.x1e{left:66.879988pt;}
.x4a{left:71.199988pt;}
.x6{left:73.279988pt;}
.x12{left:76.352000pt;}
.x1f{left:78.912000pt;}
.x43{left:83.072000pt;}
.x3b{left:84.352000pt;}
.xf{left:85.791988pt;}
.x4b{left:90.271988pt;}
.x56{left:91.232000pt;}
.x60{left:93.632000pt;}
.x10{left:96.031988pt;}
.x3a{left:100.191988pt;}
.x4f{left:103.232000pt;}
.x4{left:105.146667pt;}
.x18{left:114.912000pt;}
.x4c{left:118.591988pt;}
.x57{left:133.626667pt;}
.x61{left:136.026667pt;}
.x4d{left:142.586655pt;}
.x50{left:144.346667pt;}
.x24{left:166.240000pt;}
.x26{left:168.000000pt;}
.x2a{left:170.880000pt;}
.x4e{left:192.026655pt;}
.x28{left:201.626655pt;}
.xb{left:208.826655pt;}
.x19{left:215.546667pt;}
.x20{left:239.426667pt;}
.x44{left:241.826667pt;}
.x13{left:245.026667pt;}
.x9{left:273.026655pt;}
.x22{left:275.426655pt;}
.x42{left:280.386655pt;}
.x45{left:304.386667pt;}
.x1a{left:316.226667pt;}
.x33{left:318.240000pt;}
.x3c{left:321.186667pt;}
.x31{left:326.080000pt;}
.x23{left:332.226655pt;}
.xd{left:336.546655pt;}
.x14{left:339.426667pt;}
.x2c{left:364.000000pt;}
.x3d{left:374.146667pt;}
.x46{left:377.186667pt;}
.x36{left:380.800000pt;}
.xa{left:396.893322pt;}
.x37{left:414.720000pt;}
.x1b{left:417.053333pt;}
.x58{left:420.573333pt;}
.x5d{left:421.533333pt;}
.x62{left:422.973333pt;}
.x51{left:423.933333pt;}
.x34{left:433.120000pt;}
.x15{left:434.013333pt;}
.x38{left:448.640000pt;}
.x59{left:469.053333pt;}
.x5e{left:470.173333pt;}
.x3f{left:471.773333pt;}
.x47{left:495.773333pt;}
.x35{left:500.000000pt;}
.x1c{left:517.693333pt;}
.x5f{left:518.653333pt;}
.x52{left:519.613333pt;}
.x16{left:528.573333pt;}
.x3e{left:536.733333pt;}
.x2e{left:549.600000pt;}
.x5a{left:566.053333pt;}
.x5b{left:567.013333pt;}
.x53{left:568.933333pt;}
.x48{left:570.053333pt;}
.x63{left:571.493333pt;}
.x1d{left:606.373333pt;}
.x54{left:614.213333pt;}
.x5c{left:615.653333pt;}
.x64{left:616.933333pt;}
.x17{left:623.173333pt;}
.x3{left:629.253333pt;}
.x49{left:634.853333pt;}
.x40{left:647.653333pt;}
.x55{left:661.733333pt;}
.x21{left:662.853333pt;}
.x41{left:702.373322pt;}
.x5{left:737.280000pt;}
}




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