
    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_a01620af14609567c6538024.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_2b4d6d8c2f56d9609afb4dde.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c0e869fffedbd75171a0ccca.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7f9dc6e697a2ba82d8368d14.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_0d71569cd5569ebb20a19723.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_28c5252f31f84b2c7421266c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_24a93283aac624bd5ebb75b5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_33017e3d694f5d0d309b5ad1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_76560738739a439db4ee4d65.woff')format("woff");}.ff9{font-family:ff9;line-height:0.835938;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_9293e2ce7da19fadfe0c0c0d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.001953;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_f48547c33fdb0b2f066364b1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.895996;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);}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-2.160000px;}
.ls2{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-1.008000px;}
.ls13{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.069600px;}
.ls1b{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.174000px;}
.lsf{letter-spacing:0.256200px;}
.ls1e{letter-spacing:0.274800px;}
.lse{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.288600px;}
.ls6{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.720000px;}
.ls18{letter-spacing:3.054240px;}
.ls10{letter-spacing:3.600000px;}
.ls12{letter-spacing:3.720000px;}
.ls11{letter-spacing:7.920000px;}
.ls7{letter-spacing:16.506720px;}
.ls14{letter-spacing:22.320000px;}
.lsa{letter-spacing:33.960000px;}
.ls5{letter-spacing:46.170720px;}
.ls9{letter-spacing:194.376000px;}
.ls16{letter-spacing:197.405760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.993280px;}
.wsd{word-spacing:-13.780560px;}
.wsa{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.436160px;}
.ws9{word-spacing:-12.186000px;}
.ws1{word-spacing:0.000000px;}
._1f{margin-left:-2.448000px;}
._0{margin-left:-1.347840px;}
._1{width:1.010880px;}
._11{width:2.065440px;}
._10{width:3.528000px;}
._2a{width:4.543680px;}
._2{width:5.544000px;}
._3{width:6.762240px;}
._5{width:8.075520px;}
._12{width:9.144000px;}
._17{width:10.181280px;}
._b{width:11.200320px;}
._a{width:12.867840px;}
._16{width:14.256000px;}
._18{width:16.128000px;}
._26{width:17.151120px;}
._29{width:18.174960px;}
._f{width:19.440000px;}
._8{width:21.108000px;}
._7{width:22.176000px;}
._9{width:23.964000px;}
._d{width:25.755840px;}
._e{width:26.778720px;}
._c{width:27.987840px;}
._22{width:29.026560px;}
._1c{width:30.864000px;}
._1d{width:31.968000px;}
._13{width:33.387840px;}
._4{width:34.416000px;}
._20{width:35.760000px;}
._21{width:36.960000px;}
._19{width:38.376000px;}
._1a{width:39.453120px;}
._23{width:41.425200px;}
._14{width:42.480000px;}
._15{width:43.764000px;}
._25{width:51.931440px;}
._24{width:53.419680px;}
._27{width:62.449200px;}
._28{width:64.414800px;}
._1e{width:176.376000px;}
._1b{width:194.376000px;}
._2c{width:197.405760px;}
._2b{width:322.440000px;}
._6{width:846.156000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yec{bottom:3.420000px;}
.y10b{bottom:3.585000px;}
.yef{bottom:3.600000px;}
.y110{bottom:3.765000px;}
.y116{bottom:3.772500px;}
.yf1{bottom:3.780000px;}
.y127{bottom:4.140000px;}
.y129{bottom:4.500000px;}
.y159{bottom:4.530000px;}
.y1be{bottom:18.885000px;}
.y1c4{bottom:18.892500px;}
.y1aa{bottom:18.900000px;}
.y1bb{bottom:18.930000px;}
.y1b2{bottom:19.080000px;}
.y1e7{bottom:19.125000px;}
.yea{bottom:20.700000px;}
.yee{bottom:20.880000px;}
.y102{bottom:20.910000px;}
.y10f{bottom:21.045000px;}
.y115{bottom:21.046500px;}
.yf9{bottom:21.060000px;}
.y12e{bottom:25.200000px;}
.y131{bottom:25.230000px;}
.y1bf{bottom:37.245000px;}
.y1c5{bottom:37.246500px;}
.y1ae{bottom:37.260000px;}
.y1d9{bottom:37.290000px;}
.y1bd{bottom:37.425000px;}
.y1c3{bottom:37.426500px;}
.y1ad{bottom:37.440000px;}
.y1d8{bottom:37.470000px;}
.y1d1{bottom:37.485000px;}
.y112{bottom:38.145000px;}
.y10a{bottom:38.190000px;}
.y10e{bottom:38.325000px;}
.y114{bottom:38.326500px;}
.y100{bottom:38.340000px;}
.y137{bottom:45.900000px;}
.y1a9{bottom:52.200000px;}
.y105{bottom:55.440000px;}
.y1c8{bottom:55.470000px;}
.y10d{bottom:55.605000px;}
.y1cb{bottom:55.620000px;}
.y1c7{bottom:55.650000px;}
.y1d2{bottom:55.665000px;}
.y1ca{bottom:55.800000px;}
.y1d0{bottom:55.845000px;}
.y19b{bottom:57.636000px;}
.y1a8{bottom:70.785000px;}
.y108{bottom:72.720000px;}
.y1d6{bottom:73.800000px;}
.y1cd{bottom:73.980000px;}
.y19a{bottom:76.896000px;}
.y1a7{bottom:88.965000px;}
.y107{bottom:90.000000px;}
.y1ce{bottom:92.160000px;}
.y1cc{bottom:92.340000px;}
.y199{bottom:93.276000px;}
.y1a6{bottom:107.325000px;}
.y1c2{bottom:120.463500px;}
.y1a5{bottom:125.685000px;}
.ybe{bottom:132.516000px;}
.y113{bottom:135.583500px;}
.yd9{bottom:141.696000px;}
.y143{bottom:142.056000px;}
.y17f{bottom:143.676000px;}
.y9a{bottom:147.276000px;}
.y70{bottom:149.076000px;}
.ybd{bottom:153.570000px;}
.y1a4{bottom:158.805000px;}
.yd8{bottom:162.390000px;}
.y142{bottom:162.750000px;}
.y17e{bottom:164.370000px;}
.y99{bottom:167.970000px;}
.y6f{bottom:169.770000px;}
.y1c1{bottom:172.845000px;}
.ybc{bottom:174.270000px;}
.y16d{bottom:176.070000px;}
.yd7{bottom:183.090000px;}
.y141{bottom:183.450000px;}
.y17d{bottom:185.070000px;}
.y111{bottom:187.425000px;}
.y98{bottom:188.670000px;}
.y6e{bottom:190.470000px;}
.ybb{bottom:194.970000px;}
.y16c{bottom:196.950000px;}
.yd6{bottom:203.790000px;}
.y140{bottom:204.150000px;}
.y17c{bottom:205.770000px;}
.y97{bottom:209.370000px;}
.y6d{bottom:211.170000px;}
.yba{bottom:215.670000px;}
.y16b{bottom:217.650000px;}
.yd5{bottom:224.490000px;}
.y13f{bottom:224.850000px;}
.y1c0{bottom:225.225000px;}
.y17b{bottom:226.110000px;}
.y96{bottom:230.070000px;}
.y1f8{bottom:230.430000px;}
.y6c{bottom:231.870000px;}
.y198{bottom:233.670000px;}
.y41{bottom:235.650000px;}
.yb9{bottom:236.370000px;}
.y16a{bottom:238.350000px;}
.y10c{bottom:239.085000px;}
.yd4{bottom:245.190000px;}
.y13e{bottom:245.550000px;}
.y95{bottom:250.770000px;}
.y6b{bottom:252.570000px;}
.y197{bottom:254.370000px;}
.y40{bottom:256.530000px;}
.yb8{bottom:257.070000px;}
.y169{bottom:259.050000px;}
.y1bc{bottom:259.245000px;}
.y17a{bottom:262.110000px;}
.y1f7{bottom:265.710000px;}
.yd3{bottom:265.890000px;}
.y13d{bottom:266.250000px;}
.y171{bottom:271.470000px;}
.y196{bottom:275.070000px;}
.y3f{bottom:277.230000px;}
.yb7{bottom:277.770000px;}
.y168{bottom:279.750000px;}
.y6a{bottom:281.730000px;}
.y94{bottom:286.050000px;}
.yd2{bottom:286.590000px;}
.y13c{bottom:286.950000px;}
.y195{bottom:295.770000px;}
.y179{bottom:297.750000px;}
.y3e{bottom:297.930000px;}
.yb6{bottom:298.470000px;}
.y167{bottom:300.450000px;}
.y1f6{bottom:300.810000px;}
.y69{bottom:301.170000px;}
.yd1{bottom:306.930000px;}
.y170{bottom:307.110000px;}
.ye6{bottom:307.290000px;}
.y109{bottom:308.205000px;}
.y1ba{bottom:311.625000px;}
.y194{bottom:316.470000px;}
.y1f5{bottom:317.205000px;}
.y3d{bottom:318.675000px;}
.yb5{bottom:319.215000px;}
.y166{bottom:321.195000px;}
.y68{bottom:321.915000px;}
.y93{bottom:322.095000px;}
.y13b{bottom:322.455000px;}
.yd0{bottom:328.035000px;}
.y193{bottom:337.215000px;}
.y13a{bottom:338.835000px;}
.y3c{bottom:339.015000px;}
.y178{bottom:339.375000px;}
.yb4{bottom:339.915000px;}
.y165{bottom:341.895000px;}
.y67{bottom:342.615000px;}
.y92{bottom:342.975000px;}
.y1b9{bottom:345.675000px;}
.ycf{bottom:348.735000px;}
.y192{bottom:357.915000px;}
.y106{bottom:359.895000px;}
.y177{bottom:360.075000px;}
.y139{bottom:360.435000px;}
.yb3{bottom:360.615000px;}
.y164{bottom:362.595000px;}
.y66{bottom:363.315000px;}
.y91{bottom:363.675000px;}
.yce{bottom:369.435000px;}
.y1f4{bottom:369.615000px;}
.y3b{bottom:374.835000px;}
.y191{bottom:378.615000px;}
.y1b8{bottom:379.875000px;}
.yb2{bottom:381.315000px;}
.y138{bottom:381.855000px;}
.y163{bottom:383.295000px;}
.y65{bottom:384.015000px;}
.y90{bottom:384.375000px;}
.ycd{bottom:390.135000px;}
.y176{bottom:395.535000px;}
.y3a{bottom:395.715000px;}
.y190{bottom:399.315000px;}
.y162{bottom:403.995000px;}
.y64{bottom:404.715000px;}
.y8f{bottom:405.075000px;}
.ycc{bottom:410.835000px;}
.yb1{bottom:411.015000px;}
.y1b7{bottom:413.895000px;}
.y39{bottom:416.415000px;}
.y18f{bottom:420.015000px;}
.y1f3{bottom:421.995000px;}
.y136{bottom:423.255000px;}
.y161{bottom:424.695000px;}
.y63{bottom:425.415000px;}
.y8e{bottom:425.775000px;}
.ycb{bottom:431.535000px;}
.yb0{bottom:431.715000px;}
.y38{bottom:437.115000px;}
.y18e{bottom:440.715000px;}
.y160{bottom:445.035000px;}
.y62{bottom:446.115000px;}
.y8d{bottom:446.475000px;}
.y1dc{bottom:448.995000px;}
.yca{bottom:452.235000px;}
.yaf{bottom:452.415000px;}
.y1f2{bottom:456.015000px;}
.y37{bottom:457.815000px;}
.y18d{bottom:461.415000px;}
.y104{bottom:463.395000px;}
.y15f{bottom:465.735000px;}
.y1b6{bottom:466.275000px;}
.y61{bottom:466.815000px;}
.y8c{bottom:467.175000px;}
.yc9{bottom:472.935000px;}
.yae{bottom:473.115000px;}
.y36{bottom:478.515000px;}
.y18c{bottom:482.115000px;}
.y1db{bottom:484.095000px;}
.y135{bottom:485.355000px;}
.y15e{bottom:486.435000px;}
.y60{bottom:487.515000px;}
.y8b{bottom:487.875000px;}
.y1f1{bottom:490.035000px;}
.yc8{bottom:493.635000px;}
.yad{bottom:493.815000px;}
.y35{bottom:499.215000px;}
.y1b5{bottom:500.295000px;}
.y1da{bottom:502.095000px;}
.y18b{bottom:502.815000px;}
.y15d{bottom:502.995000px;}
.y134{bottom:506.055000px;}
.y5f{bottom:508.215000px;}
.y8a{bottom:508.575000px;}
.yc7{bottom:514.335000px;}
.yac{bottom:514.515000px;}
.y34{bottom:519.915000px;}
.y18a{bottom:523.515000px;}
.y15c{bottom:523.695000px;}
.y1f0{bottom:524.235000px;}
.y133{bottom:526.755000px;}
.y5e{bottom:528.915000px;}
.ye5{bottom:529.095000px;}
.y89{bottom:529.275000px;}
.y103{bottom:532.335000px;}
.y1b4{bottom:534.315000px;}
.y175{bottom:534.855000px;}
.yc6{bottom:535.035000px;}
.yab{bottom:535.215000px;}
.y33{bottom:540.615000px;}
.y17{bottom:540.975000px;}
.y189{bottom:544.215000px;}
.y15b{bottom:545.115000px;}
.y132{bottom:547.455000px;}
.y5d{bottom:549.615000px;}
.y16f{bottom:549.795000px;}
.y88{bottom:549.975000px;}
.y1d7{bottom:554.475000px;}
.yc5{bottom:555.735000px;}
.yaa{bottom:555.915000px;}
.y1ef{bottom:558.255000px;}
.y32{bottom:561.315000px;}
.y16{bottom:561.675000px;}
.y188{bottom:564.915000px;}
.y15a{bottom:566.535000px;}
.y130{bottom:568.155000px;}
.y1b3{bottom:568.335000px;}
.y5c{bottom:570.315000px;}
.y87{bottom:570.675000px;}
.yc4{bottom:576.435000px;}
.ya9{bottom:576.615000px;}
.y31{bottom:582.015000px;}
.y15{bottom:582.735000px;}
.y101{bottom:584.175000px;}
.y187{bottom:585.615000px;}
.y158{bottom:587.235000px;}
.y86{bottom:591.405000px;}
.yc3{bottom:596.985000px;}
.ya8{bottom:597.345000px;}
.y5b{bottom:600.045000px;}
.y1b1{bottom:602.565000px;}
.y30{bottom:602.745000px;}
.y14{bottom:603.465000px;}
.y186{bottom:606.345000px;}
.y1d5{bottom:606.885000px;}
.y157{bottom:607.965000px;}
.y12d{bottom:610.305000px;}
.y1ee{bottom:610.665000px;}
.y85{bottom:612.105000px;}
.yc2{bottom:617.685000px;}
.ya7{bottom:618.045000px;}
.yff{bottom:618.585000px;}
.y5a{bottom:620.745000px;}
.y2f{bottom:623.445000px;}
.y13{bottom:624.165000px;}
.y185{bottom:627.045000px;}
.y156{bottom:628.665000px;}
.y12f{bottom:631.005000px;}
.y84{bottom:632.805000px;}
.y1b0{bottom:636.585000px;}
.yc1{bottom:638.385000px;}
.ya6{bottom:638.745000px;}
.y59{bottom:641.445000px;}
.y12{bottom:644.865000px;}
.y184{bottom:647.745000px;}
.y155{bottom:649.365000px;}
.y12c{bottom:652.425000px;}
.y83{bottom:653.505000px;}
.y2e{bottom:658.905000px;}
.y174{bottom:659.085000px;}
.ya5{bottom:659.445000px;}
.y58{bottom:662.145000px;}
.y1ed{bottom:664.125000px;}
.y183{bottom:668.445000px;}
.yfe{bottom:670.425000px;}
.y1af{bottom:670.605000px;}
.y154{bottom:670.785000px;}
.y12b{bottom:673.125000px;}
.yc0{bottom:673.665000px;}
.y82{bottom:673.845000px;}
.ye4{bottom:674.205000px;}
.y2d{bottom:679.425000px;}
.ya4{bottom:680.145000px;}
.y11{bottom:680.505000px;}
.y57{bottom:682.845000px;}
.y182{bottom:689.145000px;}
.y153{bottom:692.385000px;}
.y12a{bottom:693.825000px;}
.y173{bottom:694.725000px;}
.ye3{bottom:694.905000px;}
.y1d4{bottom:695.805000px;}
.y1ec{bottom:699.225000px;}
.y2c{bottom:700.485000px;}
.ya3{bottom:700.845000px;}
.y56{bottom:703.545000px;}
.y1ac{bottom:704.625000px;}
.yfd{bottom:704.985000px;}
.y81{bottom:709.665000px;}
.y181{bottom:709.845000px;}
.y152{bottom:713.085000px;}
.y128{bottom:714.525000px;}
.ye2{bottom:715.605000px;}
.y1eb{bottom:715.785000px;}
.y10{bottom:716.145000px;}
.y2b{bottom:721.185000px;}
.ya2{bottom:721.545000px;}
.y80{bottom:730.545000px;}
.y55{bottom:733.245000px;}
.y151{bottom:733.785000px;}
.y126{bottom:735.945000px;}
.ye1{bottom:736.305000px;}
.yfc{bottom:739.365000px;}
.y2a{bottom:741.885000px;}
.ya1{bottom:742.245000px;}
.y1ea{bottom:749.805000px;}
.y7f{bottom:751.245000px;}
.yf{bottom:751.785000px;}
.y54{bottom:753.945000px;}
.y150{bottom:754.485000px;}
.yfb{bottom:756.645000px;}
.ye0{bottom:757.005000px;}
.y29{bottom:762.585000px;}
.ya0{bottom:762.945000px;}
.y1d3{bottom:766.545000px;}
.y7e{bottom:771.945000px;}
.y53{bottom:774.645000px;}
.y14f{bottom:775.905000px;}
.y125{bottom:776.805000px;}
.ydf{bottom:777.705000px;}
.y1ab{bottom:778.065000px;}
.y28{bottom:783.285000px;}
.y9f{bottom:783.645000px;}
.y1e9{bottom:783.825000px;}
.ye{bottom:787.245000px;}
.yfa{bottom:791.205000px;}
.y16e{bottom:792.465000px;}
.y7d{bottom:792.645000px;}
.y1a3{bottom:793.725000px;}
.y52{bottom:795.345000px;}
.y14e{bottom:797.325000px;}
.yde{bottom:798.405000px;}
.y27{bottom:803.985000px;}
.y9e{bottom:804.345000px;}
.y124{bottom:812.445000px;}
.y7c{bottom:813.345000px;}
.y51{bottom:816.045000px;}
.y1e8{bottom:817.845000px;}
.y14d{bottom:818.025000px;}
.ydd{bottom:819.105000px;}
.yd{bottom:823.245000px;}
.y26{bottom:824.685000px;}
.y9d{bottom:825.045000px;}
.yf8{bottom:825.585000px;}
.y123{bottom:833.325000px;}
.y7b{bottom:834.045000px;}
.y50{bottom:836.745000px;}
.y1cf{bottom:837.105000px;}
.y14c{bottom:838.725000px;}
.ydc{bottom:839.805000px;}
.y9c{bottom:845.745000px;}
.y1e6{bottom:851.865000px;}
.y122{bottom:854.025000px;}
.y7a{bottom:854.745000px;}
.y4f{bottom:857.445000px;}
.yc{bottom:858.930000px;}
.y14b{bottom:859.470000px;}
.yf7{bottom:860.190000px;}
.y25{bottom:860.370000px;}
.ydb{bottom:860.550000px;}
.y9b{bottom:866.490000px;}
.y121{bottom:874.770000px;}
.y79{bottom:875.490000px;}
.yf6{bottom:877.470000px;}
.y14a{bottom:880.170000px;}
.y24{bottom:881.250000px;}
.y4e{bottom:887.190000px;}
.yb{bottom:894.390000px;}
.yf5{bottom:894.750000px;}
.y120{bottom:895.470000px;}
.y78{bottom:896.190000px;}
.y149{bottom:900.870000px;}
.y23{bottom:901.950000px;}
.y1e5{bottom:904.830000px;}
.y4d{bottom:907.890000px;}
.y11f{bottom:916.170000px;}
.y77{bottom:916.890000px;}
.y148{bottom:921.570000px;}
.y22{bottom:922.650000px;}
.y1e4{bottom:925.170000px;}
.y4c{bottom:928.590000px;}
.yf4{bottom:929.130000px;}
.ya{bottom:930.390000px;}
.y11e{bottom:936.870000px;}
.y76{bottom:937.590000px;}
.y147{bottom:942.990000px;}
.y21{bottom:943.350000px;}
.y1e3{bottom:945.330000px;}
.yf3{bottom:946.410000px;}
.y4b{bottom:949.290000px;}
.y11d{bottom:957.570000px;}
.ybf{bottom:957.930000px;}
.yda{bottom:958.110000px;}
.y75{bottom:958.290000px;}
.yf2{bottom:963.690000px;}
.y20{bottom:964.050000px;}
.y146{bottom:964.410000px;}
.y1e2{bottom:965.310000px;}
.y9{bottom:966.390000px;}
.y4a{bottom:969.990000px;}
.y11c{bottom:978.270000px;}
.y74{bottom:978.990000px;}
.yf0{bottom:980.970000px;}
.y1f{bottom:984.750000px;}
.y1a2{bottom:986.370000px;}
.y8{bottom:990.510000px;}
.y49{bottom:990.690000px;}
.yed{bottom:998.250000px;}
.y11b{bottom:998.970000px;}
.y73{bottom:999.690000px;}
.y1e1{bottom:1000.410000px;}
.y145{bottom:1005.270000px;}
.y1e{bottom:1005.450000px;}
.y1a1{bottom:1006.710000px;}
.y7{bottom:1014.810000px;}
.y1c9{bottom:1015.170000px;}
.y48{bottom:1020.390000px;}
.y1d{bottom:1026.150000px;}
.y1a0{bottom:1026.870000px;}
.ye9{bottom:1033.350000px;}
.y1e0{bottom:1035.510000px;}
.y11a{bottom:1040.010000px;}
.y47{bottom:1041.090000px;}
.y1c{bottom:1046.850000px;}
.y19f{bottom:1047.030000px;}
.yeb{bottom:1050.630000px;}
.y6{bottom:1054.230000px;}
.y119{bottom:1057.290000px;}
.y72{bottom:1061.430000px;}
.y144{bottom:1061.610000px;}
.y46{bottom:1061.790000px;}
.y19e{bottom:1067.190000px;}
.y1b{bottom:1067.550000px;}
.y1df{bottom:1070.610000px;}
.y71{bottom:1082.130000px;}
.y172{bottom:1082.310000px;}
.y45{bottom:1082.490000px;}
.y1c6{bottom:1085.910000px;}
.ye8{bottom:1088.070000px;}
.y1a{bottom:1088.250000px;}
.y118{bottom:1091.850000px;}
.y5{bottom:1093.110000px;}
.y19d{bottom:1102.470000px;}
.y44{bottom:1103.190000px;}
.y1de{bottom:1105.710000px;}
.y19{bottom:1108.950000px;}
.y4{bottom:1117.230000px;}
.ye7{bottom:1123.710000px;}
.y43{bottom:1123.890000px;}
.y19c{bottom:1139.580000px;}
.y1dd{bottom:1141.020000px;}
.y3{bottom:1141.380000px;}
.y117{bottom:1143.540000px;}
.y18{bottom:1144.080000px;}
.y180{bottom:1144.260000px;}
.y42{bottom:1144.620000px;}
.y2{bottom:1174.140000px;}
.y1{bottom:1194.300000px;}
.hc{height:17.265000px;}
.h13{height:17.280000px;}
.h22{height:20.685000px;}
.h1e{height:20.700000px;}
.h25{height:20.722500px;}
.h26{height:20.730000px;}
.h31{height:33.285000px;}
.h2f{height:33.300000px;}
.h32{height:33.321000px;}
.h3b{height:33.502500px;}
.h30{height:33.510000px;}
.hd{height:34.365000px;}
.h11{height:34.380000px;}
.h15{height:34.410000px;}
.ha{height:34.545000px;}
.h12{height:34.560000px;}
.h10{height:34.582500px;}
.h27{height:38.759766px;}
.h24{height:41.385000px;}
.h20{height:41.400000px;}
.h21{height:41.430000px;}
.h2c{height:42.894141px;}
.h2{height:47.545312px;}
.h2d{height:49.284492px;}
.h1b{height:51.645000px;}
.h33{height:51.652500px;}
.h2e{height:51.660000px;}
.h19{height:51.681000px;}
.h1d{height:51.690000px;}
.h16{height:51.825000px;}
.h1c{height:51.832500px;}
.h14{height:51.840000px;}
.h2a{height:54.628594px;}
.hf{height:58.651172px;}
.h29{height:59.378906px;}
.hb{height:60.226875px;}
.h23{height:62.085000px;}
.he{height:62.211094px;}
.h7{height:64.546875px;}
.h8{height:65.010937px;}
.h17{height:68.925000px;}
.h1a{height:69.105000px;}
.h38{height:69.840000px;}
.h34{height:69.870000px;}
.h35{height:70.005000px;}
.h39{height:70.020000px;}
.h37{height:70.042500px;}
.h9{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.h28{height:74.004654px;}
.h1f{height:74.953125px;}
.h4{height:82.676953px;}
.h3{height:84.898125px;}
.h3a{height:88.200000px;}
.h18{height:103.485000px;}
.h36{height:106.545000px;}
.h2b{height:173.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:22.305000px;}
.w13{width:23.025000px;}
.w14{width:23.205000px;}
.w1f{width:31.125000px;}
.w20{width:34.905000px;}
.w17{width:41.745000px;}
.w18{width:41.781000px;}
.w19{width:47.685000px;}
.w6{width:51.285000px;}
.w8{width:53.085000px;}
.w9{width:53.265000px;}
.w1c{width:55.245000px;}
.w16{width:55.605000px;}
.we{width:63.705000px;}
.w7{width:64.281000px;}
.wc{width:74.370000px;}
.w5{width:75.810000px;}
.w1d{width:80.265000px;}
.w1a{width:80.625000px;}
.wb{width:85.125000px;}
.w4{width:106.365000px;}
.w3{width:115.581000px;}
.wd{width:159.510000px;}
.w1b{width:376.624500px;}
.w15{width:377.344500px;}
.w2{width:467.923500px;}
.wa{width:531.630000px;}
.w11{width:533.250000px;}
.w1e{width:539.010000px;}
.w10{width:648.270000px;}
.wf{width:648.630000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:7.020000px;}
.xf{left:8.098500px;}
.x28{left:10.800000px;}
.x1c{left:12.405000px;}
.x1a{left:14.040000px;}
.x19{left:16.020000px;}
.x3b{left:17.085000px;}
.x15{left:18.345000px;}
.x17{left:19.440000px;}
.x11{left:21.585000px;}
.x1d{left:24.660000px;}
.x22{left:26.640000px;}
.x14{left:30.420000px;}
.x20{left:34.020000px;}
.x1b{left:35.134500px;}
.x3c{left:36.360000px;}
.x26{left:56.143500px;}
.xe{left:63.721500px;}
.x24{left:70.740000px;}
.x2b{left:119.566500px;}
.x2{left:127.656000px;}
.x3{left:134.856000px;}
.x7{left:151.410000px;}
.xd{left:163.650000px;}
.xc{left:170.130000px;}
.x6{left:180.390000px;}
.x1e{left:186.328500px;}
.x35{left:188.668500px;}
.x3d{left:200.730000px;}
.x9{left:222.330000px;}
.xa{left:241.230000px;}
.x34{left:250.590000px;}
.x23{left:265.708500px;}
.x2a{left:271.695000px;}
.x33{left:328.215000px;}
.x4{left:361.875000px;}
.xb{left:364.575000px;}
.x8{left:372.675000px;}
.x3f{left:384.735000px;}
.x29{left:416.055000px;}
.x32{left:418.755000px;}
.x5{left:446.475000px;}
.x36{left:496.920000px;}
.x10{left:531.660000px;}
.x37{left:553.260000px;}
.x16{left:582.960000px;}
.x38{left:595.920000px;}
.x39{left:638.430000px;}
.x12{left:647.250000px;}
.x2c{left:655.530000px;}
.x1f{left:659.310000px;}
.x2e{left:678.570000px;}
.x3a{left:686.850000px;}
.x3e{left:691.530000px;}
.x18{left:700.350000px;}
.x2f{left:702.510000px;}
.x27{left:712.590000px;}
.x30{left:726.270000px;}
.x21{left:744.450000px;}
.x25{left:748.770000px;}
.x31{left:750.210000px;}
.x13{left:753.630000px;}
.x1{left:757.230000px;}
@media print{
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-1.920000pt;}
.ls2{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.896000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.061867pt;}
.ls1b{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.154667pt;}
.lsf{letter-spacing:0.227733pt;}
.ls1e{letter-spacing:0.244267pt;}
.lse{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.256533pt;}
.ls6{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls18{letter-spacing:2.714880pt;}
.ls10{letter-spacing:3.200000pt;}
.ls12{letter-spacing:3.306667pt;}
.ls11{letter-spacing:7.040000pt;}
.ls7{letter-spacing:14.672640pt;}
.ls14{letter-spacing:19.840000pt;}
.lsa{letter-spacing:30.186667pt;}
.ls5{letter-spacing:41.040640pt;}
.ls9{letter-spacing:172.778667pt;}
.ls16{letter-spacing:175.471787pt;}
.ws7{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.327360pt;}
.wsd{word-spacing:-12.249387pt;}
.wsa{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.943253pt;}
.ws9{word-spacing:-10.832000pt;}
.ws1{word-spacing:0.000000pt;}
._1f{margin-left:-2.176000pt;}
._0{margin-left:-1.198080pt;}
._1{width:0.898560pt;}
._11{width:1.835947pt;}
._10{width:3.136000pt;}
._2a{width:4.038827pt;}
._2{width:4.928000pt;}
._3{width:6.010880pt;}
._5{width:7.178240pt;}
._12{width:8.128000pt;}
._17{width:9.050027pt;}
._b{width:9.955840pt;}
._a{width:11.438080pt;}
._16{width:12.672000pt;}
._18{width:14.336000pt;}
._26{width:15.245440pt;}
._29{width:16.155520pt;}
._f{width:17.280000pt;}
._8{width:18.762667pt;}
._7{width:19.712000pt;}
._9{width:21.301333pt;}
._d{width:22.894080pt;}
._e{width:23.803307pt;}
._c{width:24.878080pt;}
._22{width:25.801387pt;}
._1c{width:27.434667pt;}
._1d{width:28.416000pt;}
._13{width:29.678080pt;}
._4{width:30.592000pt;}
._20{width:31.786667pt;}
._21{width:32.853333pt;}
._19{width:34.112000pt;}
._1a{width:35.069440pt;}
._23{width:36.822400pt;}
._14{width:37.760000pt;}
._15{width:38.901333pt;}
._25{width:46.161280pt;}
._24{width:47.484160pt;}
._27{width:55.510400pt;}
._28{width:57.257600pt;}
._1e{width:156.778667pt;}
._1b{width:172.778667pt;}
._2c{width:175.471787pt;}
._2b{width:286.613333pt;}
._6{width:752.138667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:3.040000pt;}
.y10b{bottom:3.186667pt;}
.yef{bottom:3.200000pt;}
.y110{bottom:3.346667pt;}
.y116{bottom:3.353333pt;}
.yf1{bottom:3.360000pt;}
.y127{bottom:3.680000pt;}
.y129{bottom:4.000000pt;}
.y159{bottom:4.026667pt;}
.y1be{bottom:16.786667pt;}
.y1c4{bottom:16.793333pt;}
.y1aa{bottom:16.800000pt;}
.y1bb{bottom:16.826667pt;}
.y1b2{bottom:16.960000pt;}
.y1e7{bottom:17.000000pt;}
.yea{bottom:18.400000pt;}
.yee{bottom:18.560000pt;}
.y102{bottom:18.586667pt;}
.y10f{bottom:18.706667pt;}
.y115{bottom:18.708000pt;}
.yf9{bottom:18.720000pt;}
.y12e{bottom:22.400000pt;}
.y131{bottom:22.426667pt;}
.y1bf{bottom:33.106667pt;}
.y1c5{bottom:33.108000pt;}
.y1ae{bottom:33.120000pt;}
.y1d9{bottom:33.146667pt;}
.y1bd{bottom:33.266667pt;}
.y1c3{bottom:33.268000pt;}
.y1ad{bottom:33.280000pt;}
.y1d8{bottom:33.306667pt;}
.y1d1{bottom:33.320000pt;}
.y112{bottom:33.906667pt;}
.y10a{bottom:33.946667pt;}
.y10e{bottom:34.066667pt;}
.y114{bottom:34.068000pt;}
.y100{bottom:34.080000pt;}
.y137{bottom:40.800000pt;}
.y1a9{bottom:46.400000pt;}
.y105{bottom:49.280000pt;}
.y1c8{bottom:49.306667pt;}
.y10d{bottom:49.426667pt;}
.y1cb{bottom:49.440000pt;}
.y1c7{bottom:49.466667pt;}
.y1d2{bottom:49.480000pt;}
.y1ca{bottom:49.600000pt;}
.y1d0{bottom:49.640000pt;}
.y19b{bottom:51.232000pt;}
.y1a8{bottom:62.920000pt;}
.y108{bottom:64.640000pt;}
.y1d6{bottom:65.600000pt;}
.y1cd{bottom:65.760000pt;}
.y19a{bottom:68.352000pt;}
.y1a7{bottom:79.080000pt;}
.y107{bottom:80.000000pt;}
.y1ce{bottom:81.920000pt;}
.y1cc{bottom:82.080000pt;}
.y199{bottom:82.912000pt;}
.y1a6{bottom:95.400000pt;}
.y1c2{bottom:107.078667pt;}
.y1a5{bottom:111.720000pt;}
.ybe{bottom:117.792000pt;}
.y113{bottom:120.518667pt;}
.yd9{bottom:125.952000pt;}
.y143{bottom:126.272000pt;}
.y17f{bottom:127.712000pt;}
.y9a{bottom:130.912000pt;}
.y70{bottom:132.512000pt;}
.ybd{bottom:136.506667pt;}
.y1a4{bottom:141.160000pt;}
.yd8{bottom:144.346667pt;}
.y142{bottom:144.666667pt;}
.y17e{bottom:146.106667pt;}
.y99{bottom:149.306667pt;}
.y6f{bottom:150.906667pt;}
.y1c1{bottom:153.640000pt;}
.ybc{bottom:154.906667pt;}
.y16d{bottom:156.506667pt;}
.yd7{bottom:162.746667pt;}
.y141{bottom:163.066667pt;}
.y17d{bottom:164.506667pt;}
.y111{bottom:166.600000pt;}
.y98{bottom:167.706667pt;}
.y6e{bottom:169.306667pt;}
.ybb{bottom:173.306667pt;}
.y16c{bottom:175.066667pt;}
.yd6{bottom:181.146667pt;}
.y140{bottom:181.466667pt;}
.y17c{bottom:182.906667pt;}
.y97{bottom:186.106667pt;}
.y6d{bottom:187.706667pt;}
.yba{bottom:191.706667pt;}
.y16b{bottom:193.466667pt;}
.yd5{bottom:199.546667pt;}
.y13f{bottom:199.866667pt;}
.y1c0{bottom:200.200000pt;}
.y17b{bottom:200.986667pt;}
.y96{bottom:204.506667pt;}
.y1f8{bottom:204.826667pt;}
.y6c{bottom:206.106667pt;}
.y198{bottom:207.706667pt;}
.y41{bottom:209.466667pt;}
.yb9{bottom:210.106667pt;}
.y16a{bottom:211.866667pt;}
.y10c{bottom:212.520000pt;}
.yd4{bottom:217.946667pt;}
.y13e{bottom:218.266667pt;}
.y95{bottom:222.906667pt;}
.y6b{bottom:224.506667pt;}
.y197{bottom:226.106667pt;}
.y40{bottom:228.026667pt;}
.yb8{bottom:228.506667pt;}
.y169{bottom:230.266667pt;}
.y1bc{bottom:230.440000pt;}
.y17a{bottom:232.986667pt;}
.y1f7{bottom:236.186667pt;}
.yd3{bottom:236.346667pt;}
.y13d{bottom:236.666667pt;}
.y171{bottom:241.306667pt;}
.y196{bottom:244.506667pt;}
.y3f{bottom:246.426667pt;}
.yb7{bottom:246.906667pt;}
.y168{bottom:248.666667pt;}
.y6a{bottom:250.426667pt;}
.y94{bottom:254.266667pt;}
.yd2{bottom:254.746667pt;}
.y13c{bottom:255.066667pt;}
.y195{bottom:262.906667pt;}
.y179{bottom:264.666667pt;}
.y3e{bottom:264.826667pt;}
.yb6{bottom:265.306667pt;}
.y167{bottom:267.066667pt;}
.y1f6{bottom:267.386667pt;}
.y69{bottom:267.706667pt;}
.yd1{bottom:272.826667pt;}
.y170{bottom:272.986667pt;}
.ye6{bottom:273.146667pt;}
.y109{bottom:273.960000pt;}
.y1ba{bottom:277.000000pt;}
.y194{bottom:281.306667pt;}
.y1f5{bottom:281.960000pt;}
.y3d{bottom:283.266667pt;}
.yb5{bottom:283.746667pt;}
.y166{bottom:285.506667pt;}
.y68{bottom:286.146667pt;}
.y93{bottom:286.306667pt;}
.y13b{bottom:286.626667pt;}
.yd0{bottom:291.586667pt;}
.y193{bottom:299.746667pt;}
.y13a{bottom:301.186667pt;}
.y3c{bottom:301.346667pt;}
.y178{bottom:301.666667pt;}
.yb4{bottom:302.146667pt;}
.y165{bottom:303.906667pt;}
.y67{bottom:304.546667pt;}
.y92{bottom:304.866667pt;}
.y1b9{bottom:307.266667pt;}
.ycf{bottom:309.986667pt;}
.y192{bottom:318.146667pt;}
.y106{bottom:319.906667pt;}
.y177{bottom:320.066667pt;}
.y139{bottom:320.386667pt;}
.yb3{bottom:320.546667pt;}
.y164{bottom:322.306667pt;}
.y66{bottom:322.946667pt;}
.y91{bottom:323.266667pt;}
.yce{bottom:328.386667pt;}
.y1f4{bottom:328.546667pt;}
.y3b{bottom:333.186667pt;}
.y191{bottom:336.546667pt;}
.y1b8{bottom:337.666667pt;}
.yb2{bottom:338.946667pt;}
.y138{bottom:339.426667pt;}
.y163{bottom:340.706667pt;}
.y65{bottom:341.346667pt;}
.y90{bottom:341.666667pt;}
.ycd{bottom:346.786667pt;}
.y176{bottom:351.586667pt;}
.y3a{bottom:351.746667pt;}
.y190{bottom:354.946667pt;}
.y162{bottom:359.106667pt;}
.y64{bottom:359.746667pt;}
.y8f{bottom:360.066667pt;}
.ycc{bottom:365.186667pt;}
.yb1{bottom:365.346667pt;}
.y1b7{bottom:367.906667pt;}
.y39{bottom:370.146667pt;}
.y18f{bottom:373.346667pt;}
.y1f3{bottom:375.106667pt;}
.y136{bottom:376.226667pt;}
.y161{bottom:377.506667pt;}
.y63{bottom:378.146667pt;}
.y8e{bottom:378.466667pt;}
.ycb{bottom:383.586667pt;}
.yb0{bottom:383.746667pt;}
.y38{bottom:388.546667pt;}
.y18e{bottom:391.746667pt;}
.y160{bottom:395.586667pt;}
.y62{bottom:396.546667pt;}
.y8d{bottom:396.866667pt;}
.y1dc{bottom:399.106667pt;}
.yca{bottom:401.986667pt;}
.yaf{bottom:402.146667pt;}
.y1f2{bottom:405.346667pt;}
.y37{bottom:406.946667pt;}
.y18d{bottom:410.146667pt;}
.y104{bottom:411.906667pt;}
.y15f{bottom:413.986667pt;}
.y1b6{bottom:414.466667pt;}
.y61{bottom:414.946667pt;}
.y8c{bottom:415.266667pt;}
.yc9{bottom:420.386667pt;}
.yae{bottom:420.546667pt;}
.y36{bottom:425.346667pt;}
.y18c{bottom:428.546667pt;}
.y1db{bottom:430.306667pt;}
.y135{bottom:431.426667pt;}
.y15e{bottom:432.386667pt;}
.y60{bottom:433.346667pt;}
.y8b{bottom:433.666667pt;}
.y1f1{bottom:435.586667pt;}
.yc8{bottom:438.786667pt;}
.yad{bottom:438.946667pt;}
.y35{bottom:443.746667pt;}
.y1b5{bottom:444.706667pt;}
.y1da{bottom:446.306667pt;}
.y18b{bottom:446.946667pt;}
.y15d{bottom:447.106667pt;}
.y134{bottom:449.826667pt;}
.y5f{bottom:451.746667pt;}
.y8a{bottom:452.066667pt;}
.yc7{bottom:457.186667pt;}
.yac{bottom:457.346667pt;}
.y34{bottom:462.146667pt;}
.y18a{bottom:465.346667pt;}
.y15c{bottom:465.506667pt;}
.y1f0{bottom:465.986667pt;}
.y133{bottom:468.226667pt;}
.y5e{bottom:470.146667pt;}
.ye5{bottom:470.306667pt;}
.y89{bottom:470.466667pt;}
.y103{bottom:473.186667pt;}
.y1b4{bottom:474.946667pt;}
.y175{bottom:475.426667pt;}
.yc6{bottom:475.586667pt;}
.yab{bottom:475.746667pt;}
.y33{bottom:480.546667pt;}
.y17{bottom:480.866667pt;}
.y189{bottom:483.746667pt;}
.y15b{bottom:484.546667pt;}
.y132{bottom:486.626667pt;}
.y5d{bottom:488.546667pt;}
.y16f{bottom:488.706667pt;}
.y88{bottom:488.866667pt;}
.y1d7{bottom:492.866667pt;}
.yc5{bottom:493.986667pt;}
.yaa{bottom:494.146667pt;}
.y1ef{bottom:496.226667pt;}
.y32{bottom:498.946667pt;}
.y16{bottom:499.266667pt;}
.y188{bottom:502.146667pt;}
.y15a{bottom:503.586667pt;}
.y130{bottom:505.026667pt;}
.y1b3{bottom:505.186667pt;}
.y5c{bottom:506.946667pt;}
.y87{bottom:507.266667pt;}
.yc4{bottom:512.386667pt;}
.ya9{bottom:512.546667pt;}
.y31{bottom:517.346667pt;}
.y15{bottom:517.986667pt;}
.y101{bottom:519.266667pt;}
.y187{bottom:520.546667pt;}
.y158{bottom:521.986667pt;}
.y86{bottom:525.693333pt;}
.yc3{bottom:530.653333pt;}
.ya8{bottom:530.973333pt;}
.y5b{bottom:533.373333pt;}
.y1b1{bottom:535.613333pt;}
.y30{bottom:535.773333pt;}
.y14{bottom:536.413333pt;}
.y186{bottom:538.973333pt;}
.y1d5{bottom:539.453333pt;}
.y157{bottom:540.413333pt;}
.y12d{bottom:542.493333pt;}
.y1ee{bottom:542.813333pt;}
.y85{bottom:544.093333pt;}
.yc2{bottom:549.053333pt;}
.ya7{bottom:549.373333pt;}
.yff{bottom:549.853333pt;}
.y5a{bottom:551.773333pt;}
.y2f{bottom:554.173333pt;}
.y13{bottom:554.813333pt;}
.y185{bottom:557.373333pt;}
.y156{bottom:558.813333pt;}
.y12f{bottom:560.893333pt;}
.y84{bottom:562.493333pt;}
.y1b0{bottom:565.853333pt;}
.yc1{bottom:567.453333pt;}
.ya6{bottom:567.773333pt;}
.y59{bottom:570.173333pt;}
.y12{bottom:573.213333pt;}
.y184{bottom:575.773333pt;}
.y155{bottom:577.213333pt;}
.y12c{bottom:579.933333pt;}
.y83{bottom:580.893333pt;}
.y2e{bottom:585.693333pt;}
.y174{bottom:585.853333pt;}
.ya5{bottom:586.173333pt;}
.y58{bottom:588.573333pt;}
.y1ed{bottom:590.333333pt;}
.y183{bottom:594.173333pt;}
.yfe{bottom:595.933333pt;}
.y1af{bottom:596.093333pt;}
.y154{bottom:596.253333pt;}
.y12b{bottom:598.333333pt;}
.yc0{bottom:598.813333pt;}
.y82{bottom:598.973333pt;}
.ye4{bottom:599.293333pt;}
.y2d{bottom:603.933333pt;}
.ya4{bottom:604.573333pt;}
.y11{bottom:604.893333pt;}
.y57{bottom:606.973333pt;}
.y182{bottom:612.573333pt;}
.y153{bottom:615.453333pt;}
.y12a{bottom:616.733333pt;}
.y173{bottom:617.533333pt;}
.ye3{bottom:617.693333pt;}
.y1d4{bottom:618.493333pt;}
.y1ec{bottom:621.533333pt;}
.y2c{bottom:622.653333pt;}
.ya3{bottom:622.973333pt;}
.y56{bottom:625.373333pt;}
.y1ac{bottom:626.333333pt;}
.yfd{bottom:626.653333pt;}
.y81{bottom:630.813333pt;}
.y181{bottom:630.973333pt;}
.y152{bottom:633.853333pt;}
.y128{bottom:635.133333pt;}
.ye2{bottom:636.093333pt;}
.y1eb{bottom:636.253333pt;}
.y10{bottom:636.573333pt;}
.y2b{bottom:641.053333pt;}
.ya2{bottom:641.373333pt;}
.y80{bottom:649.373333pt;}
.y55{bottom:651.773333pt;}
.y151{bottom:652.253333pt;}
.y126{bottom:654.173333pt;}
.ye1{bottom:654.493333pt;}
.yfc{bottom:657.213333pt;}
.y2a{bottom:659.453333pt;}
.ya1{bottom:659.773333pt;}
.y1ea{bottom:666.493333pt;}
.y7f{bottom:667.773333pt;}
.yf{bottom:668.253333pt;}
.y54{bottom:670.173333pt;}
.y150{bottom:670.653333pt;}
.yfb{bottom:672.573333pt;}
.ye0{bottom:672.893333pt;}
.y29{bottom:677.853333pt;}
.ya0{bottom:678.173333pt;}
.y1d3{bottom:681.373333pt;}
.y7e{bottom:686.173333pt;}
.y53{bottom:688.573333pt;}
.y14f{bottom:689.693333pt;}
.y125{bottom:690.493333pt;}
.ydf{bottom:691.293333pt;}
.y1ab{bottom:691.613333pt;}
.y28{bottom:696.253333pt;}
.y9f{bottom:696.573333pt;}
.y1e9{bottom:696.733333pt;}
.ye{bottom:699.773333pt;}
.yfa{bottom:703.293333pt;}
.y16e{bottom:704.413333pt;}
.y7d{bottom:704.573333pt;}
.y1a3{bottom:705.533333pt;}
.y52{bottom:706.973333pt;}
.y14e{bottom:708.733333pt;}
.yde{bottom:709.693333pt;}
.y27{bottom:714.653333pt;}
.y9e{bottom:714.973333pt;}
.y124{bottom:722.173333pt;}
.y7c{bottom:722.973333pt;}
.y51{bottom:725.373333pt;}
.y1e8{bottom:726.973333pt;}
.y14d{bottom:727.133333pt;}
.ydd{bottom:728.093333pt;}
.yd{bottom:731.773333pt;}
.y26{bottom:733.053333pt;}
.y9d{bottom:733.373333pt;}
.yf8{bottom:733.853333pt;}
.y123{bottom:740.733333pt;}
.y7b{bottom:741.373333pt;}
.y50{bottom:743.773333pt;}
.y1cf{bottom:744.093333pt;}
.y14c{bottom:745.533333pt;}
.ydc{bottom:746.493333pt;}
.y9c{bottom:751.773333pt;}
.y1e6{bottom:757.213333pt;}
.y122{bottom:759.133333pt;}
.y7a{bottom:759.773333pt;}
.y4f{bottom:762.173333pt;}
.yc{bottom:763.493333pt;}
.y14b{bottom:763.973333pt;}
.yf7{bottom:764.613333pt;}
.y25{bottom:764.773333pt;}
.ydb{bottom:764.933333pt;}
.y9b{bottom:770.213333pt;}
.y121{bottom:777.573333pt;}
.y79{bottom:778.213333pt;}
.yf6{bottom:779.973333pt;}
.y14a{bottom:782.373333pt;}
.y24{bottom:783.333333pt;}
.y4e{bottom:788.613333pt;}
.yb{bottom:795.013333pt;}
.yf5{bottom:795.333333pt;}
.y120{bottom:795.973333pt;}
.y78{bottom:796.613333pt;}
.y149{bottom:800.773333pt;}
.y23{bottom:801.733333pt;}
.y1e5{bottom:804.293333pt;}
.y4d{bottom:807.013333pt;}
.y11f{bottom:814.373333pt;}
.y77{bottom:815.013333pt;}
.y148{bottom:819.173333pt;}
.y22{bottom:820.133333pt;}
.y1e4{bottom:822.373333pt;}
.y4c{bottom:825.413333pt;}
.yf4{bottom:825.893333pt;}
.ya{bottom:827.013333pt;}
.y11e{bottom:832.773333pt;}
.y76{bottom:833.413333pt;}
.y147{bottom:838.213333pt;}
.y21{bottom:838.533333pt;}
.y1e3{bottom:840.293333pt;}
.yf3{bottom:841.253333pt;}
.y4b{bottom:843.813333pt;}
.y11d{bottom:851.173333pt;}
.ybf{bottom:851.493333pt;}
.yda{bottom:851.653333pt;}
.y75{bottom:851.813333pt;}
.yf2{bottom:856.613333pt;}
.y20{bottom:856.933333pt;}
.y146{bottom:857.253333pt;}
.y1e2{bottom:858.053333pt;}
.y9{bottom:859.013333pt;}
.y4a{bottom:862.213333pt;}
.y11c{bottom:869.573333pt;}
.y74{bottom:870.213333pt;}
.yf0{bottom:871.973333pt;}
.y1f{bottom:875.333333pt;}
.y1a2{bottom:876.773333pt;}
.y8{bottom:880.453333pt;}
.y49{bottom:880.613333pt;}
.yed{bottom:887.333333pt;}
.y11b{bottom:887.973333pt;}
.y73{bottom:888.613333pt;}
.y1e1{bottom:889.253333pt;}
.y145{bottom:893.573333pt;}
.y1e{bottom:893.733333pt;}
.y1a1{bottom:894.853333pt;}
.y7{bottom:902.053333pt;}
.y1c9{bottom:902.373333pt;}
.y48{bottom:907.013333pt;}
.y1d{bottom:912.133333pt;}
.y1a0{bottom:912.773333pt;}
.ye9{bottom:918.533333pt;}
.y1e0{bottom:920.453333pt;}
.y11a{bottom:924.453333pt;}
.y47{bottom:925.413333pt;}
.y1c{bottom:930.533333pt;}
.y19f{bottom:930.693333pt;}
.yeb{bottom:933.893333pt;}
.y6{bottom:937.093333pt;}
.y119{bottom:939.813333pt;}
.y72{bottom:943.493333pt;}
.y144{bottom:943.653333pt;}
.y46{bottom:943.813333pt;}
.y19e{bottom:948.613333pt;}
.y1b{bottom:948.933333pt;}
.y1df{bottom:951.653333pt;}
.y71{bottom:961.893333pt;}
.y172{bottom:962.053333pt;}
.y45{bottom:962.213333pt;}
.y1c6{bottom:965.253333pt;}
.ye8{bottom:967.173333pt;}
.y1a{bottom:967.333333pt;}
.y118{bottom:970.533333pt;}
.y5{bottom:971.653333pt;}
.y19d{bottom:979.973333pt;}
.y44{bottom:980.613333pt;}
.y1de{bottom:982.853333pt;}
.y19{bottom:985.733333pt;}
.y4{bottom:993.093333pt;}
.ye7{bottom:998.853333pt;}
.y43{bottom:999.013333pt;}
.y19c{bottom:1012.960000pt;}
.y1dd{bottom:1014.240000pt;}
.y3{bottom:1014.560000pt;}
.y117{bottom:1016.480000pt;}
.y18{bottom:1016.960000pt;}
.y180{bottom:1017.120000pt;}
.y42{bottom:1017.440000pt;}
.y2{bottom:1043.680000pt;}
.y1{bottom:1061.600000pt;}
.hc{height:15.346667pt;}
.h13{height:15.360000pt;}
.h22{height:18.386667pt;}
.h1e{height:18.400000pt;}
.h25{height:18.420000pt;}
.h26{height:18.426667pt;}
.h31{height:29.586667pt;}
.h2f{height:29.600000pt;}
.h32{height:29.618667pt;}
.h3b{height:29.780000pt;}
.h30{height:29.786667pt;}
.hd{height:30.546667pt;}
.h11{height:30.560000pt;}
.h15{height:30.586667pt;}
.ha{height:30.706667pt;}
.h12{height:30.720000pt;}
.h10{height:30.740000pt;}
.h27{height:34.453125pt;}
.h24{height:36.786667pt;}
.h20{height:36.800000pt;}
.h21{height:36.826667pt;}
.h2c{height:38.128125pt;}
.h2{height:42.262500pt;}
.h2d{height:43.808438pt;}
.h1b{height:45.906667pt;}
.h33{height:45.913333pt;}
.h2e{height:45.920000pt;}
.h19{height:45.938667pt;}
.h1d{height:45.946667pt;}
.h16{height:46.066667pt;}
.h1c{height:46.073333pt;}
.h14{height:46.080000pt;}
.h2a{height:48.558750pt;}
.hf{height:52.134375pt;}
.h29{height:52.781250pt;}
.hb{height:53.535000pt;}
.h23{height:55.186667pt;}
.he{height:55.298750pt;}
.h7{height:57.375000pt;}
.h8{height:57.787500pt;}
.h17{height:61.266667pt;}
.h1a{height:61.426667pt;}
.h38{height:62.080000pt;}
.h34{height:62.106667pt;}
.h35{height:62.226667pt;}
.h39{height:62.240000pt;}
.h37{height:62.260000pt;}
.h9{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.h28{height:65.781915pt;}
.h1f{height:66.625000pt;}
.h4{height:73.490625pt;}
.h3{height:75.465000pt;}
.h3a{height:78.400000pt;}
.h18{height:91.986667pt;}
.h36{height:94.706667pt;}
.h2b{height:153.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:19.826667pt;}
.w13{width:20.466667pt;}
.w14{width:20.626667pt;}
.w1f{width:27.666667pt;}
.w20{width:31.026667pt;}
.w17{width:37.106667pt;}
.w18{width:37.138667pt;}
.w19{width:42.386667pt;}
.w6{width:45.586667pt;}
.w8{width:47.186667pt;}
.w9{width:47.346667pt;}
.w1c{width:49.106667pt;}
.w16{width:49.426667pt;}
.we{width:56.626667pt;}
.w7{width:57.138667pt;}
.wc{width:66.106667pt;}
.w5{width:67.386667pt;}
.w1d{width:71.346667pt;}
.w1a{width:71.666667pt;}
.wb{width:75.666667pt;}
.w4{width:94.546667pt;}
.w3{width:102.738667pt;}
.wd{width:141.786667pt;}
.w1b{width:334.777333pt;}
.w15{width:335.417333pt;}
.w2{width:415.932000pt;}
.wa{width:472.560000pt;}
.w11{width:474.000000pt;}
.w1e{width:479.120000pt;}
.w10{width:576.240000pt;}
.wf{width:576.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:6.240000pt;}
.xf{left:7.198667pt;}
.x28{left:9.600000pt;}
.x1c{left:11.026667pt;}
.x1a{left:12.480000pt;}
.x19{left:14.240000pt;}
.x3b{left:15.186667pt;}
.x15{left:16.306667pt;}
.x17{left:17.280000pt;}
.x11{left:19.186667pt;}
.x1d{left:21.920000pt;}
.x22{left:23.680000pt;}
.x14{left:27.040000pt;}
.x20{left:30.240000pt;}
.x1b{left:31.230667pt;}
.x3c{left:32.320000pt;}
.x26{left:49.905333pt;}
.xe{left:56.641333pt;}
.x24{left:62.880000pt;}
.x2b{left:106.281333pt;}
.x2{left:113.472000pt;}
.x3{left:119.872000pt;}
.x7{left:134.586667pt;}
.xd{left:145.466667pt;}
.xc{left:151.226667pt;}
.x6{left:160.346667pt;}
.x1e{left:165.625333pt;}
.x35{left:167.705333pt;}
.x3d{left:178.426667pt;}
.x9{left:197.626667pt;}
.xa{left:214.426667pt;}
.x34{left:222.746667pt;}
.x23{left:236.185333pt;}
.x2a{left:241.506667pt;}
.x33{left:291.746667pt;}
.x4{left:321.666667pt;}
.xb{left:324.066667pt;}
.x8{left:331.266667pt;}
.x3f{left:341.986667pt;}
.x29{left:369.826667pt;}
.x32{left:372.226667pt;}
.x5{left:396.866667pt;}
.x36{left:441.706667pt;}
.x10{left:472.586667pt;}
.x37{left:491.786667pt;}
.x16{left:518.186667pt;}
.x38{left:529.706667pt;}
.x39{left:567.493333pt;}
.x12{left:575.333333pt;}
.x2c{left:582.693333pt;}
.x1f{left:586.053333pt;}
.x2e{left:603.173333pt;}
.x3a{left:610.533333pt;}
.x3e{left:614.693333pt;}
.x18{left:622.533333pt;}
.x2f{left:624.453333pt;}
.x27{left:633.413333pt;}
.x30{left:645.573333pt;}
.x21{left:661.733333pt;}
.x25{left:665.573333pt;}
.x31{left:666.853333pt;}
.x13{left:669.893333pt;}
.x1{left:673.093333pt;}
}

